/* ==================================================================
   Transportes Con Con Ltda. — Estilos públicos
   ================================================================== */

:root {
    --azul-900: #071A33;
    --azul-800: #0B3A66;
    --azul-700: #0E4C92;
    --celeste:  #1E88E5;
    --gris-bg:  #F5F7FA;
    --gris-text:#4B5563;
    --blanco:   #FFFFFF;
    --amarillo: #F4B000;
    --amarillo-d:#D69A00;
    --verde:    #16A34A;
    --rojo:     #DC2626;
    --border:   #E5EAF0;

    --shadow-sm: 0 2px 8px rgba(7, 26, 51, .06);
    --shadow:    0 10px 30px rgba(7, 26, 51, .10);
    --shadow-lg: 0 20px 50px rgba(7, 26, 51, .16);

    --radius:    14px;
    --radius-sm: 10px;
    --navbar-h:  76px;

    --font-head: 'Poppins', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--navbar-h); }

body {
    font-family: var(--font-body);
    color: var(--gris-text);
    background: var(--blanco);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); color: var(--azul-900); font-weight: 700; }

a { color: var(--azul-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--celeste); }

.req { color: var(--rojo); font-weight: 700; }

/* ------------------------- BOTONES ------------------------- */
.btn { font-weight: 600; border-radius: var(--radius-sm); transition: all .25s ease; letter-spacing: .2px; }
.btn-lg { padding: .8rem 1.6rem; }

.btn-primary {
    background: var(--azul-700); border-color: var(--azul-700); color: #fff;
}
.btn-primary:hover { background: var(--azul-800); border-color: var(--azul-800); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-accent {
    background: var(--amarillo); border-color: var(--amarillo); color: var(--azul-900);
}
.btn-accent:hover { background: var(--amarillo-d); border-color: var(--amarillo-d); color: var(--azul-900); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(244,176,0,.35); }

.btn-outline-primary { color: var(--azul-700); border-color: var(--azul-700); }
.btn-outline-primary:hover { background: var(--azul-700); border-color: var(--azul-700); transform: translateY(-2px); }

.btn-outline-light:hover { transform: translateY(-2px); }

.text-accent { color: var(--amarillo) !important; }

/* ------------------------- NAVBAR ------------------------- */
.site-navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1030;
    min-height: var(--navbar-h);
    background: var(--azul-900);
    box-shadow: var(--shadow-sm);
    transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
    padding: .35rem 0;
}
.site-navbar.navbar-transparent { background: transparent; box-shadow: none; }
.site-navbar.navbar-scrolled {
    background: rgba(7, 26, 51, .96);
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 24px rgba(7,26,51,.25);
}

.navbar-brand { color: #fff !important; }
.navbar-logo { height: 48px; width: auto; max-width: min(46vw, 210px); object-fit: contain; }
.brand-mark {
    width: 42px; height: 42px; border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--amarillo); color: var(--azul-900); font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(244,176,0,.4);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: #fff; }
.brand-sub  { font-size: .72rem; color: var(--amarillo); letter-spacing: 2px; text-transform: uppercase; }

.site-navbar .nav-link {
    color: rgba(255,255,255,.85) !important; font-weight: 500;
    padding: .5rem .9rem !important; border-radius: 8px; position: relative;
}
.site-navbar .nav-link:hover { color: #fff !important; }
.site-navbar .nav-link.active { color: #fff !important; }
.site-navbar .nav-link.active::after {
    content: ''; position: absolute; left: .9rem; right: .9rem; bottom: .25rem; height: 2px;
    background: var(--amarillo); border-radius: 2px;
}
.navbar-toggler { border-color: rgba(255,255,255,.4); }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon { filter: invert(1) brightness(2); }

/* ------------------------- HERO ------------------------- */
.hero {
    position: relative; min-height: 92vh; display: flex; align-items: center;
    background-size: cover; background-position: center; color: #fff;
    padding: calc(var(--navbar-h) + 2rem) 0 4rem;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(7,26,51,.94) 0%, rgba(11,58,102,.82) 55%, rgba(14,76,146,.55) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
    padding: .4rem 1rem; border-radius: 50px; font-size: .85rem; font-weight: 500;
    margin-bottom: 1.5rem; backdrop-filter: blur(4px);
}
.hero-eyebrow i { color: var(--amarillo); }
.hero-title {
    color: #fff; font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 800;
    line-height: 1.1; margin-bottom: 1.25rem; letter-spacing: -.5px;
}
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,.9); max-width: 640px; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; font-size: .9rem; color: rgba(255,255,255,.92); }
.hero-badge i { color: var(--amarillo); font-size: 1.1rem; }

.hero-scroll {
    position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,.8); font-size: 1.6rem; z-index: 2;
    animation: bounce 2s infinite;
}
.hero-scroll:hover { color: var(--amarillo); }
@keyframes bounce { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,10px); } }

/* ------------------------- PAGE HERO (interiores) ------------------------- */
.page-hero {
    position: relative; padding: calc(var(--navbar-h) + 3.5rem) 0 3.5rem;
    background-size: cover; background-position: center; color: #fff;
}
.page-hero-sm { padding: calc(var(--navbar-h) + 2.5rem) 0 2.5rem; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(7,26,51,.93), rgba(11,58,102,.78)); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-title { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: .5rem; }
.page-hero-subtitle { color: rgba(255,255,255,.88); max-width: 720px; font-size: 1.08rem; margin-bottom: 0; }
.page-breadcrumb { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 1rem; }
.page-breadcrumb a { color: rgba(255,255,255,.85); }
.page-breadcrumb a:hover { color: var(--amarillo); }
.page-breadcrumb span { margin: 0 .35rem; }

/* ------------------------- SECCIONES ------------------------- */
.section { padding: 5rem 0; }
.section-light { background: var(--gris-bg); }
.section-dark { background: linear-gradient(135deg, var(--azul-900), var(--azul-800)); color: #fff; }
.section-stats { padding: 3rem 0; background: #fff; border-bottom: 1px solid var(--border); margin-top: -1px; }

.section-eyebrow {
    display: inline-block; color: var(--celeste); font-weight: 700; font-size: .8rem;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: .75rem;
}
.section-eyebrow.light { color: var(--amarillo); }
.section-title { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; margin-bottom: 1rem; line-height: 1.2; }
.section-text { font-size: 1.05rem; color: var(--gris-text); }
.section-dark .section-text, .text-white-70 { color: rgba(255,255,255,.78); }

.check-list { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.check-list li { display: flex; align-items: flex-start; gap: .65rem; margin-bottom: .65rem; }
.check-list i { color: var(--verde); margin-top: .25rem; flex-shrink: 0; }
.section-dark .check-list i { color: var(--amarillo); }

/* ------------------------- STATS ------------------------- */
.stat-card { padding: 1rem .5rem; }
.stat-number { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--azul-700); line-height: 1; }
.stat-plus { color: var(--amarillo); }
.stat-icon { font-size: 2.2rem; color: var(--celeste); margin-bottom: .35rem; }
.stat-label { color: var(--gris-text); font-weight: 500; font-size: .95rem; margin-top: .35rem; }

/* ------------------------- MEDIA FRAME (placeholder elegante) ------------------------- */
.media-frame {
    position: relative; border-radius: var(--radius); overflow: hidden;
    min-height: 340px; background-size: cover; background-position: center;
    box-shadow: var(--shadow); border: 1px solid var(--border);
}
.media-frame-lg { min-height: 420px; }
.media-frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(7,26,51,.55)); }
.media-frame-tag {
    position: absolute; left: 1rem; bottom: 1rem; z-index: 2; color: #fff;
    background: rgba(7,26,51,.6); border: 1px solid rgba(255,255,255,.2);
    padding: .4rem .9rem; border-radius: 50px; font-size: .85rem; font-weight: 500;
    display: inline-flex; align-items: center; gap: .5rem; backdrop-filter: blur(4px);
}
.media-frame-tag i { color: var(--amarillo); }

/* ------------------------- CARDS DE SERVICIO ------------------------- */
.service-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 2rem 1.75rem; box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--celeste); }
.service-card-lg { padding: 2.25rem 2rem; }
.service-icon {
    width: 60px; height: 60px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--azul-700), var(--celeste)); color: #fff; font-size: 1.6rem;
    margin-bottom: 1.25rem; box-shadow: 0 8px 18px rgba(14,76,146,.3);
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-3deg); transition: transform .3s ease; }
.service-title { font-size: 1.2rem; margin-bottom: .6rem; }
.service-desc { color: var(--gris-text); margin-bottom: 1rem; font-size: .98rem; }
.service-benefit {
    margin-top: auto; display: flex; align-items: flex-start; gap: .5rem;
    font-size: .9rem; color: var(--azul-800); font-weight: 500; padding-top: .75rem; border-top: 1px dashed var(--border);
}
.service-benefit i { color: var(--verde); margin-top: .15rem; }

/* ------------------------- FLOTA ------------------------- */
.fleet-pill {
    display: flex; align-items: center; gap: .6rem; background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-sm);
    padding: .85rem 1rem; color: #fff; font-weight: 500;
}
.fleet-pill i { color: var(--amarillo); font-size: 1.2rem; }
.fleet-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.fleet-card-media { position: relative; min-height: 240px; background-size: cover; background-position: center; }
.fleet-card-media::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, transparent 50%, rgba(7,26,51,.5)); }
.fleet-card-tag { position: absolute; top: 1rem; left: 1rem; z-index: 2; background: var(--amarillo); color: var(--azul-900); font-weight: 600; font-size: .8rem; padding: .3rem .8rem; border-radius: 50px; }
.fleet-card-body { padding: 1.75rem; }
.fleet-card-title { font-size: 1.3rem; margin-bottom: .75rem; }

/* ------------------------- SEGURIDAD ------------------------- */
.safety-item { text-align: center; }
.safety-icon {
    width: 70px; height: 70px; margin: 0 auto .75rem; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
    background: #fff; color: var(--azul-700); border: 2px solid var(--border); box-shadow: var(--shadow-sm);
    transition: all .3s ease;
}
.safety-item:hover .safety-icon { background: var(--azul-700); color: #fff; border-color: var(--azul-700); transform: translateY(-4px); }
.safety-label { font-size: .9rem; font-weight: 600; color: var(--azul-900); }

.safety-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; display: flex; gap: 1rem; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.safety-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.safety-card-icon { flex-shrink: 0; width: 54px; height: 54px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; background: rgba(30,136,229,.1); color: var(--azul-700); }
.safety-card-title { font-size: 1.1rem; margin-bottom: .35rem; }
.safety-card-desc { font-size: .95rem; color: var(--gris-text); margin-bottom: 0; }

/* ------------------------- VALORES / MISIÓN ------------------------- */
.value-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 1.75rem; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.value-icon { font-size: 2rem; color: var(--celeste); margin-bottom: 1rem; }
.value-title { font-size: 1.15rem; margin-bottom: .5rem; }
.value-desc { color: var(--gris-text); margin-bottom: 0; font-size: .96rem; }
.mv-icon { width: 60px; height: 60px; border-radius: 14px; background: linear-gradient(135deg, var(--azul-700), var(--celeste)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1.25rem; }

/* ------------------------- BENEFICIOS (portal) ------------------------- */
.benefit-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 1.5rem; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.benefit-icon { width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%; background: rgba(244,176,0,.15); color: var(--amarillo-d); display: flex; align-items: center; justify-content: center; font-size: 1.7rem; }
.benefit-title { font-size: 1.1rem; margin-bottom: .5rem; }
.benefit-desc { font-size: .92rem; color: var(--gris-text); margin-bottom: 0; }

/* ------------------------- VACANTES ------------------------- */
.vacancy-filter { min-width: 240px; }
.vacancy-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1.75rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
    transition: transform .3s, box-shadow .3s, border-color .3s; height: 100%;
}
.vacancy-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--celeste); }
.vacancy-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.vacancy-status { display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; font-weight: 600; color: var(--verde); }
.vacancy-status .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--verde); box-shadow: 0 0 0 3px rgba(22,163,74,.2); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(22,163,74,.2); } 50% { box-shadow: 0 0 0 6px rgba(22,163,74,.05); } }
.vacancy-cargo { font-size: .75rem; background: var(--gris-bg); color: var(--azul-800); padding: .25rem .7rem; border-radius: 50px; font-weight: 600; }
.vacancy-title { font-size: 1.2rem; margin-bottom: .6rem; }
.vacancy-desc { color: var(--gris-text); font-size: .94rem; margin-bottom: 1rem; }
.vacancy-meta { list-style: none; padding: 0; margin: 0 0 1.25rem; display: flex; flex-wrap: wrap; gap: .4rem 1rem; }
.vacancy-meta li { font-size: .85rem; color: var(--gris-text); display: inline-flex; align-items: center; gap: .35rem; }
.vacancy-meta i { color: var(--celeste); }

.empty-state { text-align: center; padding: 4rem 1rem; background: var(--gris-bg); border-radius: var(--radius); border: 1px dashed var(--border); }
.empty-state i { font-size: 3rem; color: var(--celeste); display: block; margin-bottom: 1rem; }

/* ------------------------- CTA BANDS ------------------------- */
.cta-band { position: relative; padding: 5rem 0; background-size: cover; background-position: center; color: #fff; }
.cta-band-sm { padding: 3.5rem 0; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(7,26,51,.93), rgba(14,76,146,.78)); }
.cta-content { position: relative; z-index: 2; }
.cta-title { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 1rem; }
.cta-text { color: rgba(255,255,255,.9); max-width: 640px; margin-bottom: 1.75rem; }
.cta-count { display: inline-block; background: var(--azul-900); color: #fff; border-radius: 50px; padding: .1rem .6rem; font-size: .85rem; margin-left: .5rem; }

/* ------------------------- CARDS / FORMULARIOS ------------------------- */
.card-elevated { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.form-section-title { font-size: 1.05rem; color: var(--azul-800); font-weight: 700; padding-bottom: .5rem; border-bottom: 2px solid var(--border); margin-bottom: 1.25rem; }
.form-label { font-weight: 600; color: var(--azul-900); font-size: .92rem; margin-bottom: .35rem; }
.form-control, .form-select {
    border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .65rem .9rem; font-size: .98rem;
    transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .form-select:focus { border-color: var(--celeste); box-shadow: 0 0 0 3px rgba(30,136,229,.15); }
.form-text { font-size: .82rem; }
textarea.form-control { resize: vertical; }

.apply-context { display: flex; align-items: center; gap: 1rem; background: rgba(30,136,229,.08); border: 1px solid rgba(30,136,229,.2); border-radius: var(--radius-sm); padding: 1rem 1.25rem; margin-bottom: 1.5rem; }
.apply-context i { font-size: 1.6rem; color: var(--azul-700); }
.apply-context-label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gris-text); }
.apply-consent { background: var(--gris-bg); border-radius: var(--radius-sm); padding: 1rem 1.25rem; }

/* loading en botón */
.js-submit.is-loading .btn-label { display: none; }
.js-submit.is-loading .btn-loading { display: inline-flex !important; align-items: center; }

/* ------------------------- CONTACTO ------------------------- */
.contact-info-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.contact-info-list li { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.contact-info-icon { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: var(--azul-700); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.contact-info-label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gris-text); }
.contact-info-value { font-weight: 600; color: var(--azul-900); }
.contact-note { display: flex; gap: .6rem; align-items: center; font-size: .88rem; color: var(--gris-text); background: var(--gris-bg); padding: .85rem 1rem; border-radius: var(--radius-sm); }
.contact-note i { color: var(--celeste); }
.contact-quick-list { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.contact-quick-list li { display: flex; align-items: center; gap: .65rem; margin-bottom: .65rem; font-weight: 500; }
.contact-quick-list i { color: var(--celeste); }

/* ------------------------- FOOTER ------------------------- */
.site-footer { background: var(--azul-900); color: rgba(255,255,255,.7); padding: 4rem 0 1.5rem; }
.footer-brand .brand-mark { width: 38px; height: 38px; }
.footer-text { color: rgba(255,255,255,.65); font-size: .95rem; }
.footer-title { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: rgba(255,255,255,.7); font-size: .92rem; }
.footer-links a:hover { color: var(--amarillo); padding-left: 4px; transition: all .2s; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; align-items: center; gap: .65rem; margin-bottom: .65rem; font-size: .92rem; }
.footer-contact i { color: var(--amarillo); }
.footer-contact a { color: rgba(255,255,255,.7); }
.footer-contact a:hover { color: #fff; }
.footer-client { padding: .75rem 1rem; background: rgba(255,255,255,.06); border-radius: var(--radius-sm); display: inline-block; }
.footer-client-label { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.5); margin-bottom: .35rem; }
.footer-client-logo { max-height: 40px; }
.footer-divider { border-color: rgba(255,255,255,.12); margin: 2.5rem 0 1.5rem; }
.footer-copy { color: rgba(255,255,255,.55); font-size: .85rem; }

/* ------------------------- BACK TO TOP ------------------------- */
.btn-to-top {
    position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 1040;
    width: 46px; height: 46px; border-radius: 50%; border: none;
    background: var(--azul-700); color: #fff; font-size: 1.2rem; cursor: pointer;
    box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(15px);
    transition: all .3s ease;
}
.btn-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.btn-to-top:hover { background: var(--amarillo); color: var(--azul-900); }

/* ------------------------- FLASH ------------------------- */
.flash-container { margin-top: calc(var(--navbar-h) + 1rem); }
.flash-stack .alert { border: none; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }

/* ------------------------- ANIMACIONES REVEAL ------------------------- */
.reveal { opacity: 0; transition: opacity .7s ease, transform .7s ease; will-change: opacity, transform; }
.reveal[data-reveal="up"]    { transform: translateY(40px); }
.reveal[data-reveal="left"]  { transform: translateX(40px); }
.reveal[data-reveal="right"] { transform: translateX(-40px); }
.reveal[data-reveal="fade"]  { transform: none; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; transition: none; }
    .hero-scroll { animation: none; }
    html { scroll-behavior: auto; }
}

/* ------------------------- RESPONSIVE ------------------------- */
@media (max-width: 991.98px) {
    .site-navbar { background: var(--azul-900) !important; }
    .navbar-collapse { background: var(--azul-900); margin-top: .5rem; padding: 1rem; border-radius: var(--radius-sm); }
    .site-navbar .nav-link.active::after { display: none; }
    .hero { min-height: 80vh; text-align: left; }
    .section { padding: 3.5rem 0; }
}
@media (max-width: 575.98px) {
    .hero-actions .btn { width: 100%; }
    .brand-name { font-size: .95rem; }
    .card-elevated { padding: 1.5rem; }
}
