/* ========================================== */
/* RESET Y GENERALES                          */
/* ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f7f9f8;
    color: #2b3a33;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 70px 20px;
}

.bg-white {
    background-color: #F1F7F3;
}

.bg-beige {
    background-color: #f4eee0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    letter-spacing: 1px;
    color: #1b3d33;
    margin-bottom: 30px;
    font-weight: 700;
}

.text-left {
    text-align: left !important;
}

/* ========================================== */
/* ENCABEZADO (HEADER EN COLOR BEIGE/CREMA)   */
/* ========================================== */
.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    /* Tono beige/crema claro de la identidad corporativa */
    background-color: #FCF6E5;
    box-shadow: 0 2px 10px rgba(27, 61, 51, 0.06);
    z-index: 1000;
    padding: 1.1rem 2.5rem;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 65px;
    width: auto !important;
    display: block;
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 35px;
}

.header-socials {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.header-socials a {
    color: #1b3d33;
    font-size: 1.15rem;
    transition: color 0.2s ease;
}

.header-socials a:hover {
    color: #e09f3e;
}

.menu-toggle {
    background-color: #1b3d33;
    border: none;
    border-radius: 25px;
    padding: 9px 24px;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.2s ease;
}

.menu-toggle:hover {
    background-color: #2a5a4c;
}

.menu-text {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #F7F4EB;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 1002;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}

.nav-drawer.active {
    right: 0;
}

.menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #1b3d33;
    cursor: pointer;
    margin-bottom: 2rem;
}

.nav-drawer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.nav-drawer a {
    text-decoration: none;
    color: #1b3d33;
    font-size: 1.2rem;
    font-weight: 600;
}

.btn-drawer-contact {
    background-color: #1b3d33;
    color: #ffffff !important;
    text-align: center;
    padding: 0.8rem;
    border-radius: 25px;
    margin-top: 1rem;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1001;
    display: none;
}

.menu-overlay.active {
    display: block;
}

/* ========================================== */
/* SECCIÓN HERO                               */
/* ========================================== */
.hero-section {
    background-color: #F7EBCB;
    padding: 60px 20px;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-title {
    font-size: 2.8rem;
    color: #1b3d33;
    line-height: 1.2;
    margin-bottom: 18px;
    font-weight: 800;
}

.hero-description {
    font-size: 1.05rem;
    color: #3b5249;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background-color: #1b3d33;
    color: #ffffff;
    border: none;
    padding: 12px 26px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-secondary {
    background-color: transparent;
    color: #1b3d33;
    border: 1.5px solid #1b3d33;
    padding: 12px 26px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
}

.hero-image-wrapper {
    position: relative;
    height: 420px;
    border-top-left-radius: 180px;
    border-bottom-left-radius: 180px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background-color: #F7EBCB;
}

.hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* Carrusel automático del Hero */
.hero-carousel .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.6s ease-in-out, visibility 1.6s ease-in-out;
}

.hero-carousel .hero-slide.active {
    opacity: 1;
    visibility: visible;
}

@media (prefers-reduced-motion: reduce) {
    .hero-carousel .hero-slide {
        transition: none;
    }
}

/* ========================================== */
/* SECCIÓN: ¿QUÉ NECESIDAD ATENDEMOS?         */
/* ========================================== */
.bg-necesidad {
    background-color: #F1F7F3;
    border-bottom: 1px solid #eaeaea;
}

.necesidad-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.necesidad-intro {
    font-size: 1.1rem;
    color: #4a5d55;
    line-height: 1.7;
}

.necesidad-pillars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: #F7EBCB;
    padding: 20px;
    border-radius: 16px;
    transition: transform 0.2s ease;
}

.pillar-item:hover {
    transform: translateX(5px);
}

.pillar-icon {
    width: 50px;
    height: 50px;
    background-color: #1b3d33;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.pillar-text h3 {
    font-size: 1.05rem;
    color: #1b3d33;
    margin-bottom: 4px;
}

.pillar-text p {
    font-size: 0.9rem;
    color: #556860;
}

/* ========================================== */
/* SECCIÓN: PROPUESTA DE VALOR                */
/* ========================================== */
.bg-propuesta {
    background-color: #F2ECE1;
}

.propuesta-title-area {
    text-align: center;
    margin-bottom: 45px;
}

.propuesta-subtitle {
    font-size: 1.2rem;
    color: #2b3a33;
    font-weight: 600;
}

.propuesta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 20px;
}

.propuesta-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 20px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(27, 61, 51, 0.04);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(27, 61, 51, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.propuesta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(27, 61, 51, 0.08);
}

.propuesta-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #e0a955;
    margin-bottom: 12px;
}

.propuesta-card h3 {
    font-size: 1.05rem;
    color: #1b3d33;
    margin-bottom: 10px;
    line-height: 1.3;
}

.propuesta-card p {
    font-size: 0.88rem;
    color: #556860;
    line-height: 1.5;
}

/* ========================================== */
/* TARJETAS (TALLERES Y EXPERTOS)             */
/* ========================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body h3 {
    font-size: 1.2rem;
    color: #1b3d33;
    margin-bottom: 8px;
}

.expert-role {
    font-size: 0.85rem;
    font-weight: 700;
    color: #e0a955;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.card-short-desc {
    font-size: 0.9rem;
    color: #556860;
    line-height: 1.4;
    margin-bottom: 15px;
}

.card-date {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: auto;
    margin-bottom: 18px;
}

.btn-card {
    background-color: #e0a955;
    color: #1b3d33;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s ease;
}

.btn-card:hover {
    background-color: #cb933f;
}

.center-link {
    text-align: center;
    margin-top: 40px;
}

.link-more {
    color: #1b3d33;
    font-weight: 700;
    text-decoration: underline;
}

/* ========================================== */
/* PIE DE PÁGINA (FOOTER)                     */
/* ========================================== */
.main-footer {
    background-color: #112a23;
    color: #ffffff;
    padding: 4rem 1.5rem 1.5rem 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    display: block;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.footer-desc {
    color: #a3b8b0;
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-contact-info {
    list-style: none;
    margin-bottom: 15px;
}

.footer-contact-info li {
    display: flex;
    gap: 10px;
    color: #a3b8b0;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-contact-info i {
    color: #e0a955;
    margin-top: 4px;
}

.footer-contact-info a {
    color: #a3b8b0;
    text-decoration: none;
}

.footer-buttons-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.btn-footer-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-footer-outline:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.footer-socials a:hover {
    background-color: #e0a955;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #a3b8b0;
}

.legal-links a {
    color: #a3b8b0;
    text-decoration: none;
    margin: 0 5px;
}

/* ========================================== */
/* BOTÓN FLOTANTE WHATSAPP                    */
/* ========================================== */
.whatsapp-float {
    position: fixed;
    width: 58px;
    height: 58px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    z-index: 999;
    text-decoration: none;
}

/* ========================================== */
/* MODAL DE CONTACTO                          */
/* ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: #ffffff;
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #6c757d;
}

.modal-title {
    color: #1b3d33;
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.modal-subtitle {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1b3d33;
    margin-bottom: 5px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cccccc;
    border-radius: 10px;
    font-size: 0.95rem;
    outline: none;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #1b3d33;
}

.btn-submit {
    width: 100%;
    background-color: #1b3d33;
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s ease;
}

.btn-submit:hover {
    background-color: #2a5a4c;
}

.success-view {
    text-align: center;
    padding: 20px 10px;
}

.success-icon {
    font-size: 3.5rem;
    color: #25d366;
    margin-bottom: 15px;
}

.success-view h3 {
    color: #1b3d33;
    margin-bottom: 10px;
}

.success-view p {
    color: #4a5d55;
    margin-bottom: 20px;
}

/* ========================================== */
/* RESPONSIVE (MÓVILES)                       */
/* ========================================== */
@media (max-width: 992px) {
    .hero-container,
    .necesidad-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 50px;
    }

    .main-header {
        padding: 0.8rem 1.2rem;
    }

    .header-socials {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-image-wrapper {
        border-radius: 20px;
    }

    .propuesta-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
/* =========================================================
   AJUSTE FOTOGRAFÍAS - NUESTROS EXPERTOS
   ========================================================= */
.expert-card .card-img {
    object-position: center top;
}

/* ========================================== */
/* SECCIÓN CALCULADORA KIN                    */
/* ========================================== */
.kin-calculator-section {
    background-color: #F1F7F3;
}

.kin-calculator-card {
    max-width: 1040px;
    margin: 0 auto;
    background-color: #FCF6E5;
    border-radius: 28px;
    padding: 48px 55px;
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 42px;
    align-items: center;
    box-shadow: 0 14px 36px rgba(27, 61, 51, 0.09);
    border: 1px solid rgba(46, 112, 84, 0.12);
}

.kin-calculator-accent {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: #2E7054;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.kin-calculator-accent::after {
    content: '+';
    position: absolute;
    right: 2px;
    top: 3px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #E6B54A;
    color: #1b3d33;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    font-weight: 800;
}

.kin-symbol {
    color: #E6B54A;
    font-size: 3.4rem;
    line-height: 1;
}

.kin-calculator-eyebrow {
    color: #E0A955;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.kin-calculator-title {
    margin-bottom: 15px;
}

.kin-calculator-text {
    color: #556860;
    font-size: 1.04rem;
    line-height: 1.75;
    max-width: 760px;
    margin-bottom: 25px;
}

.kin-calculator-button {
    display: inline-flex;
    width: auto;
    text-decoration: none;
}

@media (max-width: 768px) {
    .kin-calculator-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 36px 24px;
        gap: 24px;
    }

    .kin-calculator-accent {
        width: 112px;
        height: 112px;
        margin: 0 auto;
    }

    .kin-symbol {
        font-size: 2.75rem;
    }

    .kin-calculator-content .text-left {
        text-align: center !important;
    }

    .kin-calculator-text {
        font-size: 0.98rem;
    }
}

/* =========================================================
   TIPOGRAFÍA DE MARCA KIN-KIN
   Fuente ubicada en: /public_html/assets/VAGRundschriftD.ttf
   Este bloque aplica la fuente SOLO al menú desplegable y
   a los títulos solicitados del HOME.
   ========================================================= */

@font-face {
    font-family: 'VAG Rundschrift KIN';
    src: url('../VAGRundschriftD.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
    font-display: swap;
}

/* Textos del menú desplegable */
.nav-drawer a {
    font-family: 'VAG Rundschrift KIN', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal;
}

/* ¿Qué es KIN-KIN? */
#inicio .hero-title {
    font-family: 'VAG Rundschrift KIN', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal;
}

/* ¿Qué necesidad atendemos? */
#necesidad .section-title {
    font-family: 'VAG Rundschrift KIN', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal;
}

/* Propuesta de Valor */
#propuesta .section-title {
    font-family: 'VAG Rundschrift KIN', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal;
}

/* Talleres */
#talleres .section-title {
    font-family: 'VAG Rundschrift KIN', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal;
}

/* Nuestros Expertos */
#expertos .section-title {
    font-family: 'VAG Rundschrift KIN', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal;
}

/* Calculadora KIN */
#calculadora-kin .kin-calculator-title,
#calculadora-kin .section-title {
    font-family: 'VAG Rundschrift KIN', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal;
}

/* =========================================================
   SÍMBOLOS KIN-KIN EN NECESIDADES Y PROPUESTA DE VALOR
   PNG existentes en /assets/img/
   ========================================================= */

/* Los iconos blancos se centran sobre el símbolo KIN-KIN */
.pillar-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon-yellow {
    background-image: url('../img/+.png');
}

.pillar-icon-green {
    background-image: url('../img/+-verde.png');
}

.pillar-icon-black {
    background-image: url('../img/+-negro.png');
}

.pillar-icon i {
    position: relative;
    z-index: 1;
    color: #ffffff;
    font-size: 1.25rem;
    margin: 0;
}

/* Números 01–05 dentro del símbolo amarillo KIN-KIN */
.propuesta-num {
    width: 70px;
    height: 70px;
    background-image: url('../img/+.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b3d33;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 18px;
}

@media (max-width: 768px) {
    .pillar-icon {
        width: 58px;
        height: 58px;
        min-width: 58px;
    }

    .propuesta-num {
        width: 64px;
        height: 64px;
        font-size: 1.2rem;
    }
}

/* =========================================================
   DETALLE MAYA SUTIL - ICONO CALCULADORA KIN
   Mantiene el sol central y agrega geometría discreta
   dentro de la zona verde, sin saturar el símbolo.
   ========================================================= */

.kin-calculator-accent {
    overflow: visible;
}

.kin-symbol {
    position: relative;
    z-index: 3;
}

/* Grecas geométricas discretas */
.kin-maya-corner {
    position: absolute;
    width: 27px;
    height: 27px;
    opacity: .46;
    z-index: 1;
}

.kin-maya-corner::before,
.kin-maya-corner::after {
    content: '';
    position: absolute;
    border-style: solid;
    border-color: #D3B85E;
}

.kin-maya-corner::before {
    inset: 0;
    border-width: 4px 0 0 4px;
}

.kin-maya-corner::after {
    width: 13px;
    height: 13px;
    top: 7px;
    left: 7px;
    border-width: 4px 0 0 4px;
}

.kin-maya-corner-tl {
    top: 22px;
    left: 22px;
}

.kin-maya-corner-tr {
    top: 22px;
    right: 22px;
    transform: rotate(90deg);
}

.kin-maya-corner-br {
    right: 22px;
    bottom: 22px;
    transform: rotate(180deg);
}

.kin-maya-corner-bl {
    left: 22px;
    bottom: 22px;
    transform: rotate(270deg);
}

/* Series de puntos inspiradas en grafismos mesoamericanos */
.kin-maya-dots {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #D3B85E;
    opacity: .65;
    z-index: 1;
    box-shadow: 10px 0 0 #D3B85E, 20px 0 0 #D3B85E;
}

.kin-maya-dots-top {
    top: 15px;
    left: 50%;
    transform: translateX(-15px);
}

.kin-maya-dots-bottom {
    bottom: 15px;
    left: 50%;
    transform: translateX(-15px);
}

.kin-maya-dots-left {
    left: 15px;
    top: 50%;
    transform: translateY(-2px) rotate(90deg);
}

.kin-maya-dots-right {
    right: 15px;
    top: 50%;
    transform: translateY(-2px) rotate(90deg);
}

/* En móvil reducimos el ornamento proporcionalmente */
@media (max-width: 768px) {
    .kin-maya-corner {
        width: 22px;
        height: 22px;
    }

    .kin-maya-corner::after {
        width: 10px;
        height: 10px;
        top: 6px;
        left: 6px;
    }

    .kin-maya-corner-tl { top: 18px; left: 18px; }
    .kin-maya-corner-tr { top: 18px; right: 18px; }
    .kin-maya-corner-br { right: 18px; bottom: 18px; }
    .kin-maya-corner-bl { left: 18px; bottom: 18px; }
}

