body{
    padding-top: 80px; 
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;  /* ← evita que cualquier elemento se salga */
    max-width: 100% !important; 
}

header{
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height:80px;
    background-color:#000000;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding-left:40px;
    padding-right:40px;
    box-sizing:border-box;
    border-bottom:3px solid #c8a45a;
    scroll-behavior: smooth;
    overflow: hidden;
}
.logo-text {
    display: none;
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 2.5vw, 1.9rem);
    font-weight: 500;
    letter-spacing: 3.5px;
    text-shadow: 0px 0px 12px rgba(212,175,55,0.4);
    color: #bdae92;
}
.big {
    font-size: clamp(1.9rem, 2.6vw, 2rem);
}

.Logo_Header{
    display:flex;
    align-items:center;
}

.Logo_Header img{
    height: 10vh;
    width:auto;
}


.Menu{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    padding-top: 15px;
}

.Menu ul{
    list-style:none;
    display:flex;
    gap: 50px;
    padding:0;
    margin:0;
}

.Menu a{
    text-decoration:none;
    color:#ffffff;
    font-size:16px;
    font-weight:600;
    font-family:"Raleway", sans-serif;
    letter-spacing:0.5px;
    padding-bottom:6px;
    border-bottom:2px solid transparent;
    transition:all 0.25s ease;
}

.Menu a:hover{
    color:#c8a45a;
    border-bottom:2px solid #c8a45a;
    transform:translateY(-2px);
}

/* ===== DROPDOWN ===== */
.dropdown{
    position: relative;
    padding-bottom: 10px;
}

/* BOTÓN */
.dropdown-toggle{
    background: none;
    border: none;
    color: #ffffff;
    font-size:16px;
    font-weight:600;
    font-family:"Raleway", sans-serif;

    cursor: pointer;

    padding-bottom:6px;
    border-bottom:2px solid transparent;

    transition:all 0.25s ease;
}

/* Mantienes el hover visual (NO funcional) */
.dropdown-toggle:hover{
    color:#c8a45a;
    border-bottom:2px solid #c8a45a;
    transform:translateY(-2px);
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* TRIÁNGULO */
.dropdown-toggle::after {
    content: "";
    width: 0;
    height: 0;

    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #ffffff;

    transition: transform 0.25s ease;
}

.dropdown.active .dropdown-toggle::after {
    transform: rotate(270deg);
}


/* SUBMENU */
.submenu{
    position:absolute;
    top:100%;
    left:0;

    width:600px;
    background:#0a0a0a;

    border:1px solid #c8a45a;
    border-radius:10px;

    opacity:0;
    visibility:hidden;
    pointer-events:none;

    transition:opacity 0.25s ease;
}

/* 🔥 ESTADO ACTIVO (reemplaza hover) */
.dropdown.active .submenu{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    gap: 20px !important;
}

/* ITEMS */
.submenu li{
    width:125%;
}

.submenu a{
    display:block;
    padding:14px 25px;
    font-size:15px;
    color:#ffffff;
}

/* HOVER ITEMS (esto sí lo puedes dejar) */
.submenu a:hover{
    background:rgba(200,164,90,0.15);
}

/* ===== MENU TOGGLE ===== */
.Menu_Toggle{
    display:none;
    flex-direction:column;
    cursor:pointer;
    gap:5px;
}

.Menu_Toggle span{
    width:25px;
    height:3px;
    background:#ffffff;
}

.Cambio_Idioma{
    display:flex;
    align-items:center;
}

.Cambio_Idioma a{
    display:flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#ffffff;
    font-size:14px;
    font-weight:600;
    font-family:"Raleway", sans-serif;
    border:1px solid #555555;
    padding:6px 12px;
    border-radius:6px;
    transition:all 0.25s ease;
}

.Cambio_Idioma a:hover{
    background-color:#c8a45a;
    color:#000000;
    border-color:#c8a45a;
    transform:scale(1.05);
}

footer{
    width: 100%;
    background-color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 60px;
    box-sizing: border-box;
    border-top: 3px solid #c8a45a;
}

/* LOGO */

.Logo_Footer{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between; 
    height: 220px;
}

.Logo_Footer img{
    width:160px;
    height:auto;
}

.Versiculo_Footer{
    color: #666666;
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
    margin-top:10 px;
    line-height: 1.5;
}

.Versiculo_Footer span{
    display: block;
    text-align:left;
    color: #666666;
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
    margin-top:10 px;
    line-height: 1.5;
}
/* FRASE EN EL HERO*/
.hero_frase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
}
/* Línea dorada superior */
.hero_frase::before {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c8a45a, transparent);
    margin: 0 auto 1rem;
}
.frase_intro {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4.5vw, 3.8rem);
    font-weight: 400;
    color: #f5f2ec;
    line-height: 1.25;
    letter-spacing: .04em;
    margin: 0;
    max-width: 900px;
}
.frase_highlight {
    color: #c8a45a;
    font-style: italic;
}
.frase_ciudades {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(.7rem, 1.4vw, .88rem);
    font-weight: 400;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(245, 242, 236, .45);
    margin: 0;
    line-height: 2;
}
.frase_ciudades .frase_highlight {
    font-style: normal;
    font-weight: 600;
    letter-spacing: .18em;
    color: #c8a45a;
}
/* Línea dorada inferior */
.hero_frase::after {
    content: '';
    display: block;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c8a45a, transparent);
    margin: .8rem auto 0;
}





.Titulo_main {
    display: flex;
    padding-top: 5%;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 140px;
    text-align: center;
    position: relative;
}
.Titulo_main h1 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin: 0;

    /* Brillo dorado animado */
    background: linear-gradient(
        100deg,
        #8a6820 0%,
        #c9a84c 30%,
        #ffffff 48%,
        #e7d3a3 52%,
        #c9a84c 70%,
        #8a6820 100%
    );
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    animation: tituloShine 3.5s linear infinite;

    /* Sombra dorada para profundidad */
    filter: drop-shadow(0 0 18px rgba(201, 168, 76, 0.35));
}

@keyframes tituloShine {
    0%   { background-position: 150% center; }
    100% { background-position: -50% center; }
}







/* ── NUESTRA HISTORIA - QUIENES SOMOS ── */
:root {
    --nos-gold:       #c9a84c;
    --nos-gold-light: #e7d3a3;
    --nos-gold-dark:  #8a6820;
    --nos-bg:         #080808;
    --nos-bg2:        #0f0f0f;
    --nos-bg3:        #161616;
    --nos-bg4:        #1e1e1e;
    --nos-text:       #f5f2ec;
    --nos-muted:      rgba(245, 242, 236, 0.50);
    --nos-muted2:     rgba(245, 242, 236, 0.30);
    --nos-radius:     14px;
    --nos-transition: 0.35s ease;
}
/*WRAPPER PRINCIPAL*/
#nosotros {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 28px 90px;
    background: var(--nos-bg);
    position: relative;
}
/* Línea dorada superior de la sección */
#nosotros::before {
    content: '';
    position: absolute;
    top: 0; left: 5%; right: 5%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--nos-gold-dark),
        var(--nos-gold),
        var(--nos-gold-dark),
        transparent
    );
    opacity: 0.4;
}
/* ENCABEZADO*/
.nos-header {
    text-align: center;
    padding: 60px 15px 0px;
    margin-bottom: 52px;
} 
.nos-eyebrow {
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--nos-gold);
    margin-bottom: 16px;
}
.nos-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 400;
    color: var(--nos-text);
    letter-spacing: 3px;
    line-height: 1.2;
    margin-bottom: 16px;
}
/* Degradado dorado en la palabra clave */
.nos-title span {
    background: linear-gradient(
    90deg,
    var(--nos-gold-dark),
    var(--nos-gold-light),
    var(--nos-gold-dark)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nos-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(
    90deg,
    transparent,
    var(--nos-gold),
    transparent
    );
    margin: 0 auto 18px;
}
/*TABS*/
.nos-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: -15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.nos-tab {
    padding: 10px 24px;
    border: 1px solid rgba(201, 168, 76, 0.22);
    border-radius: 40px;
    font-family: 'Raleway', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--nos-muted);
    background: transparent;
    cursor: pointer;
    transition: all var(--nos-transition);
}
.nos-tab:hover {
    border-color: rgba(201, 168, 76, 0.5);
    color: var(--nos-gold-light);
}
.nos-tab.active {
    background: var(--nos-gold);
    color: #000;
    border-color: var(--nos-gold);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}
/*PANELES (animación)*/
.nos-panel {
    max-width: 950px; 
    margin: 0 auto;
    display: none;
    animation: nosFadeUp 0.5s ease forwards;
    padding: 0px 15px 15px;
}
.nos-panel.active {
    display: block;
}
@keyframes nosFadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0);    }
}
/*PANEL 1 — QUIÉNES SOMOS*/
.qs-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
}
/* — Columna izquierda — */
.qs-tag {
    display: inline-block;
    padding: 4px 14px;
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 20px;
    font-family: 'Raleway', sans-serif;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--nos-gold);
    text-transform: uppercase;
    margin-bottom: 20px;
} 
.qs-left h3 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 2vw, 1.7rem);
    font-weight: 600;
    color: var(--nos-text);
    line-height: 1.35;
    margin-bottom: 22px;
    letter-spacing: 1px;
}
.qs-left h3 em {
    font-style: normal;
    color: var(--nos-gold);
}
.qs-left p {
    font-family: 'Raleway', sans-serif;
    text-align: justify;
    font-size: .86rem;
    line-height: 1.6;
    color: var(--nos-muted);
    margin-bottom: 14px;
}
.qs-left p strong {
    color: var(--nos-gold-light);
    font-weight: 600;
}
.qs-cta {
    display: inline-block;
    margin-top: 10px;
    padding: 11px 26px;
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--nos-gold);
    cursor: pointer;
    transition: all .25s ease;
    position: relative;
    overflow: hidden;
}
/* — Columna derecha (stats) — */
.qs-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.qs-stat {
    background: var(--nos-bg3);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-left: 3px solid var(--nos-gold-dark);
    border-radius: 0 10px 10px 0;
    padding: 18px 22px;
    transition: all var(--nos-transition);
}
.qs-stat:hover {
    border-left-color: var(--nos-gold);
    background: var(--nos-bg4);
    transform: translateX(5px);
} 
.qs-stat-num {
    font-family: 'Cinzel', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--nos-gold);
    line-height: 1;
    margin-bottom: 6px;
}
.qs-stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--nos-muted);
    text-transform: uppercase;
}
.qs-quote {
    margin-top: 6px;
    padding: 20px 24px;
    background: radial-gradient(ellipse at top left, #1e1500, var(--nos-bg3));
    border: 1px solid rgba(201, 168, 76, 0.22);
    border-radius: 10px;
    font-family: 'Cinzel', serif;
    font-size: .85rem;
    font-weight: 400;
    color: var(--nos-gold-light);
    line-height: 1.65;
    letter-spacing: .5px;
    font-style: italic;
    text-align: center;
}
/*PANEL 2 — MISIÓN & VISIÓN*/
.mv-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.mv-card {
    background: var(--nos-bg3);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: var(--nos-radius);
    padding: 10px 30px 30px 30px;
    position: relative;
    overflow: hidden;
    transition: all var(--nos-transition);
}
.mv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(
    90deg,
    transparent,
    var(--nos-gold),
    transparent
    );
    opacity: 0;
    transition: opacity var(--nos-transition);
}
.mv-card:hover {
    border-color: rgba(201, 168, 76, 0.45);
    box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(201, 168, 76, 0.08);
}
.mv-card:hover::before { opacity: 1; }
.mv-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--nos-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0px;
}
.mv-card p {
    font-family: 'Raleway', sans-serif;
    text-align: justify;
    font-size: .9rem;
    line-height: 1.6;
    color: var(--nos-muted);
    margin-bottom: 8px;
}
.mv-card p strong {
    color: var(--nos-gold-light);
    font-weight: 600;
}
/* Badge "Meta 2030" */
.vision-badge {
    display: inline-block;
    margin: 8px 0 16px;
    padding: 5px 16px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 20px;
    font-family: 'Cinzel', serif;
    font-size: .68rem;
    color: var(--nos-gold);
    letter-spacing: 2px;
}
/* Pilares */
.pilares {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
} 
.pilar {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 14px;
    background: rgba(201, 168, 76, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 8px;
    transition: all var(--nos-transition);
}
.pilar:hover {
    background: rgba(201, 168, 76, 0.09);
    border-color: rgba(201, 168, 76, 0.25);
} 
.pilar-kw {
    font-family: 'Cinzel', serif;
    font-size: .8rem;
    font-weight: 700;
    color: var(--nos-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    min-width: 64px;
    padding-top: 1px;
    flex-shrink: 0;
}
.pilar-txt {
    font-family: 'Montserrat', sans-serif;
    font-size: .75rem;
    text-align: right;
    line-height: 1.6;
    color: var(--nos-muted);
}
/*PANEL 3 — VALORES*/
.valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.valor {
    background: var(--nos-bg3);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--nos-radius);
    padding: 28px 22px 24px;
    text-align: center;
    cursor: default;
    transition: all var(--nos-transition);
    position: relative;
    overflow: hidden;
} 
.valor::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(
    90deg,
    transparent,
    var(--nos-gold),
    transparent
    );
    opacity: 0;
    transition: opacity var(--nos-transition);
}
.valor:hover {
    border-color: rgba(201, 168, 76, 0.4);
    background: var(--nos-bg4);
    transform: translateY(-5px);
    box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.5),
    0 0 22px rgba(201, 168, 76, 0.07);
}
.valor:hover::after { opacity: 1; }
.valor-emoji {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
}
.valor h4 {
    font-family: 'Cinzel', serif;
    font-size: .8rem;
    font-weight: 600;
    color: var(--nos-gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.valor p {
    font-family: 'Montserrat', sans-serif;
    font-size: .75rem;
    line-height: 1.72;
    color: var(--nos-muted);
}
/* Cita de cierre */
.valores-cierre {
    margin-top: 32px;
    padding: 22px 32px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 10px;
    background: radial-gradient(
    ellipse at center,
    #1a1200,
    var(--nos-bg3)
    );
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: .85rem;
    font-weight: 400;
    color: var(--nos-gold-light);
    line-height: 1.65;
    letter-spacing: .5px;
    font-style: italic;
}
/* FORMULARIO */

.Formulario{
    width:300px;
}

.Formulario form{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.Formulario label{
    color:#aaaaaa;
    font-size:12px;
    font-family:"Montserrat", sans-serif;
}

/* INPUTS */

.Formulario input{
    width:100%;
    background-color:#111111;
    border:1px solid #333333;
    color:#ffffff;
    padding:7px;
    border-radius:5px;
    font-size:12px;
    font-family:"Montserrat", sans-serif;
    transition:all 0.25s ease;
}

.Formulario select{
    width:100%;
    background-color:#111111;
    border:1px solid #333333;
    color:#ffffff;
    padding:7px;
    border-radius:5px;
    font-size:12px;
    font-family:"Montserrat", sans-serif;
    transition:all 0.25s ease;
}

/* HOVER / FOCUS */

.Formulario input:focus{
    border-color:#c8a45a;
    outline:none;
}

.Formulario select:focus{
    border-color:#c8a45a;
    outline:none;
}


/* CONTENEDOR TELEFONO */

.Telefono{
    display:flex;
    width:100%;
    gap:8px;
    align-items:center;
}

/* SELECTOR PAIS */

.Telefono .Codigo_Pais{
    width:95px;
    min-width:95px;
    max-width:95px;
    flex:0 0 95px;
}

/* INPUT TELEFONO */

.Telefono input{
    flex:1;
    width:auto;
}

/* HOVERS */

.Codigo_Pais:hover,
.Telefono input:hover{
    border-color:#c8a45a;
}

.Codigo_Pais:focus,
.Telefono input:focus{
    border-color:#c8a45a;
    outline:none;
}


/* BOTON */

.Formulario button{
    margin-top:6px;
    background-color:#c8a45a;
    color:#000000;
    border:none;
    padding:8px;
    border-radius:5px;
    font-weight:600;
    font-family:"Montserrat", sans-serif;
    font-size:12px;
    cursor:pointer;
    transition:all 0.25s ease;
}

.Formulario button:hover{
    background-color:#e0b86a;
    transform:translateY(-1px);
}

/* CONTENEDOR CTA */

.cta{
    width:calc(100%);

}

/* TEXTO CTA */

.cta p{
    background:linear-gradient(135deg, #c8a45a, #e0b86a, #c8a45a);
    color:#000000;
    padding:16px;
    border-radius:12px;
    font-family:"Montserrat", sans-serif;
    font-size:14px;
    text-align:center;
    line-height:1.5;
    position:relative;
    overflow:hidden;
    transition:all 0.3s ease;
}

/* HOVER */

.cta p:hover{
    transform:scale(1.03);
    box-shadow:0px 0px 20px rgba(200, 164, 90, 0.7);
}

/* BRILLO */

.cta p::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:50%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );
    transform:skewX(-25deg);
    animation:brillo 3s infinite;
}

/* ANIMACIÓN */

@keyframes brillo{
    0%{ left:-100%; }
    50%{ left:130%; }
    100%{ left:130%; }
}

/* SPAN ELEGANTE SIN FONDO */

.cta span{
    font-size:16px;
    font-weight:700;
    letter-spacing:1px;
    font-style:italic;
    color:#000000;
    text-transform:uppercase;
    transition:all 0.3s ease;
}

/* HOVER SPAN */

.cta span:hover{
    letter-spacing:2px;
    text-shadow:0px 0px 8px rgba(255,255,255,0.6);
}


/* EXTRA */

.Extra{
    width:260px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    height:220px;
}

/* REDES */

.Redes_Sociales{
    display:flex;
    gap:20px;
    align-items:center;
}

.social_icon{
    width:38px;
    height:38px;
    display:flex;
    justify-content:center;
    align-items:center;
    border:1px solid #333333;
    border-radius:8px;
    background-color:#111111;
    transition:all 0.3s ease;
}

.social_icon svg{
    width:20px;
    height:20px;
    fill:#bbbbbb;
    transition:all 0.3s ease;
}

.social_icon:hover{
    border-color:#c8a45a;
    transform:translateY(-3px);
}

.social_icon:hover svg{
    fill:#c8a45a;
}

/* MINI MENU */

.Mini_Menu{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.Mini_Menu a{
    color:#999999;
    text-decoration:none;
    font-family:"Raleway", sans-serif;
    font-size:13px;
    transition:all 0.25s ease;
}

.Mini_Menu a:hover{
    color:#c8a45a;
    transform:translateX(4px);
}


/* PRESENTACION (16:9 + BG) */

.Presentacion {
    width: 100%;
    max-width: 1000px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.Presentacion * {
    position: relative;
    z-index: 2;
}

/* BASE reutilizable */
.circle {
    position: absolute;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* HOVER base */
.circle:hover {
    transform: scale(1.12);
    animation: glowPulse 0.65s ease-out forwards;
    z-index: 100;
}

/* INDIVIDUALES */
.b1es {
    width: 34%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    top: 9.5%;
    left: 0.25%;
    background-image: url('../../static/IMG//fondoespañol/B1ES.png')
}

.b2es {
    width: 28%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    top: 47.75%;
    left: 12.5%;
    background-image: url('../../static/IMG//fondoespañol/B2ES.png')
}

.b3es {
    width: 42.5%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    top: 10.5%;
    left: 31%;
    background-image: url('../../static/IMG//fondoespañol/B3ES.png')
}

.b4es {
    width: 28%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    top: 47.5%;
    left: 62.5%;
    background-image: url('../../static/IMG//fondoespañol/B4ES.png')
}

.b5es {
    width: 31%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    top: 10.1%;
    left: 69.9%;
    background-image: url('../../static/IMG//fondoespañol/B5ES.png')
}

/* KEYFRAME PARA EL EFECTO ORGÁNICO */
@keyframes glowPulse {
    0% {
        box-shadow: 0 0 0px rgba(255, 255, 255, 0);
    }
    40% {
        box-shadow: 0 0 22px rgba(255, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 28px rgba(255, 255, 255, 1);
    }
    100% {
        box-shadow: 0 0 22px rgba(255, 255, 255, 0.8);
    }
}

.tooltip {
    position: absolute;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-width: 180px;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    background: rgba(0, 0, 0, 0.85);
    border-width: 2px;
    border-color: #c8a45a;
    border-style: solid;
}

.circle:hover .tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* Tooltip del círculo 1 */
.t1 {
    top: -20%;
    left: -20%;
}

/* Tooltip del círculo 2 */
.t2 {
    top: -10%;
    left: -40%;
}

/* Tooltip del círculo 3 */
.t3 {
    top: 80%;
    left: 25%;
}

/* Tooltip del círculo 4 */
.t4 {
    top: -20%;
    left: 40%;
    transform: translateX(-50%);
}

/* Tooltip del círculo 5 */
.t5 {
    top: -30%;
    left: 50%;
}

/* IMAGEN SUPERIOR (CONTENEDOR) */

.Img_superior {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* LOGO */

.Img_superior img {
    width: 33%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    border: 1px solid white;
}

.Img_superior img:hover {
    transform: scale(1.05);
    border: 2px solid #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5),
                0 0 25px rgba(212, 175, 55, 0.3);
}



/* =========================
   FORMULARIO REDES (LAYOUT)
========================= */

.Formulario_Redes {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 20px 20px;
    gap: 50px;
}

/* =========================
   INFORMACION
========================= */

.Informacion {
    text-align: center;
    max-width: 800px;
}

/* =========================
   FORMULARIO RECOMENDACION
========================= */
.formulario_recomendacion {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 900px;
    position: relative;
}

/* =========================
   SECCION DESCRIPTIVA
========================= */
.seccion_descriptiva {
    text-align: center;
    max-width: 700px;
}

/* =========================
   RECOMENDACION (FORM)
========================= */
.Recomendacion {
    width: 100%;
    max-width: 600px;
}

/* =========================
   SEPARADOR DECORATIVO
========================= */
.separador {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
    gap: 15px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: -15px;
}

.separador::before {
    content: "";
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}

.separador::after {
    content: "";
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}

.separador::before {
    background: linear-gradient(to right, transparent, #d4af37);
}

.separador::after {
    background: linear-gradient(to left, transparent, #d4af37);
}

/* =========================
   TITULO PRINCIPAL
========================= */
.titulo_principal {
    font-family: 'Cinzel', serif;
    background: radial-gradient(ellipse at center, #3a2a00, #000000 65%);
    font-size: 40px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    color: white;
}

/* =========================
   INFORMACION ASOCIADA
========================= */

.informacion_asociada {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* =========================
   FORMULARIO RECOMENDACION BOX
========================= */

.formulario_recomendacion {
    width: 100%;
    max-width: 1000px;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
}

/* =========================
   BORDE SUPERIOR DORADO
========================= */
.formulario_recomendacion::before {
    content: "";
    height: 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background: linear-gradient(
        to right,
        transparent,
        #d4af37,
        transparent
    );
}


/* =========================
   COLUMNA IZQUIERDA
========================= */
.seccion_descriptiva {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding-right: 30px;
    border-right: 1px solid rgba(212, 175, 55, 0.3);
}


/* =========================
   COLUMNA DERECHA
========================= */
.Recomendacion {
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* =========================
   INDICADOR (Comparte tu voz)
========================= */

.indicador {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 2px;
    margin-bottom: 10px;
}


/* =========================
   TITULO (¿CONOCES?)
========================= */

.Conoces {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 400;
    color: white;
    line-height: 1.3;
    margin-bottom: 15px;
    text-transform: uppercase;
}


/* =========================
   TEXTO DESCRIPTIVO
========================= */
.seccion_descriptiva p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

.seccion_descriptiva b {
    background: linear-gradient(yellow,white);
    -webkit-background-clip: text;
    color: transparent;  
}

.beneficios_lista {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.beneficios_lista li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
}
.beneficio_emoji {
    font-size: 1.2rem;
    line-height: 1.4;
    flex-shrink: 0;
}
.beneficios_lista strong {
    font-family: 'Montserrat', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    color: #c8a45a;
    display: block;
    margin-bottom: .1rem;
}
.beneficios_lista p {
    font-family: 'Montserrat', sans-serif;
    font-size: .85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .65);
    line-height: 1.4;
    margin: 0;
}
/* =========================
   FORMULARIO BASE
========================= */
.form_estilizado {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* =========================
   FILAS (2 COLUMNAS)
========================= */
.fila {
    display: flex;
    gap: 20px;
}


/* =========================
   CAMPOS
========================= */
.campo {
    display: flex;
    flex-direction: column;
    flex: 1;
}


/* =========================
   LABELS (DORADOS)
========================= */
.campo label {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 8px;
    letter-spacing: 1px;
}


/* =========================
   INPUTS / SELECT / TEXTAREA
========================= */
.campo input,
.campo select,
.campo textarea {
    font-family: 'Montserrat', sans-serif;
    background-color: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 14px;
    color: white;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}


/* =========================
   PLACEHOLDER
========================= */
.campo input::placeholder,
.campo textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}


/* =========================
   FOCUS (EFECTO DORADO)
========================= */
.campo input:focus,
.campo select:focus,
.campo textarea:focus {
    border: 1px solid #d4af37;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}


/* =========================
   HOVER INPUTS (SUAVE)
========================= */
.campo input:hover,
.campo textarea:hover,
.campo select:hover {
    border: 1px solid rgba(255, 255, 255, 0.2);
}


/* =========================
   TEXTAREA
========================= */
.campo textarea {
    resize: none;
}

/* =========================
   SELECT (LIMPIO)
========================= */
.campo select {
    appearance: none;
    cursor: pointer;
}

/* =========================
   BOTÓN
========================= */
.btn_enviar {
    font-family: 'Montserrat', sans-serif;
    margin-top: 10px;
    background: linear-gradient(90deg, #c9a43b, #d4af37);
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    color: black;
    cursor: pointer;
    transition: all 0.3s ease;
}


/* =========================
   BOTÓN HOVER
========================= */
.btn_enviar:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* =========================
   DETALLE DIAGONAL SUPERIOR
========================= */

.detalle_opinion{
    position: absolute;
    top: 0;
    right: 0;   /* antes: left */
    overflow: hidden;
    width: 330px;
    height: 220px;
    pointer-events: none;
}

.detalle_opinion span{
    position: absolute;
    display: block;
    width: 440px;

    padding: 8px 0;

    background: linear-gradient(90deg, #d4af37, #f5d76e, #d4af37);
    color: black;

    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;

    transform: rotate(25deg);   /* invertimos dirección */
    
    top: 45px;
    right: -90px;  /* empuja hacia el centro */

    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.detalle_opinion span::before{
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );

    transform: skewX(-25deg);
}

.detalle_opinion span::before{
    animation: brilloLinea 3s infinite;
}

@keyframes brilloLinea{
    0%{
        left: -75%;
    }
    50%{
        left: 125%;
    }
    100%{
        left: 125%;
    }
}






/* =========================
CTA SECTION - seccion que invita a unirse a la seccion VIP
========================= */

.Servicio_VIP {
    width: 100%;
    padding: 40px 20px 60px 20px;
    background: radial-gradient(ellipse at center, #3a2a00, #000000 65%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.cta_contenido {
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.cta_tagline {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #d4af37;
}
.cta_titulo {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    font-weight: 400;
    color: white;
    line-height: 1.2;
    margin: 0;
}
.cta_dorado {
    color: #d4af37;
}
.cta_descripcion {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}
.cta_botones {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}
.cta_btn_primario {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    background: linear-gradient(90deg, #c9a43b, #d4af37);
    color: black;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.cta_btn_primario:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}
.cta_btn_secundario {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.cta_btn_secundario:hover {
    border-color: #d4af37;
    color: #d4af37;
    transform: scale(1.04);
}


.credit-line{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    margin:20px 0;
}

.credit-line::before{
    content:"";
    flex:1;
    height:1px;
    background:linear-gradient(to right, transparent, #d4af37);
    margin-right:10px;
}

.credit-line::after{
    content:"";
    flex:1;
    height:1px;
    background:linear-gradient(to left, transparent, #d4af37);
    margin-left:10px;
}

.credit-line span{
    color:#aaa;
    font-size:12px;
    letter-spacing:2px;
    white-space:nowrap;
    font-family:Arial, sans-serif;
}

.credit-line strong{
    color:#d4af37;
    font-weight:600;
}



/* HAMBURGUESA */
.Menu_Toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}
.Menu_Toggle:hover {
    border-color: #c8a45a;
}
.Menu_Toggle span{
    width:25px;
    height:3px;
    background:#ffffff;
}

/* IDIOMA FLOTANTE - Oculto por defecto en desktop */
.Cambio_Idioma_Flotante {
    display: none;
    align-items: center;
}

.Cambio_Idioma_Flotante a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 650;
    font-family: "Cinzel", serif;
    border: 1.5px solid #e7d3a3;
    padding: 6px 12px;
    border-radius: 50px;
    transition: all 0.25s ease;
}

.Cambio_Idioma_Flotante a:hover {
    background-color: #c9a84c;
    color: #000000;
    border-color: #c8a45a;
    transform: scale(1.05);
}

/* ── Estilos compartidos ── */
.btn-flotante-exp,
.btn-flotante-exp2 {
    position: fixed;
    right: 28px;
    z-index: 9998;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    background: linear-gradient(135deg, #c9a84c, #e7d3a3, #8a6820);
    background-size: 200% 200%;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    box-shadow:
        0 4px 20px rgba(201, 168, 76, 0.45),
        0 0 0 1px rgba(201, 168, 76, 0.2);
    cursor: pointer;
    overflow: hidden;
    animation: btnExpEntrada 0.8s cubic-bezier(.16,1,.3,1) forwards,
               btnExpGradiente 4s ease infinite 0.8s;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-flotante-exp {
    bottom: 88px;
}
.btn-flotante-exp2 {
    bottom: 28px;
}
/* ── Entrada desde abajo ── */
@keyframes btnExpEntrada {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ── Pulso suave del gradiente ── */
@keyframes btnExpGradiente {
    0%   { background-position: 0% 50%;   }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%;   }
}
/* ── Hover ── */
.btn-flotante-exp:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow:
        0 8px 30px rgba(201, 168, 76, 0.6),
        0 0 0 2px rgba(201, 168, 76, 0.35);
    color: #000;
}
/* ── Brillo deslizante al hacer hover ── */
.btn-flotante-exp__brillo {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: rgba(255, 255, 255, 0.35);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
    pointer-events: none;
}
.btn-flotante-exp:hover .btn-flotante-exp__brillo {
    left: 130%;
}
/* ── Ícono decorativo ── */
.btn-flotante-exp__icono {
    font-size: .65rem;
    opacity: 0.75;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.btn-flotante-exp:hover .btn-flotante-exp__icono {
    transform: rotate(90deg);
    opacity: 1;
}
/* ── Texto ── */
.btn-flotante-exp__texto {
    position: relative;
    z-index: 1;
}
/* ── Active / clic ── */
.btn-flotante-exp:active {
    transform: scale(0.97);
}


/*responsive*/

@media (max-width: 1084px) {
    .Titulo_main {
        display: none;
    }

    header {
        padding: 0 20px;
        position: fixed;
        top:0;
        left: 0;
        width: 100%;
        z-index: 1000;
        }

    .logo-text {
    display: block; 
    }   

    .Logo_Header img{
        height: 5vh;
        width:auto;
    } 

    .Cambio_Idioma {
        display: none;
    }

    .Cambio_Idioma_Flotante {
        display: flex;
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 9999;
        background: #000; 
        border-radius: 50px;
        border: 2px solid #e7d3a3;
        overflow: hidden;
    }
    .Menu_Toggle {
        display: flex;
    }

    .Menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #000000;
        display: none;
        border-top: 1px solid #333;
        transform: none;       
        z-index:1000; 
    }

    .Menu.active {
        display: block;
    }

    .Menu ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
    }

    nav {
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box;
    }

    /* LISTA */
    nav ul {
        flex-direction: column !important;
        align-items: center !important;
        width: 100%;
        gap: 5px;
    }

    nav li {
        width: 100%;
        text-align: center;
    }

    /* LINKS Y BOTONES */
    nav a,
    .dropdown-toggle {
        width: 100% !important;
        text-align: center !important;

        padding: 14px 0 !important;

        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px;

        position: relative;
    }

    /* ===== SUBRAYADO ANIMADO ===== */
    .dropdown-toggle::before {
        content: "";
        position: absolute;
        bottom: 6px;

        width: 0%;
        height: 2px;

        background: #c8a45a;

        transition: width 0.25s ease;
    }

    /* ACTIVACIÓN (hover o active) */
    nav a:hover::after,
    .dropdown-toggle:hover::before,
    .dropdown.active .dropdown-toggle::before {
        width: 60%;
    }

    /* DROPDOWN */
    .dropdown {
        width: 100%;
        padding-bottom: 0;
    }

    /* SUBMENU */
    .submenu {
        position: static !important;
        width: 100% !important;

        border: none !important;
        border-radius: 0 !important;

        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;

        display: none !important;
        margin-top: 5px;
    }

    .dropdown.active .submenu {
        display: block !important;
    }

    /* ITEMS SUBMENU */
    .submenu a {
        padding: 10px 0 !important;
        text-align: center !important;
    }

    /* FLECHA */
    .dropdown-toggle {
        justify-content: center !important;
    }

    .dropdown-toggle::after {
        margin-left: 5px;
    }

    /* ROTACIÓN */
    .dropdown.active .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    /* HOVER limpio (sin saltos raros) */
    .dropdown-toggle:hover {
        transform: none !important;
    }

    .submenu a:hover {
        background: none !important;
    }

  /* Introducción/presentacion */
    .Presentacion {
        aspect-ratio: 1;
        overflow: hidden;
        width: 100%;
    }
    .presentacion .tooltip a span{
        font-size: 10px;
    }
    .Img_superior img {
        width: 55%;
    }
    .titulo h2 {
        font-size: 26px;
        letter-spacing: 1px;
    }
    .Textos_Descripcion p {
        font-size: 14px;
        padding: 0 20px;
    } 
    
    
    /* Responsive del footer */
    footer {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        gap: 40px;
    }
    .Logo_Footer img {
        width: 150px;
    }
    .Formulario {
        width: 100%;
        max-width: 400px;
    }
    .Extra {
        width: 100%;
        max-width: 400px;
        height: auto;
        align-items: center;
        gap: 24px;
    }
    .Mini_Menu {
        align-items: center;
    }
    .Redes_Sociales {
        justify-content: center;
    }

    /*quienes somos*/
        #nosotros {
        padding: 55px 24px 70px;
    }
    /* ── Encabezado ── */
    .nos-title {
        font-size: 2.2rem;
    }
    /* ── Tabs ── */
    .nos-tabs {
        gap: 6px;
        margin-bottom: 38px;
    }
    .nos-tab {
        padding: 9px 20px;
        font-size: .68rem;
        letter-spacing: 2px;
    }
    /* ── PANEL 1: Quiénes Somos ──
       Pasa de 2 columnas a 1 columna */
    .qs-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .qs-left h3 {
        font-size: 1.4rem;
    }
    .qs-left p {
        font-size: .82rem;
        line-height: 1.85;
    }
    /* Stats en fila de 3 lado a lado */
    .qs-right {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        width: 100%;
        overflow: hidden;
    }
    .qs-stat {
        min-width: 0;
        overflow: hidden;
        word-break: break-word;
        padding: 14px 12px;
    }   
    /* La cita ocupa las 3 columnas */
    .qs-quote {
        grid-column: 1 / -1;
        margin-top: 0;
    }
    .qs-stat-num {
        word-break: break-word;
        font-size: 1.2rem;
    }
    .qs-stat-label {
        font-size: .58rem;
    }

    /* ── PANEL 2: Misión & Visión ──
       Pasa de 2 columnas a 1 columna */
    .mv-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .mv-card {
        padding: 28px 24px;
    }
    .mv-card h3 {
        font-size: 1rem;
    }
    .mv-card p {
        font-size: .8rem;
    }
    /* ── PANEL 3: Valores ──
       Pasa de 3 columnas a 2 columnas */
    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .valor {
        padding: 24px 18px;
    }
    .valor h4 {
        font-size: .76rem;
    }
    .valores-footer {
        font-size: .8rem;
        padding: 18px 24px;
    }
/* RESPONSIVE DEL FORMULARIO
  EXPERIENCIAS */
    .Informacion {
        width: 100%;
        padding: 0 10px;
    }
    .detalle_opinion {
    position: relative;   /* antes absolute */
    width: 100%;
    height: auto;
    top: unset;
    right: unset;
    overflow: visible;
}

/* ELIMINAMOS ROTACIÓN Y AJUSTAMOS */
.detalle_opinion span {
    position: relative;
    width: 100%;
    display: block;

    transform: none; /* clave */
    top: unset;
    right: unset;

    padding: 10px 12px;

    font-size: 12px;
    text-align: center;
}

/* OPCIONAL: hacer que quede tipo barra premium */
.detalle_opinion span {
    border-radius: 8px;
}
   /* FUERZA TODO A AJUSTARSE */
    .Formulario_Redes,
    .formulario_recomendacion,
    .seccion_descriptiva,
    .Recomendacion,
    .form_estilizado,
    .campo {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* EVITA SCROLL HORIZONTAL */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    .Formulario_Redes {
        padding: 60px 16px 30px 16px;
        width: 100%;
        overflow-x: hidden;
    }
    /* CAJA DEL FORMULARIO */
    .formulario_recomendacion {
        flex-direction: column;
        padding: 24px;
        gap: 24px;
    }
    /* COLUMNA IZQUIERDA */
    .seccion_descriptiva {
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        padding-right: 0;
        padding-bottom: 24px;
        text-align: center;
        align-items: center;
    }
    /* FILAS DE CAMPOS */
    .fila {
        flex-direction: column;
        gap: 16px;
    }

    /* BOTÓN */
    .btn_enviar {
        box-sizing: border-box;
    }

    /* RESPONSIVE DEL CTA SECTION */
    .cta_titulo {
    font-size: 40px;
    }
    .cta_botones {
        flex-direction: column;
        width: 100%;
    }
    .cta_btn_primario,
    .cta_btn_secundario {
        width: 100%;
        text-align: center;
    }
    .beneficios_lista {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-left: 0;
    }
    .beneficios_lista li {
        width: 100%;
        text-align: left;
    }
    .btn-flotante-exp {
        bottom: 130px;
        right: 20px;
        padding: 11px 18px;
        font-size: .65rem;
        letter-spacing: 1.5px;
        gap: 6px;
    }
    .btn-flotante-exp2 {
        bottom: 75px; 
        right: 20px;
        padding: 11px 18px;
        font-size: .65rem;
        letter-spacing: 1.5px;
        gap: 6px;
    }
}


