/* ======== CONFIGURACIÓN GLOBAL Y VARIABLES ======== */
:root {
    --color-gold: #C7A14A;
    --color-white: #FFFFFF;
    --color-blue: #0C1A3A;
    --font-title: 'Montserrat', sans-serif;
    --font-text: 'Poppins', sans-serif;
    --transition-speed: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-text);
    background-color: var(--color-white);
    color: #333;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.container-full {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.container-slider {
    max-width: 1600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* ======== GESTIÓN DE IDIOMAS ======== */
.lang { display: none; }
body.lang-es .lang.es, body.lang-en .lang.en, body.lang-fr .lang.fr { display: inline; }
.btn .lang, .btn-pc-book .lang, .btn-pc-text .lang { display: none; }
body.lang-es .btn .lang.es, body.lang-es .btn-pc-book .lang.es, body.lang-es .btn-pc-text .lang.es,
body.lang-en .btn .lang.en, body.lang-en .btn-pc-book .lang.en, body.lang-en .btn-pc-text .lang.en,
body.lang-fr .btn .lang.fr, body.lang-fr .btn-pc-book .lang.fr, body.lang-fr .btn-pc-text .lang.fr { display: inline-block; }

/* ======== CLASE DE ACCESIBILIDAD ======== */
.visually-hidden {
    position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
    overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}

/* ======== SECCIÓN HERO ======== */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
}

.hero-video {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    min-width: 100%; min-height: 100%; width: auto; height: auto;
    z-index: -2; object-fit: cover;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;  /* ← AÑADE ESTO */
}

.hero-content {
    position: relative;
    z-index: 2;  /* ← AÑADE ESTO */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.hero-logo { max-height: 120px; margin-bottom: 2rem; }
.hero-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; width: 100%; }

/* ======== BOTONES ======== */
.btn {
    padding: 12px 30px; border-radius: 5px; font-weight: 500;
    transition: all var(--transition-speed); display: inline-block;
    border: 2px solid transparent; text-decoration: none; cursor: pointer;
    text-align: center;
}
.btn-primary { background-color: var(--color-gold); color: var(--color-white); border-color: var(--color-gold); }
.btn-primary:hover { background-color: transparent; color: var(--color-gold); }
.btn-secondary { background-color: transparent; color: var(--color-white); border-color: var(--color-white); }
.btn-secondary:hover { background-color: var(--color-white); color: var(--color-blue); }
.btn-tertiary { color: var(--color-blue); border-color: var(--color-gold); background: transparent; }
.btn-tertiary:hover { background: var(--color-gold); color: var(--color-white); }

/* ======== ESTILOS GENERALES DE SECCIÓN ======== */
.content-section { padding: 80px 0; }
.bg-light { background-color: #f8f9fa; }

.section-title {
    text-align: center; font-family: var(--font-title); font-size: 2.5rem;
    color: var(--color-blue); margin-bottom: 20px;
}
.section-subtitle {
    text-align: center; max-width: 800px;
    margin: 0 auto 50px auto; font-size: 1.1rem;
}

/* ======== SECCIÓN PARALLAX ======== */
.parallax-section {
    background-image: url('img/airport-transfers-barcelona-21.jpg');
    min-height: 400px;
    background-attachment: fixed; background-position: center; background-size: cover;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--color-white); position: relative;
}

.parallax-content {
    background-color: rgba(12, 26, 58, 0.7);
    padding: 40px; border-radius: 10px; z-index: 1;
}
.parallax-content h2 { font-family: var(--font-title); font-size: 2.5rem; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; margin-top: 30px; flex-wrap: wrap; }
.cta-buttons .btn { display: inline-flex; align-items: center; gap: 10px; }

/* ======== SLIDER DE SERVICIOS (SWIPER) ======== */
.services-slider .swiper-slide { height: auto; }
.service-card {
    display: flex; flex-direction: column; height: 100%;
    background: var(--color-white); border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    overflow: hidden;
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.service-card-image { width: 100%; height: 200px; overflow: hidden; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.service-card:hover .service-card-image img { transform: scale(1.05); }
.service-card-content { padding: 30px; text-align: center; display: flex; flex-direction: column; flex-grow: 1; }
.service-card h4 { font-family: var(--font-title); font-size: 1.3rem; margin-bottom: 15px; }
.service-card p { flex-grow: 1; }
.service-card .btn-tertiary { margin-top: 20px; }
.swiper-button-prev, .swiper-button-next { color: var(--color-gold); }

/* ======== SECCIÓN RESERVA (DISEÑO MODIFICADO) ======== */
.booking-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.booking-steps-column {
    position: relative;
    padding: 40px;
    background: var(--color-white);
    border: 1px solid var(--color-gold);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 45px;
}

.booking-steps-column::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 60px;
    height: calc(100% - 120px);
    width: 3px;
    background-color: var(--color-gold);
    border-radius: 5px;
}

.booking-layout-grid .process-step {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-bottom: 0;
    background: none;
    padding: 0;
    border: none;
    text-align: left;
}

.booking-layout-grid .process-step:last-child {
    margin-bottom: 0;
}
.booking-layout-grid .process-step .step-number {
    width: 60px;
    height: 60px;
    background-color: var(--color-gold);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-right: 25px;
    position: relative;
    left: -31.5px;
    border: 4px solid var(--color-white);
}
.booking-layout-grid .process-step .step-content h4 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-blue);
}
.booking-layout-grid .process-step .step-content p {
    color: #555;
}
.nomada-iframe-container {
    position: relative;
    width: 100%;
    height: auto;          /* antes 850px fijo: causaba el hueco. Ahora se ajusta al contenido */
    min-height: 0;         /* antes 600px: se elimina para que no reserve espacio de más */
    border: 1px solid var(--color-gold);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.nomada-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
@media (max-width: 992px) {
    .booking-layout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: flex-start;
    }
    .booking-steps-column {
        padding: 25px;
    }
    .booking-steps-column::before {
        display: none;
    }
    .booking-layout-grid .process-step {
        margin-bottom: 25px;
    }
    .booking-layout-grid .process-step:last-child {
        margin-bottom: 0;
    }
    .booking-layout-grid .process-step .step-number {
        position: static;
        left: auto;
        border: none;
    }
}

/* ======== SECCIÓN OPINIONES ======== */
#opiniones { background-color: var(--color-blue); }
#opiniones .section-title { color: var(--color-gold); }
#opiniones .section-subtitle { color: rgba(255, 255, 255, 0.8); }

/* ======== SECCIÓN FLOTA V3 - CON SLIDER MÓVIL ======== */
.fleet-section-v3 {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #ffffff 0%, #FAF8F5 100%);
    position: relative;
    overflow: hidden;
}

.fleet-section-v3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.fleet-bg-decoration {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199, 161, 74, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.fleet-bg-decoration.top-right {
    top: -200px;
    right: -200px;
}

.fleet-bg-decoration.bottom-left {
    bottom: -300px;
    left: -200px;
}

.fleet-container-v3 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.fleet-header-v3 {
    text-align: center;
    margin-bottom: 70px;
}

.fleet-badge-v3 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-blue) 0%, #162950 100%);
    color: var(--color-gold);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(12, 26, 58, 0.12);
}

.fleet-badge-v3 i {
    font-size: 1rem;
}

.fleet-title-v3 {
    font-family: var(--font-title);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--color-blue);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.fleet-title-v3 span {
    color: var(--color-gold);
    position: relative;
}

.fleet-subtitle-v3 {
    font-size: 1.1rem;
    color: #5a6a7a;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.7;
}

/* Grid Desktop */
.fleet-grid-v3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Swiper Móvil - Oculto en desktop */
.fleet-swiper-container {
    display: none;
}

/* Card de vehículo */
.fleet-card-v3 {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(12, 26, 58, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: fadeInUp 0.6s ease-out forwards;
}

.fleet-card-v3:nth-child(1) { animation-delay: 0.1s; }
.fleet-card-v3:nth-child(2) { animation-delay: 0.2s; }
.fleet-card-v3:nth-child(3) { animation-delay: 0.3s; }
.fleet-card-v3:nth-child(4) { animation-delay: 0.4s; }

.fleet-card-v3:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 60px rgba(12, 26, 58, 0.18);
}

/* Header de la card - SIN ICONO */
.fleet-card-header-v3 {
    background: linear-gradient(135deg, var(--color-blue) 0%, #162950 100%);
    padding: 24px 22px 20px;
    position: relative;
    overflow: hidden;
}

.fleet-card-header-v3::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(199, 161, 74, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.fleet-card-category-v3 {
    position: relative;
    z-index: 1;
}

.fleet-card-name-v3 {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
    line-height: 1.2;
}

.fleet-card-model-v3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 10px;
    font-style: italic;
}

.fleet-card-model-v3 i {
    color: var(--color-gold);
    font-size: 0.7rem;
}

.fleet-card-availability-v3 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: var(--color-gold);
    font-weight: 500;
    background: rgba(199, 161, 74, 0.15);
    padding: 5px 12px;
    border-radius: 20px;
}

.fleet-card-availability-v3 i {
    font-size: 0.45rem;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Imagen - MÁS GRANDE */
.fleet-card-image-v3 {
    height: 240px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, #e8ebef 0%, #d5dae0 100%);
}

.fleet-card-image-v3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, var(--color-white), transparent);
    pointer-events: none;
}

.fleet-card-image-v3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fleet-card-v3:hover .fleet-card-image-v3 img {
    transform: scale(1.08);
}

/* Contenido */
.fleet-card-content-v3 {
    padding: 24px 22px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Specs */
.fleet-specs-v3 {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
}

.fleet-spec-v3 {
    flex: 1;
    background: #f5f7f9;
    border-radius: 12px;
    padding: 14px 8px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fleet-card-v3:hover .fleet-spec-v3 {
    background: linear-gradient(135deg, var(--color-blue) 0%, #162950 100%);
}

.fleet-spec-icon-v3 {
    font-size: 1rem;
    color: var(--color-gold);
    margin-bottom: 5px;
    display: block;
}

.fleet-spec-value-v3 {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-blue);
    transition: all 0.4s ease;
    display: block;
}

.fleet-card-v3:hover .fleet-spec-value-v3 {
    color: var(--color-white);
}

.fleet-spec-label-v3 {
    font-size: 0.65rem;
    color: #8a96a3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
    transition: all 0.4s ease;
    display: block;
}

.fleet-card-v3:hover .fleet-spec-label-v3 {
    color: var(--color-gold);
}

/* Ideal para */
.fleet-ideal-v3 {
    flex-grow: 1;
    margin-bottom: 22px;
}

.fleet-ideal-title-v3 {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fleet-ideal-title-v3::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
}

.fleet-ideal-list-v3 {
    list-style: none;
}

.fleet-ideal-item-v3 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: #4b5563;
    margin-bottom: 8px;
    line-height: 1.45;
}

.fleet-ideal-item-v3:last-child {
    margin-bottom: 0;
}

.fleet-ideal-item-v3 i {
    color: var(--color-gold);
    font-size: 0.7rem;
    margin-top: 5px;
    flex-shrink: 0;
}

/* Botón CTA */
.fleet-cta-v3 {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--color-gold) 0%, #a8873d 100%);
    color: var(--color-white);
    font-family: var(--font-title);
    font-size: 0.92rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.fleet-cta-v3::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.4s ease;
}

.fleet-cta-v3:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(199, 161, 74, 0.35);
}

.fleet-cta-v3:hover::before {
    left: 100%;
}

.fleet-cta-v3 i {
    margin-left: 8px;
    transition: all 0.4s ease;
}

.fleet-cta-v3:hover i {
    transform: translateX(4px);
}

.fleet-cta-v3.secondary {
    background: transparent;
    color: var(--color-blue);
    border: 2px solid var(--color-blue);
}

.fleet-cta-v3.secondary:hover {
    background: var(--color-blue);
    color: var(--color-white);
    box-shadow: 0 10px 30px rgba(12, 26, 58, 0.2);
}

/* ======== SWIPER FLOTA MÓVIL ======== */
.fleet-swiper {
    padding-bottom: 50px !important;
}

.fleet-swiper .swiper-slide {
    height: auto;
}

.fleet-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--color-blue);
    opacity: 0.25;
    transition: all 0.3s ease;
}

.fleet-swiper .swiper-pagination-bullet-active {
    background: var(--color-gold);
    opacity: 1;
    width: 28px;
    border-radius: 5px;
}

/* ======== FLOTA V3 RESPONSIVE ======== */
@media (max-width: 1200px) {
    .fleet-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .fleet-section-v3 {
        padding: 70px 0 90px;
    }

    .fleet-header-v3 {
        margin-bottom: 50px;
    }

    /* Ocultar grid en móvil */
    .fleet-grid-v3 {
        display: none;
    }

    /* Mostrar Swiper en móvil */
    .fleet-swiper-container {
        display: block;
    }

    .fleet-container-v3 {
        padding: 0 20px;
    }

    .fleet-card-image-v3 {
        height: 220px;
    }

    .fleet-card-name-v3 {
        font-size: 1.3rem;
    }

    .fleet-subtitle-v3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .fleet-container-v3 {
        padding: 0 16px;
    }

    .fleet-card-image-v3 {
        height: 200px;
    }

    .fleet-badge-v3 {
        font-size: 0.75rem;
        padding: 8px 18px;
    }

    .fleet-card-header-v3 {
        padding: 20px 18px 16px;
    }

    .fleet-card-content-v3 {
        padding: 20px 18px 24px;
    }

    .fleet-spec-v3 {
        padding: 12px 6px;
    }
}

/* ======== SECCIÓN GARANTÍAS ======== */
.guarantees-section { background-color: var(--color-gold); padding: 30px 0; }
.guarantees-grid {
    display: grid; 
    grid-template-columns: repeat(2, 1fr);
    color: var(--color-blue); 
    text-align: center; 
    gap: 15px;
    align-items: start;
}

@media (min-width: 768px) {
    .guarantees-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .guarantees-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}
.guarantee-item i { font-size: 2rem; margin-bottom: 10px; display: block; }
.guarantee-item .lang { display: none; }
body.lang-es .guarantee-item .lang.es, body.lang-en .guarantee-item .lang.en, body.lang-fr .guarantee-item .lang.fr {
    display: block; font-weight: 500;
}

/* ======== SECCIÓN FAQ ======== */
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #ddd; }
.faq-question {
    width: 100%; background: none; border: none; text-align: left; padding: 20px;
    font-size: 1.2rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.faq-question i { transition: transform var(--transition-speed); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out; }
.faq-answer p { padding: 0 20px 20px; }

/* ======== SECCIÓN CONTACTO ======== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: flex-start; }
.contact-info p { font-size: 1.1rem; margin-bottom: 15px; display: flex; align-items: center; }
.contact-info i { color: var(--color-gold); margin-right: 15px; width: 20px; text-align: center; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 12px; margin-bottom: 15px; border-radius: 5px;
    border: 1px solid #ccc; font-family: var(--font-text);
}

.main-content-pushed { padding-top: 80px; }
.page-header-section {
    height: 60vh; min-height: 400px; position: relative; display: flex; align-items: center;
    justify-content: center; text-align: center; color: var(--color-white);
    background-size: cover; background-position: center;
}
.page-title { font-family: var(--font-title); font-size: 3rem; position: relative; z-index: 2; }
.full-width-intro { max-width: 900px; margin: 0 auto; text-align: center; }
.commitments-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px;
}
.commitment-item { text-align: center; }
.commitment-item i { font-size: 2.5rem; color: var(--color-gold); margin-bottom: 15px; }
.commitment-item h4 { font-family: var(--font-title); color: var(--color-blue); margin-bottom: 10px; }
.process-section {
    position: relative; display: flex; flex-direction: column; gap: 40px;
    max-width: 800px; margin: 40px auto 0 auto;
}
.process-step-detailed { display: flex; align-items: flex-start; gap: 20px; }
.process-step-detailed .step-number {
    flex-shrink: 0; width: 50px; height: 50px; background-color: var(--color-gold);
    color: var(--color-white); border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-family: var(--font-title); font-size: 1.8rem; font-weight: 600;
}
.process-step-detailed h4 { font-family: var(--font-title); color: var(--color-blue); font-size: 1.3rem; margin-bottom: 8px; }

@media (max-width: 1024px) {
    html { scroll-padding-top: 70px; }
    .main-content-pushed { padding-top: 70px; }
}

@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .section-subtitle { font-size: 1rem; }
    .content-section { padding: 60px 0; }
    .hero-section { height: 90vh; }
    .hero-logo { max-height: 80px; }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .parallax-section { background-attachment: scroll; }
    .parallax-content h2 { font-size: 1.8rem; }
    .page-title { font-size: 2.2rem; }
}

@media (max-width: 480px) {
    .container, .container-full, .container-slider { padding: 0 15px; }
    .hero-buttons .btn { width: 100%; margin: 5px 0; }
    .section-title { font-size: 1.8rem; }
    .fleet-card-content, .service-card-content { padding: 20px; }
}

.fleet-slider .swiper-slide .fleet-card-new {
    width: 100%;
    max-width: none; 
}

@media (max-width: 1024px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
}

.personalized-welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.welcome-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.welcome-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.05rem;
    line-height: 1.6;
}
.welcome-feature-item i {
    color: #C7A14A;
    font-size: 1.3rem;
    margin-top: 3px;
    flex-shrink: 0;
}
.welcome-image {
    position: relative;
    background: linear-gradient(135deg, #0C1A3A 0%, #162950 100%);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(12, 26, 58, 0.15);
}
.welcome-image img {
    border-radius: 0 !important;
}
.image-caption {
    text-align: center;
    margin-top: 20px;
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .personalized-welcome-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .welcome-image { order: 1; }
    .welcome-content { order: 0; }
    .welcome-content h2.section-title { text-align: center !important; }
}

@media (max-width: 480px) {
    .personalized-welcome-grid { gap: 30px; }
    .welcome-feature-item { font-size: 0.95rem; }
    .image-caption { font-size: 1rem; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll.is-visible {
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: var(--animation-delay, 0s);
}

img {
    content-visibility: auto;
}

@font-face {
    font-display: swap;
}

.hero-video {
    aspect-ratio: 16/9;
}

.service-card-image,
.fleet-card-image {
    aspect-ratio: 16/9;
}

/* ======== ESTILOS RGPD FORMULARIO DE CONTACTO ======== */
.rgpd-notice {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    font-size: 0.85rem;
    line-height: 1.6;
}

.rgpd-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.rgpd-text {
    color: #555;
    text-align: justify;
}

.rgpd-text strong {
    color: #0C1A3A;
}

.rgpd-text a {
    color: #C7A14A;
    text-decoration: underline;
}

.rgpd-text a:hover {
    color: #0C1A3A;
}

.rgpd-text u {
    text-decoration: underline;
    color: #C7A14A;
}

.rgpd-checkbox {
    margin: 15px 0;
    padding: 10px 0;
}

.rgpd-checkbox.required-checkbox {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
    line-height: 1.5;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 2px;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.checkbox-container:hover .checkmark {
    border-color: #C7A14A;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #C7A14A;
    border-color: #C7A14A;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: 0.95rem;
    color: #333;
}

.checkbox-text strong {
    font-weight: 600;
}

.checkbox-note {
    margin: 5px 0 0 35px;
    font-size: 0.8rem;
    font-style: italic;
}

.checkbox-note.required-note {
    color: #c00;
}

.checkbox-note.optional-note {
    color: #666;
}

.checkbox-container input:invalid ~ .checkmark {
    border-color: #c00;
}

@media (max-width: 768px) {
    .rgpd-notice {
        padding: 15px;
        font-size: 0.8rem;
    }
    
    .rgpd-title {
        font-size: 0.85rem;
    }
    
    .checkbox-text {
        font-size: 0.9rem;
    }
    
    .checkbox-note {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .rgpd-notice {
        padding: 12px;
        margin: 15px 0;
    }
    
    .rgpd-text {
        text-align: left;
    }
    
    .checkbox-container {
        padding-left: 30px;
    }
    
    .checkmark {
        height: 18px;
        width: 18px;
    }
    
    .checkbox-container .checkmark:after {
        left: 5px;
        top: 1px;
        width: 4px;
        height: 9px;
    }
    
    .checkbox-note {
        margin-left: 30px;
    }
}

.rgpd-notice,
.rgpd-checkbox {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rgpd-notice.visible,
.rgpd-checkbox.visible {
    display: block;
    opacity: 1;
}

