/* ============================================
   FINANCIERA 360 — Estilos Modernos
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');



:root {

    --dark: #062e20;

    --dark-2: #0a3d2a;

    --dark-3: #0f4d35;

    --emerald: #064e3b;

    --emerald-light: #065f46;

    --gold: #fbbf24;

    --gold-dark: #f59e0b;

    --text: #e2e8f0;

    --text-muted: #a7c4b8;

    --white: #ffffff;

    --border: rgba(255,255,255,0.10);

    --radius: 12px;

    --radius-lg: 16px;

    --shadow: 0 8px 32px rgba(0,0,0,0.3);

}



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



body {

    font-family: 'Inter', -apple-system, system-ui, sans-serif;

    background: var(--dark) url('../../assets/img/Fondo.jpg') center/cover no-repeat fixed;

    color: var(--text);

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;

}



.container {

    max-width: 1280px;

    margin: 0 auto;

    padding: 0 2rem;

}



/* ============================================

   HEADER / NAV

   ============================================ */

.site-header {

    position: fixed;

    top: 0; left: 0; right: 0;

    z-index: 1000;

    background: linear-gradient(90deg, #b08935 0%, #d8b456 20%, #ebd082 40%, #ebd082 60%, #ceaa4c 80%, #a27a29 100%);

    backdrop-filter: blur(20px);

    border-bottom: 2px solid rgba(160, 120, 20, 0.35);

    transition: all 0.3s;

}



.site-header.scrolled {

    background: linear-gradient(90deg, #a68132 0%, #ccaa51 20%, #dfc57a 40%, #dfc57a 60%, #c4a148 80%, #997326 100%);

    box-shadow: 0 4px 20px rgba(140, 100, 10, 0.35);

}



.header-inner {

    max-width: 1280px;

    margin: 0 auto;

    padding: 0 2rem;

    height: 72px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 2rem;

}



.header-brand {

    display: flex;

    align-items: center;

    gap: 0.75rem;

    text-decoration: none;

    flex-shrink: 0;

}



.header-logo {

    height: 40px;

    width: auto;

    filter: none;

}



.header-brand-text {

    display: flex;

    flex-direction: column;

}



.header-brand-name {

    color: #2a1a00;

    font-size: 1.05rem;

    font-weight: 400;

    letter-spacing: 0.15em;

    text-transform: uppercase;

}



.header-brand-name strong {

    color: #2a1a00;

    font-weight: 900;

}



.header-brand-sub {

    color: rgba(42, 26, 0, 0.6);

    font-size: 0.65rem;

    letter-spacing: 0.3em;

    text-transform: uppercase;

}



/* Nav links */

.header-nav {

    display: flex;

    align-items: center;

    gap: 0.15rem;

    background: rgba(255, 255, 255, 0.18);

    border: 1px solid rgba(160, 120, 20, 0.35);

    border-radius: 10px;

    padding: 0.25rem;

}



.nav-link {

    color: #3d2800;

    text-decoration: none;

    font-size: 0.85rem;

    font-weight: 600;

    padding: 0.45rem 0.85rem;

    border-radius: 7px;

    transition: all 0.2s;

    white-space: nowrap;

    background: none;

    border: 1px solid rgba(0, 0, 0, 0.05);

    cursor: pointer;

    font-family: inherit;

}



.nav-link:hover {

    color: #2a1a00;

    background: rgba(0, 0, 0, 0.05); border-radius: 100px;

}



.nav-link.active {

    color: #2a1a00;

    background: rgba(0, 0, 0, 0.12);

    font-weight: 700;

}



/* Sedes dropdown */

.nav-sedes-dropdown {

    position: relative;

}



.nav-sedes-btn {

    display: inline-flex;

    align-items: center;

    gap: 0.35rem;

    font-size: 0.85rem !important;

}



.nav-sedes-btn .fa-chevron-down {

    font-size: 0.6rem;

    transition: transform 0.2s;

}



.nav-sedes-dropdown.open .fa-chevron-down {

    transform: rotate(180deg);

}



.sedes-menu {

    display: none;

    position: absolute;

    top: calc(100% + 8px);

    right: 0;

    background: var(--dark-2);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    min-width: 180px;

    padding: 0.5rem;

    box-shadow: var(--shadow);

}



.nav-sedes-dropdown.open .sedes-menu {

    display: block;

}



.sedes-menu a {

    display: block;

    padding: 0.55rem 0.85rem;

    color: var(--text-muted);

    text-decoration: none;

    font-size: 0.88rem;

    font-weight: 500;

    border-radius: 6px;

    transition: all 0.15s;

}



.sedes-menu a:hover {

    color: #2a1a00;

    background: rgba(212, 167, 44, 0.15);

}



/* Header action buttons */

.header-actions {

    display: flex;

    gap: 0.5rem;

    flex-shrink: 0;

}



.btn-header {

    display: inline-flex;

    align-items: center;

    gap: 0.4rem;

    padding: 0.5rem 1.1rem;

    font-size: 0.82rem;

    font-weight: 700;

    border-radius: 8px;

    text-decoration: none;

    transition: all 0.2s;

    white-space: nowrap;

}



.btn-pagar {

    color: #2a1a00;

    background: transparent;

    border: 1px solid rgba(61, 40, 0, 0.2); box-shadow: inset 0 0 10px rgba(255,255,255,0.5);

}



.btn-pagar:hover, .btn-pagar.active {

    background: rgba(255, 255, 255, 0.35);

    border-color: rgba(42, 26, 0, 0.6);

}



.btn-agendar {

    color: #3d2800;

    background: #ffd54f;

    border: 1px solid #fbbf24;

}



.btn-agendar:hover, .btn-agendar.active {

    background: #3d2800;

    border-color: #3d2800;

    transform: translateY(-1px);

    box-shadow: 0 4px 12px rgba(42, 26, 0, 0.3);

}



/* Mobile toggle */

.mobile-toggle {

    display: none;

    flex-direction: column;

    gap: 5px;

    background: none;

    border: none;

    cursor: pointer;

    padding: 4px;

}



.mobile-toggle span {

    display: block;

    width: 24px;

    height: 2px;

    background: #2a1a00;

    transition: all 0.3s;

    border-radius: 2px;

}



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

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

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



/* ============================================

   HERO

   ============================================ */

.hero {

    position: relative;

    min-height: 85vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding-top: 72px;

    background: rgba(6, 46, 32, 0.45);

    backdrop-filter: blur(8px);

    -webkit-backdrop-filter: blur(8px);

}



.hero-bg {

    position: absolute;

    top: 0; right: 0;

    width: 55%;

    height: 100%;

    pointer-events: none;

    overflow: hidden;

}



.hero-mosaic {

    position: absolute;

    top: 50%;

    right: -5%;

    transform: translateY(-50%) skewX(-6deg);

    display: flex;

    gap: 10px;

    height: 90%;

}



.mosaic-panel {

    width: 200px;

    border-radius: 12px;

    overflow: hidden;

    opacity: 0.5;

    transition: opacity 0.5s;

    animation: panelFade 3s ease-in-out calc(var(--i) * 0.5s) infinite alternate;

}



.mosaic-panel img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



@keyframes panelFade {

    0% { opacity: 0.3; }

    100% { opacity: 0.6; }

}



.hero::after {

    content: '';

    position: absolute;

    top: 0; left: 0; right: 0; bottom: 0;

    background: transparent;

    pointer-events: none;

}



.hero-content {

    position: relative;

    z-index: 2;

    max-width: 1280px;

    margin: 0 auto;

    padding: 4rem 2rem;

    width: 100%;

}



.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 0.5rem;

    color: #d0a852;

    font-size: 0.85rem;

    font-weight: 600;

    background: rgba(208, 168, 82, 0.1);

    padding: 0.4rem 1rem;

    border-radius: 50px;

    border: 1px solid rgba(208, 168, 82, 0.2);

    margin-bottom: 1.5rem;

}



.hero h1 {

    font-size: clamp(2.5rem, 6vw, 4.5rem);

    font-weight: 900; letter-spacing: -1px;

    line-height: 1.08;

    color: #d0a852;

    margin-bottom: 1rem;

    letter-spacing: -0.02em;

    max-width: 600px;

}



.hero h1 span {

    color: #d0a852;

    position: relative;

}



.hero p {

    font-size: 1.1rem;

    color: #a7c4b8;

    max-width: 550px;

    margin-bottom: 2rem;

    line-height: 1.7;

}



.hero-actions {

    display: flex;

    gap: 1rem;

    flex-wrap: wrap;

    margin-bottom: 2.5rem;

}



.btn-hero {

    display: inline-flex;

    align-items: center;

    gap: 0.5rem;

    padding: 0.9rem 2rem;

    font-size: 0.95rem;

    font-weight: 700;

    border-radius: 10px;

    text-decoration: none;

    transition: all 0.25s;

    cursor: pointer;

    border: none;

    font-family: inherit;

}



.btn-gold {

    background: linear-gradient(135deg, var(--gold), var(--gold-dark));

    color: var(--dark);

    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.25);

}



.btn-gold:hover {

    transform: translateY(-2px);

    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.4);

}



.btn-outline {

    background: transparent;

    color: var(--white);

    border: 2px solid rgba(255,255,255,0.2);

}



.btn-outline:hover {

    background: rgba(255,255,255,0.06);

    border-color: rgba(255,255,255,0.4);

    transform: translateY(-2px);

}



.hero-features {

    display: flex;

    gap: 2rem;

    flex-wrap: wrap;

}



.hf {

    display: flex;

    align-items: center;

    gap: 0.5rem;

    font-size: 0.85rem;

    color: var(--text-muted);

    font-weight: 500;

}



.hf i {

    color: #d0a852;

    font-size: 0.9rem;

}



/* ============================================

   SERVICES

   ============================================ */

.services {

    padding: 5rem 0;

    background: rgba(10, 61, 42, 0.4);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    border-top: 1px solid rgba(255,255,255,0.08);

    border-bottom: 1px solid rgba(255,255,255,0.08);

}



.services-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 1.5rem;

}



.service-card {

    background: rgba(15, 77, 53, 0.45);

    backdrop-filter: blur(16px);

    -webkit-backdrop-filter: blur(16px);

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: var(--radius-lg);

    padding: 2rem 1.5rem;

    text-decoration: none;

    color: var(--text);

    transition: all 0.3s;

    text-align: center;

}



.service-card:hover {

    border-color: var(--gold);

    transform: translateY(-4px);

    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.08);

}



.sc-icon {

    width: 56px;

    height: 56px;

    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.3rem;

    color: var(--white);

    margin: 0 auto 1.25rem;

}



.service-card:hover .sc-icon {

    background: linear-gradient(135deg, var(--gold), var(--gold-dark));

    color: var(--dark);

}



.service-card h3 {

    font-size: 1rem;

    font-weight: 700;

    color: var(--white);

    margin-bottom: 0.5rem;

}



.service-card p {

    font-size: 0.85rem;

    color: var(--text-muted);

    line-height: 1.5;

}



/* ============================================

   CATALOG SECTIONS

   ============================================ */

.catalog-section {

    padding: 3rem 0;

}



.section-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 1.5rem;

}



.section-header.centered {

    flex-direction: column;

    text-align: center;

    gap: 0.5rem;

    margin-bottom: 2rem;

}



.section-header h2 {

    font-size: 1.35rem;

    font-weight: 800;

    color: var(--white);

    display: flex;

    align-items: center;

    gap: 0.5rem;

}



.section-header h2 i {

    color: var(--gold);

}



.section-header p {

    color: var(--text-muted);

    font-size: 0.95rem;

}



.link-more {

    color: var(--gold);

    text-decoration: none;

    font-weight: 600;

    font-size: 0.88rem;

    display: flex;

    align-items: center;

    gap: 0.4rem;

    transition: all 0.2s;

}



.link-more:hover {

    gap: 0.7rem;

}



/* Vehicle cards */

.v-card {

    background: rgba(10, 61, 42, 0.45);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: var(--radius-lg);

    overflow: hidden;

    cursor: pointer;

    transition: all 0.3s;

    height: 100%;

}



.v-card:hover {

    border-color: var(--gold);

    transform: translateY(-4px);

    box-shadow: 0 12px 40px rgba(0,0,0,0.3);

}



.v-img {

    height: 180px;

    overflow: hidden;

    background: var(--dark-3);

}



.v-img img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.4s;

}



.v-card:hover .v-img img {

    transform: scale(1.08);

}



.v-body {

    padding: 1.25rem;

}



.v-body h3 {

    font-size: 0.95rem;

    font-weight: 700;

    color: var(--white);

    margin-bottom: 0.5rem;

}



.v-meta {

    display: flex;

    gap: 0.75rem;

    font-size: 0.78rem;

    color: var(--text-muted);

    margin-bottom: 0.75rem;

}



.v-meta i {

    color: var(--gold);

    margin-right: 0.2rem;

}



.v-bottom {

    display: flex;

    justify-content: space-between;

    align-items: baseline;

    padding-top: 0.75rem;

    border-top: 1px solid var(--border);

}



.v-price {

    font-size: 1.15rem;

    font-weight: 900;

    color: var(--white);

}



.v-cuota {

    font-size: 0.78rem;

    color: var(--gold);

    font-weight: 700;

}



/* Static catalog grid */

.catalog-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));

    gap: 1rem;

}



.cat-card {

    border-radius: var(--radius-lg);

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.12);

    cursor: pointer;

    transition: all 0.3s;

    background: rgba(15, 77, 53, 0.4);

    backdrop-filter: blur(8px);

    -webkit-backdrop-filter: blur(8px);

}



.cat-card:hover {

    border-color: var(--gold);

    transform: translateY(-4px);

    box-shadow: 0 12px 40px rgba(0,0,0,0.3);

}



.cat-card img {

    width: 100%;

    height: 200px;

    object-fit: cover;

    display: block;

    transition: transform 0.4s;

}



.cat-card:hover img {

    transform: scale(1.05);

}



/* Swiper overrides */

.swiper { padding-bottom: 2.5rem; }

.swiper-pagination-bullet { background: var(--text-muted); opacity: 0.4; }

.swiper-pagination-bullet-active { background: var(--gold); opacity: 1; }



/* ============================================

   TICKET LOOKUP

   ============================================ */

.lookup-section {

    padding: 4rem 0;

}



.lookup-card {

    background: linear-gradient(135deg, rgba(6, 78, 59, 0.55), rgba(6, 95, 70, 0.55));

    backdrop-filter: blur(16px);

    -webkit-backdrop-filter: blur(16px);

    border-radius: var(--radius-lg);

    padding: 3rem;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 2rem;

    flex-wrap: wrap;

}



.lookup-text h2 {

    color: var(--white);

    font-size: 1.4rem;

    font-weight: 800;

    margin-bottom: 0.4rem;

    display: flex;

    align-items: center;

    gap: 0.5rem;

}



.lookup-text h2 i {

    color: var(--gold);

}



.lookup-text p {

    color: rgba(255,255,255,0.7);

    font-size: 0.95rem;

}



.lookup-form {

    display: flex;

    gap: 0.5rem;

    flex: 1;

    max-width: 420px;

}



.lookup-form input {

    flex: 1;

    padding: 0.85rem 1.25rem;

    border: 2px solid rgba(255,255,255,0.2);

    border-radius: 10px;

    background: rgba(255,255,255,0.1);

    color: var(--white);

    font-size: 1rem;

    font-family: inherit;

    backdrop-filter: blur(4px);

}



.lookup-form input::placeholder { color: rgba(255,255,255,0.5); }

.lookup-form input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.15); }



.lookup-form button {

    padding: 0.85rem 1.5rem;

    background: var(--gold);

    color: var(--dark);

    border: none;

    border-radius: 10px;

    font-weight: 700;

    font-size: 0.95rem;

    cursor: pointer;

    display: flex;

    align-items: center;

    gap: 0.4rem;

    font-family: inherit;

    white-space: nowrap;

    transition: all 0.2s;

}



.lookup-form button:hover { background: var(--gold-dark); transform: translateY(-1px); }



/* ============================================

   INFO SECTION

   ============================================ */

.info-section {

    padding: 4rem 0;

    background: rgba(10, 61, 42, 0.4);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    border-top: 1px solid rgba(255,255,255,0.08);

}



.info-header {

    margin-bottom: 2rem;

}



.info-header h2 {

    font-size: 1.4rem;

    font-weight: 800;

    color: var(--white);

    display: flex;

    align-items: center;

    gap: 0.5rem;

    margin-bottom: 0.3rem;

}



.info-header h2 i { color: var(--gold); }

.info-header p { color: var(--text-muted); }



.info-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 1.5rem;

}



.info-card {

    border-radius: var(--radius-lg);

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.12);

    background: rgba(15, 77, 53, 0.4);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

}



.info-card img {

    width: 100%;

    height: auto;

    display: block;

}



.info-placeholder {

    padding: 3rem 2rem;

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 0.75rem;

}



.info-placeholder i { font-size: 2.5rem; color: var(--gold); }

.info-placeholder h3 { color: var(--white); font-size: 1.1rem; }

.info-placeholder p { color: var(--text-muted); font-size: 0.9rem; }



/* ============================================

   ENTREGAS

   ============================================ */

.entregas-section {

    padding: 4rem 0;

}



.entregas-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));

    gap: 1.25rem;

}



.e-card {

    position: relative;

    border-radius: var(--radius-lg);

    overflow: hidden;

    cursor: pointer;

    border: 1px solid var(--border);

    transition: all 0.3s;

}



.e-card:hover {

    transform: translateY(-4px);

    border-color: var(--gold);

    box-shadow: 0 12px 40px rgba(0,0,0,0.3);

}



.e-card img {

    width: 100%;

    height: 220px;

    object-fit: cover;

    display: block;

}



.e-overlay {

    position: absolute;

    bottom: 0; left: 0; right: 0;

    background: linear-gradient(transparent, rgba(10,22,40,0.9));

    color: var(--white);

    padding: 2rem 1rem 0.75rem;

    font-size: 0.85rem;

    font-weight: 700;

}



.e-overlay i { color: var(--gold); margin-right: 0.3rem; }



/* ============================================

   CTA

   ============================================ */

.cta-section {

    padding: 5rem 2rem;

    background: linear-gradient(135deg, rgba(6, 78, 59, 0.5), rgba(2, 44, 34, 0.5));

    backdrop-filter: blur(16px);

    -webkit-backdrop-filter: blur(16px);

    text-align: center;

    position: relative;

    overflow: hidden;

}



.cta-section::before {

    content: '';

    position: absolute;

    top: -50%; right: -20%;

    width: 60%; height: 200%;

    background: radial-gradient(circle, rgba(251,191,36,0.06) 0%, transparent 70%);

}



.cta-inner {

    position: relative;

    z-index: 1;

    max-width: 600px;

    margin: 0 auto;

}



.cta-inner h2 {

    font-size: 2rem;

    font-weight: 900;

    color: var(--white);

    margin-bottom: 0.75rem;

}



.cta-inner p {

    color: rgba(255,255,255,0.7);

    font-size: 1.05rem;

    margin-bottom: 2rem;

}



.cta-actions {

    display: flex;

    gap: 1rem;

    justify-content: center;

    flex-wrap: wrap;

}



/* ============================================

   FOOTER

   ============================================ */

.site-footer {

    background: rgba(6, 46, 32, 0.7);

    backdrop-filter: blur(16px);

    -webkit-backdrop-filter: blur(16px);

    border-top: 1px solid rgba(255,255,255,0.08);

    padding: 3rem 0 2rem;

}



.footer-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 2rem;

    margin-bottom: 2rem;

}



.footer-brand {

    display: flex;

    flex-direction: column;

    gap: 0.4rem;

}



.footer-logo {

    height: 40px;

    width: auto;

    filter: brightness(0) invert(1);

    margin-bottom: 0.5rem;

}



.footer-brand h3 {

    color: var(--white);

    font-size: 1.1rem;

    font-weight: 800;

}



.footer-brand p {

    color: var(--text-muted);

    font-size: 0.88rem;

}



.footer-address {

    margin-top: 0.25rem;

}



.footer-address i {

    color: var(--gold);

    margin-right: 0.3rem;

}



.site-footer h4 {

    color: var(--gold);

    font-size: 0.85rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.1em;

    margin-bottom: 1rem;

}



.site-footer ul {

    list-style: none;

}



.site-footer ul li {

    margin-bottom: 0.5rem;

}



.site-footer ul a {

    color: var(--text-muted);

    text-decoration: none;

    font-size: 0.88rem;

    transition: color 0.2s;

}



.site-footer ul a:hover {

    color: var(--gold);

}



.footer-bottom {

    border-top: 1px solid var(--border);

    padding-top: 1.5rem;

    text-align: center;

    color: var(--text-muted);

    font-size: 0.82rem;

}



/* ============================================

   LIGHTBOX

   ============================================ */

.lightbox {

    display: none;

    position: fixed;

    top: 0; left: 0;

    width: 100%; height: 100%;

    background: rgba(0,0,0,0.92);

    z-index: 9999;

    align-items: center;

    justify-content: center;

    backdrop-filter: blur(8px);

}



.lightbox.active { display: flex; }



.lightbox-wrap {

    position: relative;

    max-width: 90%;

    max-height: 90%;

}



.lightbox-wrap img {

    max-width: 100%;

    max-height: 85vh;

    border-radius: var(--radius);

    box-shadow: 0 20px 60px rgba(0,0,0,0.5);

}



.lightbox-close {

    position: absolute;

    top: -45px; right: 0;

    background: none;

    border: none;

    color: var(--white);

    font-size: 2.2rem;

    cursor: pointer;

}



/* ============================================

   RESPONSIVE

   ============================================ */

@media (max-width: 1024px) {

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

    .hero-bg { width: 45%; opacity: 0.6; }

}



@media (max-width: 768px) {

    .header-inner { padding: 0 1rem; }



    .header-nav {

        display: none;

        position: fixed;

        top: 72px; left: 0; right: 0; bottom: 0;

        background: var(--dark);

        flex-direction: column;

        padding: 1.5rem;

        gap: 0.25rem;

        overflow-y: auto;

        border-top: 1px solid var(--border);

    }



    .header-nav.open { display: flex; }



    .header-actions { display: none; }



    .header-nav.open ~ .header-actions {

        display: flex;

        position: fixed;

        bottom: 0; left: 0; right: 0;

        padding: 1rem;

        background: var(--dark-2);

        border-top: 1px solid var(--border);

        z-index: 1001;

    }



    .mobile-toggle { display: flex; }



    .nav-link {

        padding: 0.75rem 1rem;

        font-size: 1rem;

    }



    .hero {

        min-height: auto;

        padding: 7rem 0 3rem;

    }



    .hero-bg { display: none; }



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



    .hero-features { flex-direction: column; gap: 0.75rem; }



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



    .lookup-card {

        flex-direction: column;

        text-align: center;

        padding: 2rem;

    }



    .lookup-form { max-width: 100%; }



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



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



    .cta-inner h2 { font-size: 1.5rem; }

}



@media (max-width: 480px) {

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

    .hero h1 { font-size: 1.7rem; }

    .hero-actions { flex-direction: column; }

    .btn-hero { width: 100%; justify-content: center; }

    .lookup-form { flex-direction: column; }

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

}



/* ============================================
   SUBPAGE STYLES
   ============================================ */

.page-hero {

    padding: 7rem 0 3rem;

    background: linear-gradient(135deg, var(--dark) 0%, var(--emerald) 100%);

    text-align: center;

    border-bottom: 3px solid var(--gold);

}



.page-hero h1 {

    font-size: 2.2rem;

    font-weight: 900;

    color: var(--white);

    margin-bottom: 0.75rem;

}



.page-hero h1 i { color: var(--gold); margin-right: 0.5rem; }



.page-hero p {

    color: rgba(255,255,255,0.7);

    font-size: 1.05rem;

    max-width: 600px;

    margin: 0 auto;

}



.catalog-page {

    padding: 3rem 0;

}



.cat-section {

    margin-bottom: 3rem;

}



.cat-count {

    font-size: 0.85rem;

    color: var(--gold);

    font-weight: 600;

    background: rgba(251,191,36,0.1);

    padding: 0.3rem 0.8rem;

    border-radius: 50px;

}



/* Lightbox nav arrows */

.lb-nav {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    background: rgba(255,255,255,0.15);

    color: var(--white);

    border: 1px solid rgba(0, 0, 0, 0.05);

    width: 48px;

    height: 48px;

    border-radius: 50%;

    font-size: 1.2rem;

    cursor: pointer;

    transition: all 0.2s;

    display: flex;

    align-items: center;

    justify-content: center;

    backdrop-filter: blur(4px);

}



.lb-nav:hover {

    background: rgba(255,255,255,0.3);

}



.lb-prev { left: -70px; }

.lb-next { right: -70px; }



@media (max-width: 768px) {

    .page-hero { padding: 6rem 1rem 2rem; }

    .page-hero h1 { font-size: 1.6rem; }

    .lb-prev { left: 10px; }

    .lb-next { right: 10px; }

}



/* ============================================ */

.header {

    background: linear-gradient(135deg, #064e3b 0%, #022c22 100%);

    border-bottom: 3px solid #fbbf24;

    box-shadow: 0 4px 15px rgba(0,0,0,0.2);

    position: sticky;

    top: 0;

    z-index: 1000;

}



.nav {

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 1rem 2rem;

    max-width: 1400px;

    margin: 0 auto;

    gap: 2rem;

    position: relative;

    z-index: 1;

}



.nav-links {

    display: flex;

    list-style: none;

    gap: 1.5rem;

    align-items: center;

}



.nav-links a { color: rgba(255,255,255,0.9); text-decoration: none; font-weight: 600; font-size: 0.9rem; padding: 0.5rem 0.9rem; border-radius: 8px; transition: all 0.2s; }

.nav-links a:hover, .nav-links a.active { background: white; color: #064e3b; }



.page-header {

    background: linear-gradient(135deg, #064e3b, #022c22);

    padding: 3rem 2rem;

    text-align: center;

    color: white;

}



.page-header h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 1rem; }

.page-header p { font-size: 1.2rem; opacity: 0.95; }



.section { padding: 3rem 2rem; }

.footer { background: var(--dark); color: rgba(255,255,255,0.9); padding: 3rem 2rem 2rem; }

.footer h3, .footer h4 { color: var(--gold); margin-bottom: 1rem; font-weight: 800; }

.footer ul { list-style: none; }

.footer ul a { color: rgba(255,255,255,0.7); text-decoration: none; }

.footer ul a:hover { color: var(--gold); }

.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; text-align: center; color: var(--text-muted); font-size: 0.82rem; }

