:root {
    --c-red-main: #CC0000;
    --c-red-light: #E31314;
    --c-white: #FFFFFF;
    --c-black-soft: #2b2928;
    --c-black-pure: #000000;
    --c-grey-muted: #525252;
    --c-grey-light: #F9F9F9;
    --c-taxi-yellow: #F5C200;
    --c-taxi-yellow-light: #FFD740;
    --c-taxi-black: #111010;
    --c-taxi-dark: #1a1818;
    
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 15px 50px rgba(0, 0, 0, 0.08);
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--c-black-soft);
    background-color: var(--c-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container { width: 90%; max-width: 1140px; margin: 0 auto; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-muted { color: var(--c-grey-muted); }
.bg-light { background-color: var(--c-grey-light); }
.bg-dark { background-color: var(--c-black-soft); color: var(--c-white); }

h1, h2, h3 { font-weight: 700; line-height: 1.2; color: var(--c-black-pure); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 1.2rem; color: var(--c-white); letter-spacing: -1px; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 3rem; }
.bg-dark .section-title { color: var(--c-white); }
.badge { display: inline-block; background-color: var(--c-red-main); color: var(--c-white); padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; }

/* Botones */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.85rem 1.8rem; font-size: 1rem; font-weight: 600;
    border-radius: var(--radius-md); text-decoration: none;
    transition: var(--transition); border: 2px solid transparent; cursor: pointer;
}
.btn i { margin-right: 8px; font-size: 1.2rem; }
.btn--primary { background-color: var(--c-red-main); color: var(--c-white); }
.btn--primary:hover { background-color: var(--c-red-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(227, 19, 20, 0.2); }
.btn--outline { border-color: var(--c-white); color: var(--c-white); padding: 0.6rem 1.2rem; font-size: 0.9rem;}
.btn--outline:hover { background-color: var(--c-white); color: var(--c-black-soft); }

/* =========================================
   HERO & CAROUSEL
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh; 
    display: flex; 
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(43, 41, 40, 0.85) 100%), url('../assets/fondo-hero.jpg') center/cover no-repeat;
    padding-top: 5rem;
    overflow: hidden;
}
.hero__carousel {
    width: 100%;
    position: relative;
}
.hero--taxi {
    position: relative;
    min-height: 100vh; 
    display: flex; 
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(43, 41, 40, 0.85) 100%), url('../assets/fondo-hero-taxi.jpg') center/cover no-repeat;
    padding-top: 5rem;
    overflow: hidden;
}
.hero--taxi .badge { background-color: var(--c-white); color: var(--c-red-main); }
@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.carousel__slide { display: none; }
.carousel__slide.active {
    display: block; 
    animation: fadeSlideIn 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
.hero__content { max-width: 700px; text-align: left; }
.hero__content .subtitle { font-size: 1.15rem; font-weight: 300; color: rgba(255,255,255,0.85); margin-bottom: 2.5rem; }
.hero__buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.carousel__controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.carousel__indicators { display: flex; gap: 12px; }
.carousel__indicators .dot {
    width: 12px; height: 12px; border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3); border: 2px solid transparent;
    cursor: pointer; transition: var(--transition); padding: 0;
}
.carousel__indicators .dot.active { background-color: var(--c-red-main); transform: scale(1.3); }
.carousel__indicators .dot:hover { background-color: rgba(255, 255, 255, 0.7); }

.features { padding: 6rem 0; }
.grid-3 { 
    display: grid; 
    gap: 1.5rem; 
    grid-template-columns: 1fr; 
}

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

@media (min-width: 480px) {
    .grid-3 { gap: 1.8rem; }
    .grid-4 { gap: 1.8rem; }
}

@media (min-width: 768px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (min-width: 1050px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.grid-2-centered {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .grid-2-centered { 
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}
.card {
    background: var(--c-white); padding: 1.5rem 1.2rem; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft); border: 1px solid rgba(0,0,0,0.03); 
    transition: var(--transition); position: relative; overflow: hidden;   
}

@media (min-width: 480px) {
    .card { padding: 2rem 1.5rem; }
}

@media (min-width: 768px) {
    .card { padding: 3rem 2rem; }
}
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.card::after {
    content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px;
    background-color: var(--c-red-main); transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.card:hover::after { transform: scaleX(1); }
@keyframes floatIcon {
    0%   { transform: translateY(0px); box-shadow: 0 4px 10px rgba(0,0,0,0.02); }
    50%  { transform: translateY(-6px); box-shadow: 0 12px 20px rgba(204,0,0,0.08); }
    100% { transform: translateY(0px); box-shadow: 0 4px 10px rgba(0,0,0,0.02); }
}
.icon-wrapper {
    width: 50px; height: 50px; background: var(--c-white); border: 1px solid rgba(0,0,0,0.05);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.2rem; transition: var(--transition);
    animation: floatIcon 3s ease-in-out infinite;
}

@media (min-width: 768px) {
    .icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
}
.grid-3 .card:nth-child(1) .icon-wrapper { animation-delay: 0s; }
.grid-3 .card:nth-child(2) .icon-wrapper { animation-delay: 1s; }
.grid-3 .card:nth-child(3) .icon-wrapper { animation-delay: 2s; }
.icon-wrapper i { 
    font-size: clamp(1.2rem, 3vw, 1.8rem); 
    color: var(--c-red-main); 
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); 
}
.card:hover .icon-wrapper i { transform: scale(1.25); }
.card h3 { 
    font-size: clamp(1rem, 4vw, 1.3rem); 
    margin-bottom: 0.8rem; 
    color: var(--c-black-pure); 
    line-height: 1.3;
}
.card p { 
    color: var(--c-grey-muted); 
    font-size: clamp(0.85rem, 2.5vw, 0.95rem); 
    font-weight: 400;
    line-height: 1.6;
}

.coverage { padding: 6rem 0; }
.map-wrapper {
    width: 100%; height: 450px; border-radius: var(--radius-lg); box-shadow: var(--shadow-hover);
    border: 1px solid rgba(0,0,0,0.05); z-index: 1; overflow: hidden;
}
.leaflet-popup-content-wrapper { border-radius: var(--radius-md); box-shadow: var(--shadow-soft); }
.leaflet-popup-content { font-family: 'Montserrat', sans-serif; font-weight: 600; color: var(--c-black-pure); text-align: center; }

.contact { padding: 6rem 0; }
.split-layout { display: flex; flex-direction: column; gap: 4rem; align-items: center; }

.contact__description { color: rgba(255, 255, 255, 0.8); margin-bottom: 2rem; }
.feature-list { list-style: none; margin-top: 2rem; }
.feature-list li { margin-bottom: 1rem; font-weight: 600; display: flex; align-items: center; color: var(--c-white); }
.feature-list i { margin-right: 12px; color: var(--c-red-main); }

.coverage__subtitle { max-width: 600px; margin: 0 auto 3rem; }

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

.contact__form-wrapper { width: 100%; max-width: 500px; background: var(--c-white); padding: 2.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-hover); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-size: 0.85rem; font-weight: 600; color: var(--c-black-pure); }
.form-control {
    width: 100%; padding: 0.8rem 1rem; border: 1px solid #ddd; border-radius: var(--radius-md); font-family: inherit;
    font-size: 1rem; background: var(--c-grey-light); transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--c-red-main); background: var(--c-white); }
textarea.form-control { resize: vertical; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }
.g-recaptcha { margin: 0.5rem 0 1.5rem; transform: scale(0.95); transform-origin: left top; }

/* Modal de avisos */
.notice-overlay {
    position: fixed; inset: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: center; padding: 1.5rem;
    background: rgba(20, 18, 18, 0.55); backdrop-filter: blur(4px);
    opacity: 0; visibility: hidden; transition: opacity 0.25s ease, visibility 0.25s ease;
}
.notice-overlay.is-open { opacity: 1; visibility: visible; }
.notice-card {
    background: var(--c-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-hover);
    width: 100%; max-width: 420px; padding: 2.75rem 2rem; text-align: center;
    transform: translateY(12px) scale(0.97); transition: transform 0.28s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.notice-overlay.is-open .notice-card { transform: translateY(0) scale(1); }
.notice-icon {
    width: 66px; height: 66px; border-radius: 50%; margin: 0 auto 1.4rem;
    display: flex; align-items: center; justify-content: center; font-size: 1.9rem;
}
.notice-icon--success { background: rgba(39, 174, 96, 0.12); color: #27ae60; }
.notice-icon--error { background: rgba(204, 0, 0, 0.10); color: var(--c-red-main); }
.notice-title { font-size: 1.3rem; margin-bottom: 0.6rem; color: var(--c-black-pure); }
.notice-message { color: var(--c-grey-muted); font-size: 0.98rem; line-height: 1.6; margin-bottom: 1.9rem; }
.notice-btn {
    border: none; cursor: pointer; font-family: inherit; font-weight: 600; font-size: 1rem;
    background: var(--c-red-main); color: var(--c-white); padding: 0.8rem 2.4rem; border-radius: var(--radius-md);
    transition: var(--transition);
}
.notice-btn:hover { background: var(--c-red-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(227, 19, 20, 0.2); }

@media (min-width: 768px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-2-centered { grid-template-columns: repeat(2, 1fr); }
    .split-layout { flex-direction: row; justify-content: space-between; align-items: stretch; }
    .contact__text { flex: 1; padding-right: 3rem; }
    .contact__form-wrapper { flex: 1; }
    .form-row { display: flex; gap: 1rem; }
}

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ========================================= 
   SPLIT HUB - PÁGINA PRINCIPAL (INDEX.HTML)
   ========================================= */

.split-hub {
    margin: 0;
    overflow: hidden;
    background-color: #1a0000;
    min-height: 100vh;
}

.hub-logo-overlay {
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5)) brightness(0) invert(1);
    z-index: 30;
    pointer-events: none;
}


.split-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #7a0000;
}

/* Paneles Base */
.split-side {
    position: relative;
    flex: 1;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    transition: var(--transition);
    width: 100%;
}

.split-side::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.split-side.left-side {
    z-index: 2;
    clip-path: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.split-side.left-side::before {
    background-image: 
        linear-gradient(150deg, rgba(200, 0, 0, 0.72) 0%, rgba(90, 0, 0, 0.60) 100%),
        url('../assets/Fullmar-60.jpg');
}

.split-side.right-side {
    z-index: 1;
    padding-top: 0;
    clip-path: none;
    margin-left: 0;
    padding-left: 0;
}

.split-side.right-side::before {
    background-image: 
        linear-gradient(150deg, rgba(80, 55, 0, 0.65) 0%, rgba(200, 140, 0, 0.62) 100%),
        url('../assets/Fullmar-49.jpg');
}

.split-side:hover::before { 
    transform: scale(1.05); 
}

.split-side .content {
    position: relative;
    max-width: 460px;
    padding: 1.5rem 1rem;
    color: var(--c-white);
    text-align: center;
    z-index: 5;
}

.split-side .content h2 {
    color: var(--c-white);
    font-size: clamp(1.3rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.55), 0 1px 2px rgba(0,0,0,0.4);
}

.split-side .content p {
    color: var(--c-white);
    font-weight: 500;
    font-size: clamp(0.8rem, 2.5vw, 0.95rem);
    line-height: 1.5;
    margin-bottom: 1.2rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.65), 0 2px 10px rgba(0,0,0,0.4);
}

.btn-outline,
.btn-red,
.btn-yellow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-outline {
    border-color: rgba(255,255,255,0.4);
    color: var(--c-white);
    background-color: transparent;
}
.btn-outline:hover {
    background-color: var(--c-white);
    color: var(--c-black-pure);
    border-color: var(--c-white);
    transform: translateY(-2px);
}

.btn-red {
    background-color: var(--c-red-light);
    color: var(--c-white);
}
.btn-red:hover {
    background-color: var(--c-red-main);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(227,19,20,0.3);
}

.btn-yellow {
    background-color: var(--c-taxi-yellow);
    color: var(--c-taxi-black);
}
.btn-yellow:hover {
    background-color: var(--c-taxi-yellow-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,194,0,0.35);
}




@media (min-width: 768px) {
    .split-container { 
        flex-direction: row;
        height: 100vh;
        overflow: hidden;
    }

    .split-side {
        min-height: auto;
        height: 100vh;
    }

    .split-side.left-side {
        flex: 1;
        width: 50%;
        clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
        margin-bottom: -10vh;
        padding-bottom: 10vh;
        z-index: 1;
    }

    .split-side.right-side {
        flex: 1;
        width: 50%;
        z-index: 2;
        clip-path: polygon(22% 0, 100% 0, 100% 100%, 0% 100%);
        margin-left: -14%; 
        padding-left: 14%;
    }

    .split-side:hover::before { 
        transform: scale(1.06); 
    }

    .split-side .content {
        max-width: 460px;
        padding: 2rem;
    }

    .split-side .content h2 {
        font-size: clamp(2rem, 4.5vw, 3rem);
        margin-bottom: 1.2rem;
    }

    .split-side .content p {
        font-size: 0.95rem;
        margin-bottom: 2.2rem;
    }

    .split-side.left-side .content {
        text-align: left;
        margin-left: 14%;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .split-side.right-side .content {
        text-align: right;
        margin-right: 14%;
        margin-left: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .hub-logo-overlay {
        top: 2.5rem;
        left: 5%;
        transform: none;
        width: 140px;
    }

    .split-hub .lang-switcher {
        top: 3.5rem;
        right: 5rem;
        position: absolute;
        z-index: 30;
    }

    .btn-outline,
    .btn-red,
    .btn-yellow {
        padding: 0.95rem 2.4rem;
        font-size: 0.85rem;
    }
}

/* Móviles */
@media (max-width: 767px) {
    .split-container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }

    .split-side {
        width: 100%;
        min-height: 50vh;
        clip-path: none !important;
        margin: 0 !important;
        padding: 2rem 0 !important;
    }

    .split-side .content {
        text-align: center;
        max-width: 100%;
        padding: 2rem 1rem;
        margin: 0 !important;
        align-items: center !important;
    }

    .split-side.left-side .content,
    .split-side.right-side .content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hub-logo-overlay {
        top: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
    }

    .split-hub .lang-switcher {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        z-index: 30;
    }
}


.taxi-theme .btn--primary {
    background-color: var(--c-taxi-yellow);
    color: var(--c-taxi-black);
    border-color: var(--c-taxi-yellow);
}
.taxi-theme .btn--primary:hover {
    background-color: var(--c-taxi-yellow-light);
    box-shadow: 0 8px 20px rgba(245, 194, 0, 0.35);
}

.taxi-theme .badge {
    background-color: var(--c-taxi-yellow);
    color: var(--c-taxi-black);
}

.taxi-theme .hero--taxi .badge {
    background-color: var(--c-taxi-yellow);
    color: var(--c-taxi-black);
}

.taxi-theme .carousel__indicators .dot.active {
    background-color: var(--c-taxi-yellow);
}

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 58px;
    height: 58px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.9rem;
    text-decoration: none;
    z-index: 500;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

@keyframes wppPulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70%  { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* =========================================
   SECCIÓN DISTRIBUIDORES
   ========================================= */
.distributors {
    padding: 5rem 0;
    background-color: #f8f8f8;
}

.distributors .grid-3 {
    margin-top: 3rem;
}

.distributor-location {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.distributor-contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.phone-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #25D366, #20BA5A);
    color: white;
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.phone-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    background: linear-gradient(135deg, #20BA5A, #1aa855);
}

.phone-button:active {
    transform: translateY(-1px);
}

.phone-button i {
    font-size: 1.3rem;
}

.phone-number {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #666;
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

    .phone-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .phone-button i {
        font-size: 1.1rem;
    }
}

.whatsapp-float {
    animation: wppPulse 2.5s ease-out infinite;
}

.whatsapp-float:hover {
    animation: none;
}



.cta-strip {
    padding: 3.5rem 0;
    background-color: var(--c-grey-light);
}

.cta-strip.bg-dark {
    background-color: var(--c-black-soft);
}

.cta-strip__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.cta-strip__label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-grey-muted);
}

.bg-dark .cta-strip__label {
    color: rgba(255, 255, 255, 0.75);
}

.cta-strip__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn--whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    background-color: #25D366;
    color: var(--c-white);
}

.btn--whatsapp:hover {
    background-color: #1ebe5c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp i {
    font-size: 1.1rem;
}

.btn--outline-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
    border: 2px solid var(--c-black-soft);
    color: var(--c-black-soft);
}

.btn--outline-dark:hover {
    background-color: var(--c-black-soft);
    color: var(--c-white);
    transform: translateY(-2px);
}



.card-features {
  text-align: left;
  margin-top: 1.5rem;
  padding: 0;
}

/* Título de características */
.card-features-title {
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  font-weight: 600;
  color: #333;
  margin-bottom: 0.8rem;
  line-height: 1.4;
  display: block;
}


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

.features-list li {
  margin-bottom: 0.7rem;
  font-weight: 400;
  color: #333;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  line-height: 1.5;
  text-align: left;
  padding-left: 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .features-list li {
    padding-left: 1.8rem;
    font-size: 0.9rem;
  }
}


.features-list li::before {
  content: "•";
  color: var(--c-red-main);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.3rem;
  line-height: 1;
}


.features-list li span.feature-icon {
  margin-right: 0.6rem;
  font-size: clamp(0.8rem, 2vw, 1rem);
  flex-shrink: 0;
}


.card-tagline {
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  font-weight: 600;
  color: #333;
  margin-top: 0.8rem;
  line-height: 1.4;
  display: block;
}


@media (max-width: 768px) {
  /* Botones */
  .btn--primary, .btn--outline { padding: 0.6rem 1rem; font-size: 0.85rem; }
  .btn { min-width: auto; }
  
  /* Grids */
  .grid-3 { grid-template-columns: 1fr; gap: 1.5rem; }
  .grid-2 { grid-template-columns: 1fr; gap: 1.5rem; }
  .grid-2-centered { grid-template-columns: 1fr; gap: 1.5rem; }
  
  /* Cards */
  .card { padding: 1.5rem; }
  .card h3 { font-size: 1.1rem; }
  .card p { font-size: 0.9rem; }
  
  .card-features { margin-top: 1rem; }
  .features-list li {
    padding-left: 1.5rem;
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
  }
  .card-tagline { font-size: 0.8rem; margin-top: 0.6rem; }
  
  /* Section titles */
  .section-title { font-size: 1.6rem; margin-bottom: 2rem; }
  
  /* Forms */
  .form-group { margin-bottom: 1.2rem; }
  .form-control { padding: 0.7rem 1rem; font-size: 1rem; }
  .form-row { flex-direction: column; gap: 0; }
  .contact__text { padding-right: 0; padding-bottom: 1.5rem; }
  
  /* CTA Strip */
  .cta-strip__buttons { flex-direction: column; gap: 0.8rem; }
  .cta-strip__buttons .btn { width: 100%; }
  
  /* Split layout */
  .split-layout { flex-direction: column; gap: 2rem; }
  .contact__form-wrapper { width: 100%; }
}

@media (max-width: 480px) {
  /* Hero */
  .hero { min-height: 70vh; padding-top: 4rem; }
  h1 { font-size: 1.8rem; margin-bottom: 1rem; }
  
  /* Botones */
  .btn { 
    padding: 0.7rem 1.2rem; 
    font-size: 0.85rem; 
    width: 100%;
  }
  .btn i { margin-right: 0.4rem; font-size: 1rem; }
  
  /* Section titles */
  .section-title { font-size: 1.4rem; margin-bottom: 1.5rem; }
  
  /* Cards */
  .card { padding: 1.2rem; }
  .card h3 { font-size: 1rem; }
  .card p { font-size: 0.85rem; }
  .icon-wrapper i { font-size: 2rem; }
  
  /* Grid */
  .grid-3, .grid-2, .grid-2-centered { grid-template-columns: 1fr; gap: 1rem; }
  
  /* Forms */
  .form-group { margin-bottom: 1rem; }
  .form-control { 
    padding: 0.65rem 0.9rem; 
    font-size: 1rem;
    border-radius: 4px;
  }
  label { font-size: 0.85rem; }
  
  /* Timeline */
  .timeline-marker { width: 60px; height: 60px; font-size: 1.3rem; }
  .timeline-content h3 { font-size: 1rem; }
  .timeline-content p { font-size: 0.8rem; }
  
  /* Split layout */
  .split-layout { flex-direction: column; }
  .contact__text h2 { font-size: 1.4rem; }
  .contact__text p { font-size: 0.9rem; }
  
  /* CTA Strip */
  .cta-strip__label { font-size: 0.9rem; }
  .cta-strip__buttons { flex-direction: column; gap: 0.6rem; }
  .cta-strip__buttons .btn { width: 100%; }
  
  /* Mapa */
  .map-wrapper { height: 300px !important; }
  
  /* Lists */
  .feature-list li { padding: 0.5rem 0 0 1.8rem; font-size: 0.85rem; }
  .feature-list i { font-size: 0.9rem; }
  
  /* Badge */
  .badge { padding: 0.25rem 0.6rem; font-size: 0.7rem; }
}





@media (max-width: 880px) {
    .form-row { flex-direction: column; gap: 0; }
    .contact__text { padding-right: 1.5rem; }
}




.mockup-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .mockup-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.mockup-phone {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.mockup-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 30px 30px;
    z-index: 10;
}

.mockup-screen {
    position: relative;
    width: 100%;
    aspect-ratio: 9/19;
    border-radius: 35px;
    overflow: hidden;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.mockup-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.mockup-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.mockup-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

.mockup-content ul {
    list-style: none;
    padding: 0;
}

.mockup-content li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
}

.mockup-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--c-red-main);
    font-weight: bold;
    font-size: 1.2rem;
}

.mockup-container-rtl {
    direction: rtl;
}

.mockup-content-ltr {
    direction: ltr;
}

.section-subtitle {
    margin-bottom: 3rem;
}

.features-section-grid {
    margin-top: 3rem;
}

.form-group-flex {
    flex: 1;
}

.form-submit-full {
    width: 100%;
}

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

    .mockup-phone {
        max-width: 280px;
    }

    .mockup-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .mockup-phone {
        max-width: 250px;
    }

    .mockup-container {
        gap: 1.5rem;
    }

    .mockup-content h3 {
        font-size: 1.2rem;
    }

    .mockup-content p {
        font-size: 0.9rem;
    }
}/* =========================================
   PÁGINA ABOUT (/nosotros.html) — SOLO NUEVAS SECCIONES
   Agregar al FINAL de tu styles.css existente
   ========================================= */

/* ==========================================
   HERO ABOUT
   ========================================== */

.hero-about {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.08) 0%, rgba(43, 41, 40, 0.03) 100%), 
                linear-gradient(to bottom, var(--c-grey-light) 0%, var(--c-white) 100%);
    padding: 6rem 0;
    text-align: center;
    border-bottom: 2px solid rgba(204, 0, 0, 0.1);
}

.hero-about__content {
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-about__title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: var(--c-black-soft);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1.2px;
}

.hero-about__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--c-grey-muted);
    line-height: 1.8;
    font-weight: 500;
}

/* ==========================================
   TIMELINE SECTION
   ========================================== */

.timeline-container {
    position: relative;
    padding: 3rem 0;
    margin-top: 2rem;
}

/* Línea vertical central */
.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--c-red-main), var(--c-red-light), rgba(204, 0, 0, 0.3));
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 4rem;
    position: relative;
    width: 50%;
}


.timeline-item:nth-child(odd) {
    margin-left: 0;
    text-align: right;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    text-align: left;
    padding-left: 3rem;
}

.timeline-marker {
    position: absolute;
    top: 0;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--c-white);
    background: linear-gradient(135deg, var(--c-red-main) 0%, var(--c-red-light) 100%);
    width: 95px;
    height: 95px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--c-white);
    box-shadow: 0 8px 20px rgba(204, 0, 0, 0.25);
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: calc(-40px - 1.5rem);
    transform: translateX(50%);
}

.timeline-item:nth-child(even) .timeline-marker {
    left: calc(-40px - 1.5rem);
    transform: translateX(-50%);
}

.timeline-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
    color: var(--c-black-soft);
    font-weight: 700;
}

.timeline-content p {
    color: var(--c-grey-muted);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

/* ==========================================
   VALUES SECTION
   ========================================== */

.values-section {
    padding: 5rem 0;
    background: var(--c-white);
}

.value-card {
    background: linear-gradient(135deg, var(--c-grey-light) 0%, rgba(249, 249, 249, 0.5) 100%);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    box-shadow: var(--shadow-soft);
}

.value-card:hover {
    border-color: var(--c-red-main);
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    display: block;
    line-height: 1;
    animation: bounce 0.6s ease-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--c-black-soft);
    font-weight: 700;
}

.value-card p {
    color: var(--c-grey-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ==========================================
   MISSION & VISION SECTION
   ========================================== */

.mission-vision {
    padding: 5rem 0;
}

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

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mission-card, .vision-card {
    background: var(--c-white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--c-red-main);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.mv-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    display: block;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--c-black-soft);
    font-weight: 700;
}

.mission-card p, .vision-card p {
    color: var(--c-grey-muted);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

/* ==========================================
   CERTIFICATIONS SECTION (NUEVO)
   ========================================== */

.certifications-section {
    padding: 5rem 0;
    background: var(--c-white);
}

.section-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--c-grey-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.cert-card {
    background: linear-gradient(135deg, var(--c-white) 0%, rgba(249, 249, 249, 0.5) 100%);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--c-grey-light);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    animation: slideInCert 0.6s ease-out forwards;
}

@keyframes slideInCert {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cert-card:hover {
    border-color: var(--c-red-main);
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, var(--c-white) 0%, rgba(204, 0, 0, 0.02) 100%);
}

.cert-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.05) 0%, rgba(204, 0, 0, 0.02) 100%);
    border-radius: var(--radius-md);
    min-height: 100px;
}

.cert-img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.cert-placeholder {
    font-weight: 700;
    color: var(--c-red-main);
    font-size: 1.1rem;
    text-align: center;
    width: 100%;
}

.cert-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--c-black-soft);
    font-weight: 700;
}

.cert-year {
    font-size: 0.85rem;
    color: var(--c-red-main);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cert-desc {
    font-size: 0.9rem;
    color: var(--c-grey-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.cert-details {
    font-size: 0.85rem;
    color: var(--c-black-soft);
    padding-top: 1rem;
    border-top: 2px solid var(--c-grey-light);
    font-weight: 500;
}

.cert-details span {
    color: var(--c-red-main);
    font-weight: 700;
}

/* ==========================================
   COVERAGE SECTION
   ========================================== */

.coverage-section {
    padding: 5rem 0;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.country-card {
    background: var(--c-white);
    padding: 1.8rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 2px solid var(--c-grey-light);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.country-card:hover {
    border-color: var(--c-red-main);
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.country-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--c-black-soft);
    font-weight: 700;
}

.country-card p {
    font-size: 0.85rem;
    color: var(--c-grey-muted);
    line-height: 1.6;
    margin: 0;
}

.coverage-info {
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.05) 0%, rgba(204, 0, 0, 0.02) 100%);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--c-red-main);
    margin-top: 3rem;
}

.coverage-info h3 {
    font-size: 1.3rem;
    color: var(--c-black-soft);
    margin-bottom: 1rem;
    font-weight: 700;
}

.coverage-info p {
    color: var(--c-grey-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ==========================================
   SPECIALTIES SECTION
   ========================================== */

.specialties-section {
    padding: 5rem 0;
    background: var(--c-white);
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.specialty-card {
    background: linear-gradient(135deg, var(--c-grey-light) 0%, rgba(249, 249, 249, 0.5) 100%);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.specialty-card:hover {
    border-color: var(--c-red-main);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(204, 0, 0, 0.1);
}

.spec-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.specialty-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--c-black-soft);
    font-weight: 700;
}

.specialty-card p {
    font-size: 0.85rem;
    color: var(--c-grey-muted);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
   CONTACT INFO SECTION
   ========================================== */

.contact-info-section {
    padding: 5rem 0;
}

.info-card {
    background: var(--c-white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border-top: 4px solid var(--c-red-main);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

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

.info-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    display: block;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--c-black-soft);
    font-weight: 700;
}

.info-card p {
    color: var(--c-grey-muted);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

/* ==========================================
   CTA FINAL
   ========================================== */

.cta-final {
    padding: 4rem 0;
    background: var(--c-black-soft);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

/* ==========================================
   ANIMACIONES AUXILIARES
   ========================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .timeline-container::before {
        display: none;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 100%;
        text-align: left;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
    }

    .timeline-marker {
        position: static;
        margin: 0 auto 1.5rem auto;
        transform: none !important;
        right: auto !important;
        left: auto !important;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }

    .timeline-content {
        max-width: calc(100% - 20px);
        overflow-x: hidden;
    }

    .timeline-item {
        overflow-x: hidden;
    }

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

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

@media (max-width: 768px) {
    .hero-about {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-about__title {
        font-size: 1.8rem;
    }

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

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

    .country-card {
        padding: 1.2rem;
    }

    .country-card h4 {
        font-size: 1rem;
    }

    .country-card p {
        font-size: 0.75rem;
    }

    .cert-card {
        padding: 1.8rem;
    }

    .cert-year {
        font-size: 0.75rem;
    }

    .cert-desc {
        font-size: 0.85rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

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

@media (max-width: 480px) {
    .hero-about {
        padding: 2rem 0;
    }

    .hero-about__title {
        font-size: 1.4rem;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .timeline-content p {
        font-size: 0.85rem;
    }

    .value-card,
    .cert-card,
    .specialty-card,
    .country-card {
        padding: 1.3rem;
    }

    .value-icon {
        font-size: 2.5rem;
    }

    .spec-icon {
        font-size: 2rem;
    }

    .certifications-grid {
        gap: 1.5rem;
    }

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

    .cert-logo {
        height: 80px;
    }
}

/* =========================================
   NAVBAR TOP SPLIT (INDEX.HTML)
   Navbar horizontal top overlay para split layout
   ========================================= */

.navbar-top-split {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 25;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-top-split__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
}

.navbar-top-split__links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.navbar-top-split__links a {
    color: var(--c-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding-bottom: 4px;
}

.navbar-top-split__links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--c-red-main);
    transition: width 0.3s ease;
}

.navbar-top-split__links a:hover {
    color: var(--c-red-light);
}

.navbar-top-split__links a:hover::after {
    width: 100%;
}

.navbar-top-split__right {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-top-split {
        padding: 0.8rem 0;
    }

    .navbar-top-split__content {
        width: 95%;
        gap: 1rem;
    }

    .navbar-top-split__links {
        gap: 1.5rem;
    }

    .navbar-top-split__links a {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .navbar-top-split__content {
        flex-direction: column;
        gap: 0.8rem;
    }

    .navbar-top-split__links {
        width: 100%;
        justify-content: center;
        gap: 1rem;
    }

    .navbar-top-split__right {
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }

    .navbar-top-split__links a {
        font-size: 0.8rem;
    }
}