/* ============================================
   AXIOTEK — Seguridad, Higiene y Habilitaciones
   Paleta: Navy #081F3B | Teal #1F7F5B | Orange #F28C28
   ============================================ */

/* FONTS */

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggqxSuXd.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* RESET & TOKENS */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #081F3B;
    --navy-mid: #0D2D55;
    --navy-light: #122F57;
    --teal: #1F7F5B;
    --teal-light: #25A070;
    --orange: #F28C28;
    --orange-dark: #D97820;
    --gray-cold: #E6E8EE;
    --gray-mid: #C4C8D4;
    --gray-dark: #6B7280;
    --white-soft: #F7F7F7;
    --white: #FFFFFF;
    --text-dark: #0A1628;
    --text-mid: #3D4F6B;
    --text-light: #6B7280;
    --f: Inter, system-ui, sans-serif;
    --h: Manrope, Inter, system-ui, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(8, 31, 59, 0.08);
    --shadow-md: 0 8px 32px rgba(8, 31, 59, 0.12);
    --shadow-lg: 0 20px 60px rgba(8, 31, 59, 0.18);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--f);
    color: var(--text-dark);
    background: var(--white-soft);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* SKIP LINK */

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 700;
    z-index: 9999;
    transition: top var(--transition);
}

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

/* CONTAINER */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    font-family: var(--f);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
    text-align: center;
    justify-content: center;
}

.btn--cta {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.btn--cta:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(242, 140, 40, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn--lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
}

/* EYEBROW TAG */

.eyebrow-tag {
    display: inline-block;
    background: rgba(31, 127, 91, 0.12);
    color: #f28c28;;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1rem;
    border: 1px solid rgba(31, 127, 91, 0.2);
}

.eyebrow-tag--light {
    background: rgba(242, 140, 40, 0.15);
    color: var(--orange);
    border-color: rgba(242, 140, 40, 0.25);
}

/* SECTION HEADER */

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.section-header h2 {
    font-family: var(--h);
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ANIMATIONS */

[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* NAV */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--navy);
    transition: background var(--transition), box-shadow var(--transition);
    padding: 0;
}

.nav.scrolled {
    background: var(--navy);
    box-shadow: 0 4px 24px rgba(8, 31, 59, 0.3);
}

.nav__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: .45rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__logo-img {
    height: 54px;
    width: auto;
    object-fit: contain;
}

.nav__logo-text {
    font-family: var(--h);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.05em;
}

.nav__logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.nav__logo-brand {
    font-family: var(--h);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.05em;
    line-height: 1;
}

.nav__logo-tagline {
    font-family: var(--f);
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.02em;
    line-height: 1;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
    transition: color var(--transition);
    position: relative;
    padding-bottom: 2px;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width var(--transition);
}

.nav__link:hover {
    color: var(--white);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    margin-left: 1.5rem;
    padding: 0.6rem 1.4rem;
    font-size: 0.88rem;
    flex-shrink: 0;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

/* HERO */

.ticker {
    background: #f28c28;;
    overflow: hidden;
    padding: 0.5rem 0;
    white-space: nowrap;
    position: relative;
    z-index: 10;
}

.ticker__track {
    display: inline-flex;
    animation: ticker 25s linear infinite;
    
}

.ticker__track span {
    font-size: 0.9rem;
    font-weight: 700;
    color: #050b20;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('images/hero2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 52, 82, 0.574) 0%, rgba(10, 43, 62, 0.228) 100%);
}

.hero__container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0.2rem;
    display: grid;
    grid-template-columns: 1fr 45%;
    gap: 0.3rem;
    align-items: center;
    width: 100%;
}

.alert-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0rem 0.875rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #f28c28;;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    width: fit-content;
    margin-bottom: 0rem;
    grid-column: 1 / -1;
}

.alert-tag__dot {
    color: #E29042;
    font-size: 1.2rem;
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero__title {
    font-family: var(--h);
    font-size: 4.4rem;
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero__title-line {
    display: block;
}

.hero__subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 540px;
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-primary {
    background: #f28c28;;
    color: black;
    font-weight: 800;
    font-size: 0.875rem;
    text-transform: uppercase;
    padding: 0.7rem 0.8rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(242, 140, 40, 0.5), 0 0 40px rgba(242, 140, 40, 0.3);
}

.btn-primary:hover {
    background: #C77A35;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(242, 140, 40, 0.7), 0 0 60px rgba(242, 140, 40, 0.4), 0 8px 24px rgba(226, 144, 66, 0.35);
}

.btn-ghost {
    background:  rgba(132, 132, 132, 0.4);
    color: #fff;
    font-weight: 900;
    font-size: 0.875rem;
    padding: 0.875rem 1.75rem;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero__trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 700px;
}

.trust-item {
    background:  rgba(132, 132, 132, 0.4);
    color: #fff;
    font-weight: 700;
    font-size: 0.7rem;
    padding: 0.75rem 1.25rem;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    text-align: center;
}

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



.hero__scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scroll-fade 2s infinite;
}

@keyframes scroll-fade {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.hero__logo-visual {
    display: none;
}

.hero__logo-visual-img {
    display: none;
}

.hero__info-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero__info-card-image {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
    padding: 1.3rem ;

}

.hero__info-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.hero__info-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.5rem;
}

.hero__info-card-title {
    font-family: var(--h);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--white);
    margin: 0;
}

.hero__info-card-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.hero__info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
}

.hero__info-item {
    display: flex;
    justify-content: space-between;
    gap: 0.3rem;
}

.hero__info-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgb(177, 177, 177);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.hero__info-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    line-height: 1.4;
}

/* SOLUCIONES PRINCIPALES */

.soluciones {
    padding: 4.5rem 0;
    background: var(--white-soft);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.service-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-cold);
    transition: box-shadow var(--transition), transform var(--transition);
    background: var(--white);
    display: flex;
    flex-direction: column;
}

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

.service-card__header {
    position: relative;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    cursor: pointer;
    overflow: hidden;
    user-select: none;
}

.service-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.service-card__header:hover .service-card__bg {
    transform: scale(1.06);
}

.service-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 31, 59, 0.88) 0%, rgba(8, 31, 59, 0.4) 60%, rgba(8, 31, 59, 0.12) 100%);
}

.service-card__icon {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    background: rgba(242, 140, 40, 0.2);
    border: 1px solid rgba(242, 140, 40, 0.4);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}

.service-card__header h3 {
    position: relative;
    z-index: 1;
    font-family: var(--h);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
}

.service-card__chevron {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    transition: transform var(--transition), color var(--transition);
}

.service-card.is-open .service-card__chevron {
    transform: rotate(180deg);
    color: var(--orange);
}

.service-card__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
}

.service-card.is-open .service-card__body {
    max-height: 520px;
}

.service-card__body-inner {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-mid);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-cold);
    line-height: 1.4;
}

.service-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.45rem;
}

.service-card__cta {
    display: inline-block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 0.02em;
    transition: color var(--transition);
}

.service-card__cta:hover {
    color: var(--teal-light);
}

/* COMPLEMENTARIOS */

.complementarios {
    padding: 4.5rem 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.complementarios::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(31, 127, 91, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.complementarios .section-header h2 {
    color: var(--white);
}

.complementarios .section-header p {
    color: rgba(255,255,255,0.6);
}

.comp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.comp-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.comp-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.38;
    transition: transform 0.5s ease, opacity 0.4s ease;
    z-index: 0;
}

.comp-card:hover .comp-card__bg {
    transform: scale(1.06);
    opacity: 0.88;
}

.comp-card__num,
.comp-card__icon,
.comp-card h3,
.comp-list {
    position: relative;
    z-index: 1;
}

.comp-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(31, 127, 91, 0.4);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.comp-card__num {
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    font-family: var(--h);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
    line-height: 1;
    pointer-events: none;
}

.comp-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(31, 127, 91, 0.2);
    border: 1px solid rgba(31, 127, 91, 0.3);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-light);
    margin-bottom: 1.5rem;
}

.comp-card h3 {
    font-family: var(--h);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.comp-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.comp-list li {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    padding-left: 1.1rem;
    position: relative;
    line-height: 1.5;
}

.comp-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-size: 0.75rem;
}

/* PROCESO */

.proceso {
    padding: 4.5rem 0;
    background-color: var(--white-soft);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.proceso::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(1, 53, 105, 0.38);
    pointer-events: none;
    z-index: 0;
}

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

.proceso__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--gray-cold);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.step {
    background: var(--white);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    transition: background var(--transition);
}

.step:hover {
    background: var(--white-soft);
}

.step__number {
    font-family: var(--h);
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(8, 31, 59, 0.06);
    line-height: 1;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.step__connector {
    display: none;
}

.step__icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.step h3 {
    font-family: var(--h);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
}

.step p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.65;
}

/* DIFERENCIAL */

.diferencial {
    padding: 4.5rem 0;
    background: linear-gradient(135deg, #0B2744 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

.diferencial::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 140, 40, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.diferencial__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.diferencial__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.diferencial__text h2 {
    font-family: var(--h);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.diferencial__text p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
}

.diferencial__pillars {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.pillar {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.pillar:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(31, 127, 91, 0.3);
}

.pillar__icon {
    width: 48px;
    height: 48px;
    background: rgba(31, 127, 91, 0.2);
    border: 1px solid rgba(31, 127, 91, 0.3);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-light);
    flex-shrink: 0;
}

.pillar h3 {
    font-family: var(--h);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.35rem;
}

.pillar p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

/* CONTACTO */

.contacto {
    padding: 4.5rem 0;
    background: var(--white-soft);
}

.contacto__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem 3.5rem;
    align-items: start;
}

.contacto__header {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contacto__header h2 {
    font-family: var(--h);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
}

.contacto__header > p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.7;
}

.contacto__buttons {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contacto__map {
    grid-column: 2;
    grid-row: 2;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 350px;
}

.contacto__map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    display: block;
    border: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-cold);
    border-radius: var(--radius);
    transition: all var(--transition);
    color: var(--text-dark);
}

.contact-item:hover {
    border-color: rgba(8, 31, 59, 0.2);
    box-shadow: var(--shadow-sm);
}

.contact-item--cta {
    border-color: rgba(31, 127, 91, 0.3);
    background: rgba(31, 127, 91, 0.04);
}

.contact-item--cta:hover {
    border-color: var(--teal);
    background: rgba(31, 127, 91, 0.08);
}

.contact-item__icon {
    width: 42px;
    height: 42px;
    background: rgba(8, 31, 59, 0.06);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    flex-shrink: 0;
}

.contact-item--cta .contact-item__icon {
    background: rgba(31, 127, 91, 0.15);
    color: var(--teal);
}

.contact-item__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.15rem;
}

.contact-item__value {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-mid);
    transition: color var(--transition);
}

.social-link:hover {
    color: var(--teal);
}

/* FORM */

.contacto__form {
    grid-column: 1;
    grid-row: 2;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--gray-cold);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: -5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

.form-input {
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--gray-cold);
    border-radius: var(--radius);
    font-family: var(--f);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--white-soft);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(31, 127, 91, 0.1);
    background: var(--white);
}

.form-input::placeholder {
    color: var(--gray-mid);
}

.form-textarea {
    resize: vertical;
    min-height: 110px;
}

.form-note {
    font-size: 0.78rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.5;
}

/* FAQ */

.faq {
    padding: 4.5rem 0;
    background: var(--white-soft);
}

.faq__grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(8, 31, 59, 0.08);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: rgba(8, 31, 59, 0.15);
    box-shadow: 0 4px 16px rgba(8, 31, 59, 0.06);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 1.75rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all var(--transition);
}

.faq-item__question:hover {
    background: rgba(8, 31, 59, 0.02);
}

.faq-item__question h3 {
    font-family: var(--h);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
    line-height: 1.4;
}

.faq-item__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(31, 127, 91, 0.1);
    border-radius: 50%;
    transition: all var(--transition);
}

.faq-item__icon svg {
    transition: transform var(--transition);
}

.faq-item.is-open .faq-item__icon {
    background: var(--teal);
}

.faq-item.is-open .faq-item__icon svg {
    transform: rotate(180deg);
    color: var(--white);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-item__answer {
    max-height: 300px;
}

.faq-item__answer-inner {
    padding: 0 1.75rem 1.75rem 1.75rem;
}

.faq-item__answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
}

/* FOOTER */

.footer {
    background: #050F1E;
    color: rgba(255,255,255,0.7);
}

.footer__top {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.footer__logo {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.footer__logo-text {
    font-family: var(--h);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.06em;
}

.footer__tagline {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
}

.footer nav h4 {
    font-family: var(--h);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer nav a,
.footer nav address {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
    font-style: normal;
    line-height: 1.5;
}

.footer nav a:hover {
    color: var(--white);
}

.footer__bottom {
    padding: 1.5rem 0;
}

.footer__bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

.footer__bottom a {
    color: var(--orange);
    font-weight: 600;
    transition: color var(--transition);
}

.footer__bottom a:hover {
    color: var(--white);
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    .nav__logo-img {
        height: 55px;
    }

    .nav__logo-brand {
        font-size: 1rem;
    }

    .nav__logo-tagline {
        font-size: 0.65rem;
    }

    .hero__container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 1rem ;
    }

    .hero__visual {
        order: 2;
        display: flex;
        justify-content: center;
        margin-top: 2rem;
    }

    .hero__content {
        order: 1;
    }

    .alert-tag {
        order: 0;
        font-size: 0.8rem;
    }

    .hero__info-card {
        width: 100%;
        max-width: 400px;
    }

    .hero__alert {
        grid-column: 1;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proceso__steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .diferencial__inner {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .contacto__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contacto__header,
    .contacto__buttons,
    .contacto__form,
    .contacto__map {
        grid-column: 1;
        grid-row: auto;
    }

    .contacto__header  { order: 1; }
    .contacto__form    { order: 2; }
    .contacto__buttons { order: 3; }
    .contacto__map     { order: 4; }

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

    .footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .nav__logo-text-wrapper {
        display: none;
    }

    .nav__logo-img {
        height: 50px;
    }

    .nav__links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 999;
    }

    .nav__links.open {
        display: flex;
    }

    .nav__link {
        font-size: 1.4rem;
    }

    .nav__cta {
        display: none;
    }

    .nav__toggle {
        display: flex;
        z-index: 1000;
    }

    .nav__toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav__toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .soluciones,
    .complementarios,
    .proceso,
    .diferencial,
    .faq,
    .contacto {
        padding: 3rem 0;
    }

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

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__bottom .container {
        flex-direction: column;
        text-align: center;
    }

    .hero__title {
        font-size: 2.2rem;
        max-width: 100%;
    }

    .hero__info-card {
        width: 100%;
        max-width: 100%;
    }

    .hero__info-card-image {
        height: 260px;
    }

    .hero__bg {
        background-image: url('images/celuhero.png');
    }

    .proceso {
        background-image: url('images/fondopropuestacelu.png') !important;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }

    .btn--lg {
        padding: 0.9rem 1.75rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .hero__trust {
        flex-direction: column;
        gap: 0.75rem;
        grid-template-columns: 1fr;
    }

    .hero__info-card-image {
        height: 280px;
    }

    .hero__info-card-title {
        font-size: 1.2rem;
    }

    .hero__info-card-subtitle {
        font-size: 0.9rem;
    }

    .hero__info-grid {
        padding: 1.25rem;
        gap: 0.85rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .comp-card {
        padding: 1.5rem;
    }

    .contacto__form {
        padding: 1.5rem;
        margin-top: 0;
    }

    .step {
        padding: 1.75rem 1.25rem;
    }

    .pillar {
        flex-direction: column;
        gap: 1rem;
    }

    .faq-item__question {
        padding: 1.25rem 1.35rem;
    }

    .faq-item__question h3 {
        font-size: 0.95rem;
    }

    .faq-item__answer-inner {
        padding: 0 1.35rem 1.35rem 1.35rem;
    }

    .faq-item__answer p {
        font-size: 0.88rem;
    }
}
