/* === VARIABLES === */
:root {
    /* Paleta terrosa y neutra para SOMOS-CALMA */
    --color-primary: #8BAE7A;        /* Verde salvia - ligeramente mas brillante y fresco */
    --color-primary-dark: #5F6F55;   /* Verde salvia oscuro */
    --color-secondary: #7A9AA8;      /* Azul sereno */
    --color-secondary-dark: #5F7D8A; /* Azul sereno oscuro */
    --color-accent: #C9A28E;         /* Terracota suave */
    --color-accent-dark: #A6826E;    /* Terracota oscuro */
    --color-bg: #F7F5F2;             /* Blanco roto */
    --color-bg-alt: #EDE8E1;         /* Beige suave */
    --color-peace: #E8E4DE;          /* Gris arena claro */
    --color-surface: #FFFFFF;        /* Superficie */
    --color-text: #3D3A36;           /* Marrón grisáceo */
    --color-text-light: #6E6963;     /* Texto secundario */
    --color-muted: #A8A29A;          /* Detalles */
    --color-border: #E0DAD2;         /* Bordes suaves */
    --color-success: #7A9E7E;
    --color-warning: #D4A373;
    --color-error: #C1666B;

    /* Tipografía redondeada y amigable */
    --font-base: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', system-ui, sans-serif;

    /* Espaciado y layout */
    --container-width: 1120px;
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --shadow-sm: 0 2px 8px rgba(61, 58, 54, 0.04);
    --shadow: 0 8px 30px rgba(61, 58, 54, 0.06);
    --shadow-lg: 0 16px 50px rgba(61, 58, 54, 0.08);

    /* Transiciones suaves */
    --transition: 250ms ease;
}

/* === RESET BÁSICO === */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-base);
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    font-size: 17px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    color: var(--color-primary-dark);
}

a:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 2px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 1000;
    background-color: var(--color-text);
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    margin: 0 0 0.75rem;
    color: var(--color-text);
    font-weight: 600;
}

p {
    margin: 0 0 1rem;
}

ul, ol {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
}

/* === FONDO ELEGANTE CON MOVIMIENTO AURORA === */
body.page-with-bg {
    background-color: var(--color-bg);
    position: relative;
}

body.page-with-bg::before,
body.page-with-bg::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
}

body.page-with-bg::before {
    background:
        radial-gradient(ellipse 80% 70% at 20% 30%, rgba(139, 174, 122, 0.22) 0%, transparent 50%),
        radial-gradient(ellipse 60% 60% at 80% 20%, rgba(122, 154, 168, 0.18) 0%, transparent 45%),
        radial-gradient(ellipse 70% 70% at 60% 80%, rgba(201, 162, 142, 0.16) 0%, transparent 50%),
        linear-gradient(180deg, #F7F5F2 0%, #F2EEE8 50%, #EDE8E1 100%);
    animation: auroraMove 30s ease-in-out infinite alternate;
}

body.page-with-bg::after {
    background:
        radial-gradient(ellipse 50% 40% at 30% 70%, rgba(139, 174, 122, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at 70% 50%, rgba(122, 154, 168, 0.14) 0%, transparent 50%);
    animation: auroraMove 25s ease-in-out infinite alternate-reverse;
}

@keyframes auroraMove {
    0% {
        transform: translateX(-3%) translateY(-2%) scale(1);
        opacity: 0.85;
    }
    50% {
        transform: translateX(3%) translateY(2%) scale(1.05);
        opacity: 1;
    }
    100% {
        transform: translateX(-2%) translateY(1%) scale(1.02);
        opacity: 0.9;
    }
}

/* Capa de bruma adicional animada */
.ambient-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(circle at 10% 20%, rgba(139, 174, 122, 0.12) 0%, transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(201, 162, 142, 0.10) 0%, transparent 25%);
    animation: mistFlow 20s ease-in-out infinite;
}

@keyframes mistFlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

/* === UTILIDADES === */
.container {
    width: min(92%, var(--container-width));
    margin-inline: auto;
}

.section {
    padding: 5.5rem 0;
    position: relative;
}

.section--alt {
    background-color: rgba(237, 232, 225, 0.78);
    backdrop-filter: blur(8px);
}

.section--peace {
    background-color: rgba(232, 228, 222, 0.80);
    backdrop-filter: blur(8px);
}

.section--glass {
    background-color: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
}

.section__header {
    max-width: 720px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.section__eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary-dark);
    margin-bottom: 0.75rem;
}

.section__title {
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    margin-bottom: 1.25rem;
}

.section__subtitle {
    font-size: 1.15rem;
    color: var(--color-text-light);
}

.grid {
    display: grid;
    gap: 1.75rem;
}

.grid--2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid--4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.text-center {
    text-align: center;
}

/* === BOTONES === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.btn--primary {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn--primary:hover {
    background-color: var(--color-primary-dark);
    color: #ffffff;
    box-shadow: var(--shadow);
}

.btn--secondary {
    background-color: var(--color-secondary);
    color: #ffffff;
}

.btn--secondary:hover {
    background-color: var(--color-secondary-dark);
    color: #ffffff;
}

.btn--accent {
    background-color: var(--color-accent);
    color: #ffffff;
}

.btn--accent:hover {
    background-color: var(--color-accent-dark);
    color: #ffffff;
}

.btn--outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn--outline:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn--ghost {
    background-color: transparent;
    color: var(--color-primary);
}

.btn--ghost:hover {
    background-color: rgba(122, 139, 110, 0.08);
}

.btn--sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

/* === HEADER === */
.header {
    background-color: rgba(247, 245, 242, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.02em;
}

.logo__img {
    height: 80px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    display: block;
}

.logo__wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg);
    border-radius: var(--radius-sm);
    padding: 0.35rem 0.75rem;
}

.logo--footer .logo__img {
    height: 96px;
    max-width: 300px;
}

.logo:hover {
    text-decoration: none;
    opacity: 0.92;
}

.logo:hover .logo__wrap {
    background-color: #ffffff;
}

.footer__brand .logo {
    color: #ffffff;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav__menu a {
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav__menu a:hover {
    color: var(--color-primary);
}

.nav__actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: var(--transition);
}

/* === HERO === */
.hero {
    padding: 7.5rem 0 6.5rem;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(247, 245, 242, 0.55) 0%, rgba(247, 245, 242, 0.25) 50%, rgba(247, 245, 242, 0.65) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero__grid {
    align-items: center;
}

.hero__logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__logo-img {
    width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero__content {
    max-width: 600px;
    text-align: left;
}

.hero__eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary-dark);
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    color: var(--color-text);
    font-weight: 600;
}

.hero__subtitle {
    font-size: 1.3rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.hero__stat {
    text-align: center;
}

.hero__stat strong {
    display: block;
    font-size: 2.25rem;
    color: var(--color-primary);
    font-weight: 700;
}

.hero__stat span {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

/* === CARDS === */
.card {
    background-color: var(--color-surface);
    border-radius: var(--radius);
    padding: 2.25rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--color-peace);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    font-size: 1.75rem;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.card--quote {
    border-left: 4px solid var(--color-secondary);
}

.card--quote p {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.card--quote footer {
    font-weight: 600;
    color: var(--color-primary);
}

/* === FEATURE BLOCK === */
.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

.feature__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-peace), var(--color-bg-alt));
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-muted);
    font-size: 1rem;
}

.feature__content h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.5rem);
    margin-bottom: 1.25rem;
}

.feature__content p {
    color: var(--color-text-light);
    margin-bottom: 1.75rem;
}

.feature__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
}

.feature__list li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.85rem;
    color: var(--color-text);
}

.feature__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

/* === STEPS === */
.steps {
    counter-reset: step;
}

.step {
    position: relative;
    padding-left: 4.5rem;
}

.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step h3 {
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* === FORMULARIOS === */
.form {
    display: grid;
    gap: 1.5rem;
    max-width: 540px;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form label {
    font-weight: 500;
    font-size: 0.95rem;
}

.form input,
.form textarea,
.form select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--color-surface);
    color: var(--color-text);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(139, 174, 122, 0.1);
}

.form input::placeholder,
.form textarea::placeholder {
    color: var(--color-muted);
}

/* === PRICING CARDS === */
.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
    align-items: start;
}

.pricing__card {
    background-color: var(--color-surface);
    border-radius: var(--radius);
    padding: 2.25rem;
    border: 1px solid var(--color-border);
    text-align: center;
}

.pricing__card--featured {
    border: 2px solid var(--color-secondary);
    box-shadow: var(--shadow);
    position: relative;
}

.pricing__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-secondary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 1.1rem;
    border-radius: 20px;
}

.pricing__name {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.pricing__price {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.pricing__price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.pricing__description {
    color: var(--color-text-light);
    margin-bottom: 1.75rem;
}

.pricing__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.pricing__features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
}

.pricing__features li:last-child {
    border-bottom: none;
}

/* === FAQ === */
.faq__item {
    border-bottom: 1px solid var(--color-border);
    padding: 1.75rem 0;
}

.faq__question {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.75rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color var(--transition);
}

.faq__question::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-primary);
    transition: transform var(--transition);
}

.faq__item.is-open .faq__question::after {
    transform: rotate(45deg);
}

.faq__answer {
    color: var(--color-text-light);
    margin-bottom: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.35s ease;
    opacity: 0;
}

.faq__item.is-open .faq__answer {
    max-height: 300px;
    opacity: 1;
}

/* === FOOTER === */
.footer {
    background-color: var(--color-primary);
    color: rgba(255, 255, 255, 0.88);
    padding: 4.5rem 0 1.5rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.footer__brand {
    max-width: 320px;
}

.footer__brand .logo {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer__brand p {
    font-size: 0.95rem;
    line-height: 1.65;
}

.footer__title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links li {
    margin-bottom: 0.65rem;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
}

.footer__links a:hover {
    color: #ffffff;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer__bottom a {
    color: rgba(255, 255, 255, 0.85);
}

/* === ANIMACIONES SUAVES === */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* === BOTÓN VOLVER ARRIBA === */
.back-to-top {
    position: fixed;
    bottom: 5.5rem;
    left: 1.5rem;
    z-index: 200;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-surface);
    color: var(--color-primary);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

/* === TEAM SECTION === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.team-card {
    background-color: var(--color-surface);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.team-card__avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
}

.team-card__photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    overflow: hidden;
    border: 3px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    background-color: var(--color-bg);
}

.team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-card h3 {
    margin-bottom: 0.25rem;
}

.team-card__role {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.team-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* === RESOURCE CARDS === */
.resource-card {
    display: flex;
    gap: 1.25rem;
    background-color: var(--color-surface);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.resource-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.resource-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--color-peace);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.resource-card__content h3 {
    margin-bottom: 0.4rem;
    font-size: 1.15rem;
}

.resource-card__content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.resource-card__meta {
    font-size: 0.85rem;
    color: var(--color-muted);
}

/* === ILLUSTRATED IMAGE PLACEHOLDER === */
.illustration-box {
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 174, 122, 0.12), rgba(122, 154, 168, 0.08));
    border: 1px solid var(--color-border);
}

.illustration-box img,
.illustration-box svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === UTILIDADES RESPONSIVE === */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .section {
        padding: 4rem 0;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: var(--color-bg);
        padding: 1rem;
        box-shadow: var(--shadow);
        gap: 0;
    }

    .nav__menu.is-active {
        display: flex;
    }

    .nav__menu li {
        width: 100%;
    }

    .nav__menu a {
        display: block;
        padding: 0.85rem 0;
        border-bottom: 1px solid var(--color-border);
    }

    .nav__actions {
        display: none;
    }

    .hero {
        padding: 4.5rem 0 4rem;
    }

    .hero__content {
        text-align: center;
    }

    .hero__logo {
        order: -1;
        margin-bottom: 2rem;
    }

    .hero__logo-img {
        width: min(80%, 280px);
    }

    .hero__actions {
        flex-direction: column;
        justify-content: center;
    }

    .hero__stats {
        gap: 2rem;
    }

    .logo__img {
        height: 60px;
        max-width: 200px;
    }

    .logo--footer .logo__img {
        height: 72px;
        max-width: 240px;
    }

    .feature {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .feature__image,
    .illustration-box {
        min-height: 260px;
        order: -1;
    }

    .back-to-top {
        bottom: 5rem;
        left: 1rem;
    }
}

/* === CHATBOT CÁLIDO === */
.chatbot-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 250;
    font-family: var(--font-base);
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #ffffff;
    border: none;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}

.chatbot-toggle svg {
    width: 28px;
    height: 28px;
}

.chatbot-toggle:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(122, 139, 110, 0.35);
}

.chatbot-toggle__pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    opacity: 0;
    animation: chatbotPulse 2s infinite;
}

@keyframes chatbotPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.25); opacity: 0; }
}

.chatbot-window {
    position: absolute;
    bottom: 76px;
    right: 0;
    width: min(360px, calc(100vw - 2rem));
    background-color: var(--color-surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(16px) scale(0.96);
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    max-height: calc(100vh - 140px);
}

.chatbot-window.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.chatbot-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #ffffff;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chatbot-header__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.chatbot-header__info {
    flex: 1;
    min-width: 0;
}

.chatbot-header__info strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.chatbot-header__info span {
    font-size: 0.8rem;
    opacity: 0.92;
}

.chatbot-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem;
    opacity: 0.85;
    transition: opacity var(--transition);
}

.chatbot-close:hover {
    opacity: 1;
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background-color: var(--color-bg);
}

.chatbot-message {
    display: flex;
}

.chatbot-message--bot {
    justify-content: flex-start;
}

.chatbot-message--user {
    justify-content: flex-end;
}

.chatbot-message__bubble {
    max-width: 85%;
    padding: 0.85rem 1.1rem;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.55;
}

.chatbot-message--bot .chatbot-message__bubble {
    background-color: var(--color-surface);
    color: var(--color-text);
    border-bottom-left-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.chatbot-message--user .chatbot-message__bubble {
    background-color: var(--color-primary);
    color: #ffffff;
    border-bottom-right-radius: 4px;
}

.chatbot-subtle {
    font-size: 0.78rem;
    color: var(--color-text-light);
    text-align: center;
    margin: 0.25rem 0;
}

.chatbot-message--typing .chatbot-message__bubble {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background-color: var(--color-peace);
    color: var(--color-text-light);
}

.chatbot-typing__dots {
    display: flex;
    gap: 4px;
}

.chatbot-typing__dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--color-primary);
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.chatbot-typing__dots span:nth-child(1) { animation-delay: -0.32s; }
.chatbot-typing__dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

.chatbot-typing__text {
    font-size: 0.85rem;
    font-style: italic;
}

.chatbot-options {
    padding: 1rem 1.25rem 1.25rem;
    background-color: var(--color-surface);
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    max-height: 220px;
    overflow-y: auto;
}

.chatbot-option {
    padding: 0.8rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: background-color var(--transition), border-color var(--transition), transform var(--transition);
}

.chatbot-option:hover {
    background-color: var(--color-peace);
    border-color: var(--color-primary);
    transform: translateX(3px);
}

.chatbot-option--primary {
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

.chatbot-option--primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

/* === BOTÓN FLOTANTE DE WHATSAPP === */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 240;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}

.whatsapp-float__tooltip {
    position: absolute;
    right: 110%;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-text);
    color: #ffffff;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float__tooltip {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .chatbot-widget {
        bottom: 1rem;
        right: 1rem;
    }

    .chatbot-toggle {
        width: 54px;
        height: 54px;
    }

    .chatbot-window {
        bottom: 70px;
        right: 0;
        width: calc(100vw - 2rem);
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 48px;
        height: 48px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    .whatsapp-float__tooltip {
        display: none;
    }
}

/* === BOTÓN DE ASISTENCIA / ATENCIÓN AL CLIENTE === */
.atencion-bot {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 240;
    font-family: var(--font-base);
}

.atencion-bot__toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #6B9BC0, #5484A8);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    font-family: inherit;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(107, 155, 192, 0.4);
    transition: transform var(--transition), box-shadow var(--transition);
}

.atencion-bot__toggle svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.atencion-bot__toggle:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(107, 155, 192, 0.5);
}

.atencion-bot__window {
    position: absolute;
    bottom: 76px;
    left: 0;
    width: min(360px, calc(100vw - 2rem));
    background-color: var(--color-surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(16px) scale(0.96);
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    max-height: calc(100vh - 140px);
}

.atencion-bot__window.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.atencion-bot__header {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    color: #ffffff;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.atencion-bot__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.atencion-bot__info {
    flex: 1;
    min-width: 0;
}

.atencion-bot__info strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.atencion-bot__info span {
    font-size: 0.8rem;
    opacity: 0.92;
}

.atencion-bot__close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem;
    opacity: 0.85;
    transition: opacity var(--transition);
}

.atencion-bot__close:hover {
    opacity: 1;
}

.atencion-bot__messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background-color: var(--color-bg);
}

.atencion-bot__message {
    display: flex;
}

.atencion-bot__message--bot {
    justify-content: flex-start;
}

.atencion-bot__message--user {
    justify-content: flex-end;
}

.atencion-bot__bubble {
    max-width: 85%;
    padding: 0.85rem 1.1rem;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.55;
    white-space: pre-line;
}

.atencion-bot__message--bot .atencion-bot__bubble {
    background-color: var(--color-surface);
    color: var(--color-text);
    border-bottom-left-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.atencion-bot__message--user .atencion-bot__bubble {
    background-color: var(--color-secondary);
    color: #ffffff;
    border-bottom-right-radius: 4px;
}

.atencion-bot__message--typing .atencion-bot__bubble {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background-color: var(--color-peace);
    color: var(--color-text-light);
}

.atencion-bot__dots {
    display: flex;
    gap: 4px;
}

.atencion-bot__dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.atencion-bot__dots span:nth-child(1) { animation-delay: -0.32s; }
.atencion-bot__dots span:nth-child(2) { animation-delay: -0.16s; }

.atencion-bot__typing-text {
    font-size: 0.85rem;
    font-style: italic;
}

.atencion-bot__options {
    padding: 1rem 1.25rem 1.25rem;
    background-color: var(--color-surface);
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    max-height: 240px;
    overflow-y: auto;
}

.atencion-bot__option {
    padding: 0.8rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: background-color var(--transition), border-color var(--transition), transform var(--transition);
}

.atencion-bot__option:hover {
    background-color: var(--color-peace);
    border-color: var(--color-secondary);
    transform: translateX(3px);
}

.atencion-bot__option--primary {
    background-color: var(--color-secondary);
    color: #ffffff;
    border-color: var(--color-secondary);
}

.atencion-bot__option--primary:hover {
    background-color: var(--color-secondary-dark);
    border-color: var(--color-secondary-dark);
}

@media (max-width: 768px) {
    .atencion-bot {
        bottom: 1rem;
        left: 1rem;
    }

    .atencion-bot__toggle {
        padding: 0.85rem 1.1rem;
        font-size: 0.9rem;
    }

    .atencion-bot__toggle svg {
        width: 22px;
        height: 22px;
    }

    .atencion-bot__label {
        display: inline;
    }

    .atencion-bot__window {
        bottom: 72px;
        left: 0;
        width: calc(100vw - 2rem);
    }

    .back-to-top {
        bottom: 5.5rem;
        left: 1rem;
    }
}

/* === VIDEO DE BIENVENIDA === */
.section--video {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.video-welcome {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(180deg, #3d3a36 0%, #2a2825 100%);
}

.video-welcome__player {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    object-position: center;
    display: block;
}

.video-unmute-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--color-text);
    font-family: var(--font-base);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform var(--transition), background-color var(--transition);
    z-index: 10;
}

.video-unmute-btn:hover {
    transform: translateY(-2px);
    background-color: #ffffff;
}

.video-welcome__caption {
    text-align: center;
    margin-top: 1.75rem;
}

.video-welcome__caption .section__eyebrow {
    color: var(--color-primary-dark);
}

.video-welcome__caption h2 {
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    margin-bottom: 0.5rem;
}

.video-welcome__caption p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    margin: 0;
}

/* Sección de fundadoras */
.section--founders {
    padding-top: 1.5rem;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.founder-card {
    background: var(--color-white, #ffffff);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.founder-card__photo {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-lg);
    margin-bottom: 1.25rem;
}

.founder-card h3 {
    margin: 0 0 0.25rem;
    font-size: 1.25rem;
    color: var(--color-text);
}

.founder-card__role {
    display: block;
    color: var(--color-primary-dark);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.founder-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin: 0 0 1.25rem;
}

.founder-card__btn {
    margin-top: auto;
}

/* Modal de video (fundadoras) */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.video-modal[hidden] {
    display: none;
}

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(42, 40, 37, 0.85);
    backdrop-filter: blur(4px);
}

.video-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: linear-gradient(180deg, #3d3a36 0%, #2a2825 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-modal__player {
    width: 100%;
    max-height: 75vh;
    display: block;
}

.video-modal__title {
    margin: 0;
    padding: 0.85rem 1rem;
    text-align: center;
    color: #f5f2ec;
    font-size: 0.95rem;
}

.video-modal__close {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    z-index: 2;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #2a2825;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal__close:hover {
    background: #ffffff;
}

/* Botón de música de fondo (solo index) */
.music-toggle {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 200;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: none;
    background-color: var(--color-primary-dark);
    color: #ffffff;
    font-size: 1.15rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.music-toggle:hover {
    transform: translateY(-2px);
}

.music-toggle--off {
    opacity: 0.65;
}

.music-toggle--off .music-toggle__icon {
    filter: grayscale(1);
}

.music-credit {
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin: 2rem 0 0.5rem;
    padding: 0 1rem;
}

.music-credit a {
    color: inherit;
}

@media (max-width: 768px) {
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* === CÓMO FUNCIONA - IMAGEN === */
.how-it-works__visual {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
    max-height: 420px;
}

.how-it-works__visual img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

/* === EQUIPO DESTACADO === */
.team-highlight {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    background-color: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.team-highlight__photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 320px;
    height: 320px;
    max-height: 420px;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-highlight__photo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.team-highlight__content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
}

.team-highlight__role {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.team-highlight__content p {
    color: var(--color-text-light);
    margin-bottom: 1.75rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* === GALERÍA DE INSPIRACIÓN === */
.gallery-inspiration {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.gallery-inspiration__item {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background-color: var(--color-surface);
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: zoom-in;
}

.gallery-inspiration__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.gallery-inspiration__item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.gallery-inspiration__item--vertical {
    grid-row: span 1;
}

/* === LIGHTBOX === */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: rgba(61, 58, 54, 0.92);
    backdrop-filter: blur(6px);
}

.lightbox.is-open {
    display: flex;
}

.lightbox__img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    object-fit: contain;
}

.lightbox__close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--color-text);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), background-color var(--transition);
}

.lightbox__close:hover {
    transform: scale(1.05);
    background-color: #ffffff;
}

@media (max-width: 768px) {
    .gallery-inspiration {
        grid-template-columns: 1fr;
    }

    .gallery-inspiration__item--vertical {
        grid-row: auto;
    }

    .lightbox {
        padding: 1rem;
    }

    .lightbox__close {
        top: 0.75rem;
        right: 0.75rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* === IMAGEN DECORATIVA EN SECCIONES === */
.section__visual {
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
}

.section__visual--rounded {
    border-radius: var(--radius-xl);
    overflow: hidden;
    max-height: 380px;
}

.section__visual--rounded img {
    width: 100%;
    height: 100%;
    max-height: 380px;
    object-fit: cover;
    display: block;
}

/* === TESTIMONIOS CON FONDO === */
.section--testimonios-bg {
    background-image: linear-gradient(rgba(247, 245, 242, 0.82), rgba(247, 245, 242, 0.86)), url('../images/ventana-ciudad.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section--testimonios-bg .card {
    background-color: rgba(255, 255, 255, 0.92);
}

/* === SEGURIDAD CON FONDO === */
.section--safety-bg {
    background-image: linear-gradient(rgba(247, 245, 242, 0.85), rgba(247, 245, 242, 0.90)), url('../images/frase-batalla-dark.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section--safety-bg .card {
    background-color: rgba(255, 255, 255, 0.94);
}

/* === RESPONSIVE ADICIONAL === */
@media (max-width: 768px) {
    .video-welcome__overlay {
        padding: 1.25rem;
    }

    .video-welcome__overlay h2 {
        font-size: 1.75rem;
    }

    .video-welcome__overlay p {
        font-size: 1rem;
    }

    .team-highlight {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .team-highlight__photo,
    .team-highlight__photo img {
        min-height: 260px;
        height: 260px;
        max-height: 320px;
    }

    .gallery-inspiration {
        grid-template-columns: 1fr;
    }

    .gallery-inspiration__item--vertical {
        grid-row: auto;
    }

    .section--testimonios-bg {
        background-attachment: scroll;
    }
}


/* === BOTÓN DE SALIDA RÁPIDA === */
.quick-exit {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 200;
    background-color: var(--color-text);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 0.85rem 1.5rem;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.quick-exit:hover {
    background-color: #2a2826;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .quick-exit {
        bottom: 1rem;
        right: 1rem;
        padding: 0.7rem 1.1rem;
        font-size: 0.8rem;
    }
}
