:root {

    --primary: #0056b3;

    --secondary: #ff6600;

    --accent: #28a745;

    --light: #f8f9fa;

    --dark: #343a40;

    --gray: #6c757d;

    --border-radius: 10px;

    --shadow: 0 8px 30px rgba(0, 0, 0, 0.12);

    --transition: all 0.3s ease;

}

* {

    font-family: 'Poppins', sans-serif;

    box-sizing: border-box;

}



body {

    font-family: 'Poppins', sans-serif;

    background: #fff;

    color: #333;

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

    text-rendering: optimizeLegibility;

    overflow-x: hidden;

}



/* ================= HEADER ================= */

.top-header {

    background: #fff;

    border-bottom: 1px solid #eaeaea;

    padding: 15px 0;

    position: relative;

    z-index: 1000;

}



.logo-container {

    display: flex;

    align-items: center;

    gap: 10px;

}



.logo-container img {

    height: 80px !important;

    transition: var(--transition);

}



.logo-container img:hover {

    transform: scale(1.05);

}



.main-nav {

    display: flex;

    align-items: center;

}



.main-nav a {

    margin: 0 15px;

    text-decoration: none;

    color: var(--dark);

    font-weight: 500;

    font-size: 0.95rem;

    position: relative;

    padding: 5px 0;

    transition: var(--transition);

}



.main-nav a:after {

    content: '';

    position: absolute;

    width: 0;

    height: 2px;

    background: var(--secondary);

    left: 0;

    bottom: 0;

    transition: var(--transition);

}



.main-nav a:hover {

    color: var(--secondary);

}



.main-nav a:hover:after {

    width: 100%;

}



.btn-login {

    background: linear-gradient(135deg, var(--secondary) 0%, #ff8533 100%);

    color: #fff;

    border: none;

    padding: 8px 20px;

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

    font-weight: 600;

    text-decoration: none;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    transition: var(--transition);

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

}



.btn-login:hover {

    transform: translateY(-2px);

    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3);

    color: #fff;

}



.btn-secondary {

    background: var(--primary);

    color: #fff;

    border: none;

    padding: 8px 20px;

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

    font-weight: 600;

    transition: var(--transition);

}



.btn-secondary:hover {

    background: #004494;

    color: #fff;

    transform: translateY(-2px);

}



.language-selector img {

    height: 24px;

    cursor: pointer;

    transition: var(--transition);

    border-radius: 3px;

    padding: 2px;

}



.language-selector img:hover {

    transform: scale(1.1);

    box-shadow: 0 0 0 2px var(--light);

}



/* ================= HERO SECTION ================= */

.hero-section {

    padding: 40px 0 60px;

    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);

    margin-top: 0;

    position: relative;

    overflow: hidden;

}



.hero-section:before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    height: 4px;

    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);

}



.hero-title {

    font-size: 2.8rem;

    font-weight: 800;

    color: var(--primary);

    margin-bottom: 20px;

    line-height: 1.2;

}



.hero-title span {

    color: var(--secondary);

}



.hero-image {

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

    overflow: hidden;

    box-shadow: var(--shadow);

    transition: var(--transition);

}



.hero-image:hover {

    transform: scale(1.02);

}



.hero-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



/* ================= FORMULARIO MEJORADO ================= */

.booking-form {

    background: #fff;

    padding: 30px;

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

    box-shadow: var(--shadow);

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

    position: relative;

    z-index: 10;

}



.booking-form:before {

    content: '';

    position: absolute;

    top: -1px;

    left: -1px;

    right: -1px;

    height: 5px;

    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);

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

}



.form-title {

    color: var(--primary);

    font-weight: 700;

    margin-bottom: 25px;

    font-size: 1.4rem;

    display: flex;

    align-items: center;

    gap: 10px;

}



.form-title i {

    color: var(--secondary);

}



.form-control-custom {

    border: 2px solid #e1e5eb;

    border-radius: 8px;

    padding: 12px 15px;

    font-size: 0.95rem;

    font-weight: 500;

    color: var(--dark);

    background: #fff;

    transition: var(--transition);

    height: 50px;

    margin-bottom: 15px;

}



.form-control-custom:focus {

    border-color: var(--secondary);

    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);

    outline: none;

}



.form-control-custom:hover {

    border-color: #b8c1cc;

}



.form-label {

    font-weight: 600;

    color: var(--dark);

    margin-bottom: 8px;

    display: block;

    font-size: 0.9rem;

}



.form-group {

    position: relative;

    margin-bottom: 20px;

}



.form-group i {

    position: absolute;

    right: 15px;

    top: 42px;

    color: var(--gray);

    z-index: 2;

}



.btn-search {

    background: linear-gradient(135deg, var(--secondary) 0%, #ff8533 100%);

    color: #fff;

    border: none;

    padding: 14px;

    border-radius: 8px;

    font-weight: 600;

    font-size: 1rem;

    width: 100%;

    transition: var(--transition);

    margin-top: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

}



.btn-search:hover {

    transform: translateY(-2px);

    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3);

}



/* ================= FOOTER ================= */

footer {

    background: var(--dark);

    color: #eee;

    padding: 60px 0 20px;

}



.footer-logo {

    margin-bottom: 20px;

}



.footer-logo img {

    height: 50px;

}



.footer-text {

    color: #aaa;

    font-size: 0.95rem;

    line-height: 1.6;

}



.footer-title {

    color: #fff;

    font-weight: 700;

    margin-bottom: 25px;

    font-size: 1.1rem;

    position: relative;

    padding-bottom: 10px;

}



.footer-title:after {

    content: '';

    position: absolute;

    bottom: 0;

    left: 0;

    width: 40px;

    height: 2px;

    background: var(--secondary);

}



.footer-links {

    list-style: none;

    padding: 0;

    margin: 0;

}



.footer-links li {

    margin-bottom: 12px;

}



.footer-links a {

    color: #ccc;

    text-decoration: none;

    transition: var(--transition);

    font-size: 0.95rem;

    display: flex;

    align-items: center;

    gap: 8px;

}



.footer-links a:hover {

    color: var(--secondary);

    transform: translateX(5px);

}



.footer-links a i {

    font-size: 0.8rem;

    color: var(--secondary);

}



.footer-service {

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

    padding: 20px;

    border-radius: 8px;

    margin-top: 20px;

}



.footer-service-title {

    color: var(--secondary);

    font-weight: 700;

    margin-bottom: 10px;

    font-size: 1rem;

}



.footer-service-text {

    color: #aaa;

    font-size: 0.9rem;

    line-height: 1.5;

}



.copyright {

    border-top: 1px solid #444;

    margin-top: 50px;

    padding-top: 20px;

    text-align: center;

    color: #999;

    font-size: 0.9rem;

}



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

@media (max-width: 768px) {

    .hero-title {

        font-size: 2rem;

    }



    .main-nav {

        flex-direction: column;

        align-items: flex-start;

        margin-top: 20px;

    }



    .main-nav a {

        margin: 5px 0;

    }



    .booking-form {

        padding: 20px;

    }

}



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

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}



.animate-fade {

    animation: fadeIn 0.6s ease-out;

}



/* ================= BOTÓN VERDE PROGRAMACIONES ================= */

.btn-green-programaciones {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);

    color: white;

    padding: 14px 30px;

    text-decoration: none;

    border-radius: 50px;

    font-weight: 600;

    font-size: 16px;

    border: none;

    cursor: pointer;

    transition: all 0.3s ease;

    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);

    gap: 10px;

}



.btn-green-programaciones:hover {

    background: linear-gradient(135deg, #218838 0%, #1ba87e 100%);

    transform: translateY(-3px);

    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);

    color: white;

    text-decoration: none;

}



.btn-green-programaciones:active {

    transform: translateY(-1px);

    box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);

}



.btn-green-programaciones i {

    font-size: 18px;

}



/* ================= WHATSAPP SUPPORT STANDALONE ================= */

.wa_support_standalone.wcs_fixed_right {

    position: fixed;

    right: 24px;

    bottom: 24px;

    z-index: 10001;

    font-family: 'Poppins', sans-serif;

}



.wcs_button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);

    color: #fff;

    cursor: pointer;

    border-radius: 34px;

    padding: 0;

    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.35);

    border: none;

    width: 72px;

    height: 72px;

    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    position: relative;

    overflow: hidden;

}



.wcs_button::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

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

    opacity: 0;

    transition: opacity 0.3s ease;

}



.wcs_button:hover {

    transform: translateY(-5px) scale(1.08);

    box-shadow: 0 18px 45px rgba(37, 211, 102, 0.45);

}



.wcs_button:hover::before {

    opacity: 1;

}



.wcs_button img {

    width: 34px;

    height: 34px;

    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.25));

}



/* Popup de WhatsApp */

.wcs_popup {

    display: none;

    position: fixed;

    right: 24px;

    bottom: 110px;

    width: 420px;

    background: #fff;

    color: #1a1a1a;

    border-radius: 24px;

    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);

    z-index: 10002;

    overflow: hidden;

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

    max-height: 580px;

    height: auto;

}



.wcs_popup.open {

    display: flex;

    flex-direction: column;

    animation: slideUpPopup 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

}



@keyframes slideUpPopup {

    from {

        opacity: 0;

        transform: translateY(30px) scale(0.95);

    }

    to {

        opacity: 1;

        transform: translateY(0) scale(1);

    }

}



.wcs_popup_close {

    position: absolute;

    right: 18px;

    top: 18px;

    font-size: 22px;

    cursor: pointer;

    color: #fff;

    opacity: 0.9;

    z-index: 1;

    width: 36px;

    height: 36px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

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

    transition: all 0.3s ease;

}



.wcs_popup_close:hover {

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

    transform: rotate(90deg);

}



.wcs_popup_header {

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 24px 28px;

    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);

    color: #fff;

    position: relative;

    flex-shrink: 0;

}



.wcs_popup_header::after {

    content: '';

    position: absolute;

    bottom: -8px;

    left: 28px;

    width: 45px;

    height: 4px;

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

    border-radius: 2px;

}



.wcs_popup_header img {

    width: 38px;

    height: 38px;

    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.25));

}



.wcs_popup_header_text {

    flex: 1;

}



.wcs_popup_header_title {

    font-weight: 800;

    font-size: 1.25rem;

    letter-spacing: -0.3px;

    margin: 0 0 6px 0;

}



.wcs_popup_header_description {

    font-size: 0.9rem;

    opacity: 0.95;

    margin: 0;

    font-weight: 400;

}



/* Lista de contactos */

.wcs_popup_person_container {

    flex: 1;

    max-height: 380px;

    overflow-y: auto;

    overflow-x: hidden;

    background: #f9f9f9;

    padding: 0;

    scrollbar-width: thin;

    scrollbar-color: #25D366 #f1f1f1;

}



.wcs_popup_person_container::-webkit-scrollbar {

    width: 8px;

}



.wcs_popup_person_container::-webkit-scrollbar-track {

    background: #f1f1f1;

    border-radius: 4px;

}



.wcs_popup_person_container::-webkit-scrollbar-thumb {

    background: linear-gradient(to bottom, #25D366, #128C7E);

    border-radius: 4px;

}



.wcs_popup_person_container::-webkit-scrollbar-thumb:hover {

    background: linear-gradient(to bottom, #128C7E, #075E54);

}



.wcs_popup_person {

    display: flex;

    gap: 16px;

    align-items: center;

    padding: 20px 28px;

    cursor: pointer;

    transition: all 0.3s ease;

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);

    background: #fff;

    position: relative;

    overflow: hidden;

    min-width: 0;

    flex-shrink: 0;

}



.wcs_popup_person::before {

    content: '';

    position: absolute;

    left: 0;

    top: 0;

    height: 100%;

    width: 5px;

    background: #25D366;

    opacity: 0;

    transition: opacity 0.3s ease;

}



.wcs_popup_person:hover {

    background: #f8f9fa;

}



.wcs_popup_person:hover::before {

    opacity: 1;

}



.wcs_popup_person:last-child {

    border-bottom: none;

}



.wcs_popup_person_img {

    position: relative;

    flex-shrink: 0;

}



.wcs_popup_person_img img {

    width: 56px;

    height: 56px;

    border-radius: 50%;

    object-fit: cover;

    display: block;

    border: 3px solid #25D366;

    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);

    transition: all 0.3s ease;

}



.wcs_popup_person:hover .wcs_popup_person_img img {

    border-width: 4px;

    box-shadow: 0 7px 20px rgba(37, 211, 102, 0.3);

}



.wcs_popup_person_content {

    flex: 1;

    min-width: 0;

    overflow: hidden;

}



.wcs_popup_person_name {

    font-weight: 700;

    font-size: 1.1rem;

    color: #1a1a1a;

    margin: 0 0 8px 0;

    letter-spacing: -0.2px;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;

}



.wcs_popup_person_description {

    font-size: 0.9rem;

    color: #666;

    margin: 0;

    line-height: 1.5;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;

}



.wcs_popup_person_status {

    font-size: 0.85rem;

    font-weight: 600;

    padding: 6px 12px;

    border-radius: 14px;

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

    color: #0aad00;

    display: inline-block;

    border: 2px solid rgba(10, 173, 0, 0.2);

}



.wcs_popup_person.is-offline {

    opacity: 0.85;

}



.wcs_popup_person.is-offline .wcs_popup_person_status {

    background: rgba(160, 174, 192, 0.12);

    color: #a0aec0;

    border-color: rgba(160, 174, 192, 0.2);

}



.wcs_popup_person.is-offline .wcs_popup_person_img img {

    border-color: #a0aec0;

    box-shadow: 0 5px 15px rgba(160, 174, 192, 0.15);

}



.wcs_popup_person.is-online .wcs_popup_person_img img {

    border-color: #25D366;

    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.25);

}



/* Input de búsqueda */

.wcs_popup_input {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 22px 28px;

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

    background: #fff;

    flex-shrink: 0;

}



.wcs_popup_input input {

    flex: 1;

    border: 2px solid #e2e8f0;

    border-radius: 14px;

    padding: 15px 20px;

    outline: none;

    font-size: 1rem;

    font-family: 'Poppins', sans-serif;

    transition: all 0.3s ease;

    background: #f8f9fa;

    color: #1a1a1a;

    height: 52px;

}



.wcs_popup_input input:focus {

    border-color: #25D366;

    background: #fff;

    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.15);

}



.wcs_popup_input .fa-paper-plane {

    font-size: 22px;

    color: #25D366;

    cursor: pointer;

    transition: all 0.3s ease;

    background: #f1f8ff;

    width: 52px;

    height: 52px;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 2px solid transparent;

}



.wcs_popup_input .fa-paper-plane:hover {

    background: #25D366;

    color: #fff;

    border-color: #25D366;

    transform: translateX(2px);

}



/* Responsive WhatsApp */

@media (max-width: 768px) {

    .wa_support_standalone.wcs_fixed_right {

        right: 20px;

        bottom: 20px;

    }



    .wcs_button {

        width: 64px;

        height: 64px;

    }



    .wcs_button img {

        width: 30px;

        height: 30px;

    }



    .wcs_popup {

        right: 20px;

        bottom: 100px;

        width: calc(100vw - 40px);

        max-height: 500px;

        border-radius: 20px;

    }

}



@media (max-width: 480px) {

    .wa_support_standalone.wcs_fixed_right {

        right: 16px;

        bottom: 16px;

    }



    .wcs_button {

        width: 60px;

        height: 60px;

    }



    .wcs_button img {

        width: 28px;

        height: 28px;

    }



    .wcs_popup {

        right: 16px;

        bottom: 90px;

        width: calc(100vw - 32px);

        max-height: 460px;

    }

}


/* ================= BOTONES FLOTANTES MEJORADOS ================= */
.video-help-button {
    position: fixed;
    right: 30px;
    top: 300px;
    transform: translateY(-50%);
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

/* Para PC - Botones alineados verticalmente */
@media (min-width: 769px) {
    .video-help-button {
        right: 30px;
        top: 300px;
        transform: translateY(-50%);
    }

    .btn-video-tutorial {
        width: 65px;
        height: 65px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        font-size: 1.4rem;
        box-shadow: var(--shadow);
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }

    .btn-video-tutorial::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.1);
        opacity: 0;
        transition: var(--transition);
    }

    .btn-video-tutorial:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    }

    .btn-video-tutorial:hover::after {
        opacity: 1;
    }

    /* Tooltips para PC */
    .btn-video-tutorial::before {
        content: attr(data-tooltip);
        position: absolute;
        right: 75px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.85);
        color: white;
        padding: 8px 15px;
        border-radius: 8px;
        font-size: 0.85rem;
        font-weight: 500;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        z-index: 999;
    }

    .btn-video-tutorial:hover::before {
        opacity: 1;
        right: 85px;
    }
}

/* Para móvil - Botones en columna bien espaciados */
@media (max-width: 768px) {
    .video-help-button {
        position: fixed;
        right: 15px;
        top: auto;
        bottom: 100px;
        /* Dejamos espacio para WhatsApp */
        transform: none;
        z-index: 998;
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .btn-video-tutorial {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        font-size: 1.2rem;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        transition: var(--transition);
        margin-bottom: 0;
    }

    .btn-video-tutorial:hover {
        transform: scale(1.15);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    }

    /* Asegurar que no se superpongan con WhatsApp */
    .wa_support_standalone.wcs_fixed_right {
        bottom: 90px !important;
    }
}

/* Colores específicos para los botones flotantes */
.btn-video-tutorial.btn-video {
    background: linear-gradient(135deg, #dc3545 0%, #ff5b5b 100%);
}

.btn-video-tutorial.btn-booking {
    background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
}

.btn-video-tutorial.btn-tracking {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
}

.btn-video-tutorial.btn-login {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}


/* ================= BOTÓN VERDE PROGRAMACIONES ================= */
.btn-green-programaciones {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.25);
    gap: 12px;
    width: 100%;
    margin-top: 20px;
    letter-spacing: 0.3px;
}

.btn-green-programaciones:hover {
    background: linear-gradient(135deg, #218838 0%, #1ba87e 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(40, 167, 69, 0.35);
    color: white;
    text-decoration: none;
}

.btn-green-programaciones:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-green-programaciones i {
    font-size: 1.2rem;
}


/* ================= FOOTER MEJORADO ================= */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #eee;
    padding: 70px 0 25px;
    position: relative;
    overflow: hidden;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 60px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-title {
    color: #fff;
    font-weight: 800;
    margin-bottom: 28px;
    font-size: 1.15rem;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: -0.3px;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), #ff8533);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(8px);
}

.footer-links a i {
    font-size: 0.85rem;
    color: var(--secondary);
    width: 20px;
}

.footer-service {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-top: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.footer-service-title {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.05rem;
    letter-spacing: -0.2px;
}

.footer-service-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ================= RESPONSIVE MEJORADO ================= */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .main-nav a {
        margin: 0 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 120px 0 80px;
    }

    .floating-plane {
        font-size: 180px;
        right: -40px;
    }

    .video-help-button {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .main-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
    }

    .main-nav a {
        margin: 0;
        padding: 10px 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    .main-nav a:after {
        display: none;
    }

    .booking-form {
        padding: 25px;
        margin-top: 30px;
    }

    .form-title {
        font-size: 1.3rem;
    }

    .video-help-button {
        right: 15px;
        bottom: 100px;
        gap: 10px;
    }

    .btn-video-tutorial {
        width: 52px;
        height: 52px;
        font-size: 1.1rem;
    }

    /* Ajustar posición de WhatsApp para móvil */
    .wa_support_standalone.wcs_fixed_right {
        bottom: 90px !important;
        right: 15px;
    }

    .wcs_button {
        width: 60px;
        height: 60px;
    }

    .wcs_popup {
        right: 15px;
        bottom: 130px;
        width: calc(100vw - 30px);
        max-height: 500px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .booking-form {
        padding: 20px;
    }

    .form-control-custom {
        padding: 12px 15px;
        font-size: 0.95rem;
        height: 50px;
    }

    .btn-search,
    .btn-green-programaciones {
        padding: 14px;
        font-size: 1rem;
    }

    .video-help-button {
        right: 12px;
        bottom: 90px;
    }

    .btn-video-tutorial {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .copyright {
        font-size: 0.85rem;
        margin-top: 40px;
        padding-top: 20px;
    }
}

@media (max-width: 380px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .video-help-button {
        right: 10px;
        bottom: 85px;
    }

    .btn-video-tutorial {
        width: 44px;
        height: 44px;
        font-size: 0.95rem;
    }
}

/* ================= ANIMACIONES MEJORADAS ================= */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatPlane {

    0%,
    100% {
        transform: translateY(0) rotate(5deg) translateX(0);
    }

    25% {
        transform: translateY(-25px) rotate(10deg) translateX(15px);
    }

    50% {
        transform: translateY(15px) rotate(0deg) translateX(-15px);
    }

    75% {
        transform: translateY(-10px) rotate(-5deg) translateX(10px);
    }
}

.animate-fade {
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slide {
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ================= ESTILOS AERONÁUTICOS ESPECÍFICOS ================= */
.floating-plane {
    position: absolute;
    right: 8%;
    top: 35%;
    font-size: 250px;
    color: rgba(255, 255, 255, 0.06);
    animation: floatPlane 20s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

/* Asegurar que el contenedor de botones no se superponga con otros elementos */
@media (max-width: 768px) {
    .video-help-button {
        z-index: 997;
        /* Debajo del popup de WhatsApp */
    }

    .wa_support_standalone.wcs_fixed_right {
        z-index: 998;
    }
}

/* Mejora para la legibilidad en móvil */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Asegurar que los botones flotantes no tapen contenido */
    .hero-section {
        padding-bottom: 80px;
    }
}

/* Mejora de performance para animaciones */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Scrollbar personalizado */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #004494, #e65c00);
}


/*** CELULAR **/

/* ESTILOS AERONÁUTICOS ESPECÍFICOS PARA ESTA PÁGINA */
.gradient-text {
    background: linear-gradient(90deg, #0056b3, #ff6600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section {
    padding: 140px 0 100px;
    /* Reducido para evitar espacio superior */
    background: linear-gradient(135deg, #0a1f3d 0%, #1a4b8c 100%);
    position: relative;
    overflow: hidden;
    margin-top: 0;
    /* Eliminado margen superior */
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ff6600;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* BOTÓN DE VIDEO FLOTANTE */
.video-help-button {
    position: fixed;
    right: 20px;
    top: 300px;
    /* Debajo del menú */
    z-index: 999;
}

.btn-video-tutorial {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.btn-video-tutorial:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
    color: white;
}

.btn-video-tutorial i {
    font-size: 1.2rem;
}

/* COLORES ESPECÍFICOS PARA LOS BOTONES FLOTANTES */
.btn-video-tutorial.btn-video {
    background: linear-gradient(135deg, #dc3545 0%, #ff5b5b 100%);
    /* Rojo Video */
}

.btn-video-tutorial.btn-booking {
    background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
    /* Azul Reserva */
}

.btn-video-tutorial.btn-tracking {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    /* Naranja Encomienda */
}

.btn-video-tutorial.btn-login {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    /* Verde Login */
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    }

    50% {
        box-shadow: 0 4px 20px rgba(255, 102, 0, 0.5);
    }

    100% {
        box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    }
}

/* CARDS AERONÁUTICAS */
.aviation-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.4s ease;
    height: 100%;
    margin-bottom: 20px;
}

.aviation-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.aviation-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
    transition: all 0.4s ease;
}

.aviation-card:hover .aviation-icon {
    background: linear-gradient(135deg, #0056b3, #ff6600);
    transform: scale(1.1) rotate(10deg);
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-align: center;
}

.service-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: center;
}

.btn-aviation {
    display: block;
    background: transparent;
    color: #ff6600;
    border: 2px solid #ff6600;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.btn-aviation:hover {
    background: #ff6600;
    color: white;
    transform: translateX(5px);
}

/* FORMULARIO ORIGINAL (ESTILIZADO PERO IGUAL) */
.booking-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.booking-form:before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 5px;
    background: linear-gradient(90deg, #0056b3 0%, #ff6600 100%);
    border-radius: 10px 10px 0 0;
}

.form-title {
    color: #0056b3;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-title i {
    color: #ff6600;
}

.form-control-custom {
    border: 2px solid #e1e5eb;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #343a40;
    background: #fff;
    transition: all 0.3s ease;
    height: 50px;
    margin-bottom: 15px;
}

.form-control-custom:focus {
    border-color: #ff6600;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: #343a40;
    margin-bottom: 8px;
    display: block;
    font-size: 0.9rem;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group i {
    position: absolute;
    right: 15px;
    top: 42px;
    color: #6c757d;
    z-index: 2;
}

.btn-search {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3);
}

.btn-green-programaciones {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    gap: 10px;
    width: 100%;
    margin-top: 15px;
}

.btn-green-programaciones:hover {
    background: linear-gradient(135deg, #218838 0%, #1ba87e 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    color: white;
    text-decoration: none;
}

.btn-green-programaciones i {
    font-size: 18px;
}

/* AVION FLOTANTE */
.floating-plane {
    position: absolute;
    right: 5%;
    top: 30%;
    font-size: 250px;
    color: rgba(255, 255, 255, 0.05);
    animation: floatPlane 15s ease-in-out infinite;
    z-index: 0;
}

@keyframes floatPlane {

    0%,
    100% {
        transform: translateY(0) rotate(5deg) translateX(0);
    }

    25% {
        transform: translateY(-20px) rotate(10deg) translateX(10px);
    }

    50% {
        transform: translateY(10px) rotate(0deg) translateX(-10px);
    }

    75% {
        transform: translateY(-10px) rotate(-5deg) translateX(5px);
    }
}

/* SECCIÓN DE PASOS BLANCA */
.steps-section {
    background: white;
    position: relative;
    padding: 80px 0;
}

.steps-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0056b3, #ff6600);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0a1f3d;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.step-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 86, 179, 0.1);
    border: 1px solid rgba(0, 86, 179, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 86, 179, 0.15);
}

.step-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0056b3, #ff6600);
}

.step-number {
    position: absolute;
    top: 25px;
    left: 85%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0056b3, #ff6600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.1), rgba(255, 102, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #0056b3;
    transition: all 0.4s ease;
}

.step-card:hover .step-icon {
    background: linear-gradient(135deg, #0056b3, #ff6600);
    color: white;
    transform: scale(1.1) rotate(10deg);
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0a1f3d;
    margin-bottom: 15px;
}

.step-text {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-badge {
    margin-top: 20px;
}

.step-badge .badge {
    font-size: 0.85rem;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
}

.step-payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    font-size: 2rem;
}

.step-payment-methods i {
    color: #0056b3;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.step-payment-methods i:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.btn-start-reservation {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0056b3 0%, #3a7bc8 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.3);
}

.btn-start-reservation:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 86, 179, 0.4);
    color: white;
}

.btn-start-reservation i {
    font-size: 1.2rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .floating-plane {
        font-size: 150px;
        right: -50px;
    }

    /* --- CORRECCIÓN DE BOTONES FLOTANTES --- */
    .video-help-button {
        position: fixed;
        top: 300px;
        /* Lo bajé un poco más (de 80 a 100) para seguridad */
        right: 15px;
        display: flex;
        /* Mágico: Permite ordenarlos */
        flex-direction: column;
        /* Uno debajo del otro */
        gap: 15px;
        /* Espacio de separación entre ellos */
        z-index: 999;
    }

    .btn-video-tutorial {
        width: 55px;
        /* Ancho fijo para que sea redondo */
        height: 55px;
        /* Alto fijo igual al ancho */
        border-radius: 50%;
        /* Círculo perfecto */
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        /* Quitamos relleno sobrante */
        font-size: 1.3rem;
        /* Icono de buen tamaño */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        /* Sombra para que destaque */
    }

    /* ---------------------------------------- */

    .section-title {
        font-size: 2rem;
    }

    .step-card {
        padding: 30px 20px;
    }
}

/* ================= RESPONSIVE MEJORADO ================= */
@media (max-width: 768px) {

    /* Ajuste del contenedor de los botones */
    .video-help-button {
        position: fixed;
        top: 300px;
        /* AUMENTADO: Bajamos más los botones para que no toquen el logo */
        right: 15px;
        /* Pegado a la derecha */
        display: flex;
        flex-direction: column;
        /* Columna vertical */
        gap: 15px;
        /* Espacio entre botones usando Flex */
        z-index: 990;
        background: transparent;
        /* Asegura que no tenga fondo el contenedor */
    }

    /* Estilo de cada botón individual en celular */
    .btn-video-tutorial {
        width: 45px;
        /* Tamaño controlado */
        height: 45px;
        border-radius: 50%;
        /* Círculo perfecto */
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        font-size: 1.2rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        margin-bottom: 15px;
        /* MARGEN FORZADO: Para asegurar que se separen */
    }

    /* Eliminar el margen del último botón para que quede limpio */
    .btn-video-tutorial:last-child {
        margin-bottom: 0;
    }

    /* Centrar el icono dentro del círculo */
    .btn-video-tutorial i {
        margin: 0;
        font-size: 1.2rem;
    }

    /* Ajustes generales del header para móvil */
    .hero-title {
        font-size: 2rem;
    }

    .main-nav {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 20px;
    }

    .floating-plane {
        display: none;
    }

    .steps-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .booking-form {
        padding: 20px;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn-start-reservation {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* ANIMACIONES */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade {
    animation: fadeIn 0.8s ease-out;
}


/* BOTONES FLOTANTES PARA CEL **/
/* ======================================================
   BARRA INFERIOR MÓVIL (PEGADA AL FINAL / ESTILO APP)
   ====================================================== */
.mobile-dock-menu {
    position: fixed;
    bottom: 0;
    /* <--- PEGADO AL PISO (0px) */
    left: 0;
    width: 100%;
    /* <--- Ocupa todo el ancho de la pantalla */
    transform: none;
    /* Quitamos el centrado anterior */
    z-index: 99999;

    /* DISEÑO AERONÁUTICO (GLASS) */
    background: rgba(10, 31, 61, 0.90);
    /* Azul oscuro intenso y semitransparente */
    backdrop-filter: blur(15px);
    /* Efecto borroso fuerte detrás */
    -webkit-backdrop-filter: blur(15px);

    /* Borde brillante solo arriba */
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: none;
    border-left: none;
    border-right: none;

    /* Forma */
    padding: 15px 0;
    /* Altura cómoda para el dedo */
    border-radius: 25px 25px 0 0;
    /* Redondo arriba, plano abajo */
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.5);
    /* Sombra hacia arriba */

    /* Alineación de botones */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /* Botones centrados en la barra */
    gap: 30px;
    /* Buena separación entre botones */
}

/* ======================================================
   BOTONES INDIVIDUALES (MANTENEMOS TU ESTILO)
   ====================================================== */
.btn-dock {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white !important;
    font-size: 1.4rem;

    /* Efecto botón flotante sobre la barra */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4), inset 0 2px 5px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: rgba(255, 255, 255, 0.1);
    /* Base por si falla el gradiente */
}

/* COLORES GRADIENTES (BRILLANTES) */
.btn-dock.btn-video {
    background: linear-gradient(135deg, #ff4d4d 0%, #cc0000 100%);
}

.btn-dock.btn-booking {
    background: linear-gradient(135deg, #007bff 0%, #004494 100%);
}

.btn-dock.btn-tracking {
    background: linear-gradient(135deg, #ff9933 0%, #cc5200 100%);
}

.btn-dock.btn-login {
    background: linear-gradient(135deg, #2ecc71 0%, #218838 100%);
}

/* ANIMACIÓN AL TOCAR */
.btn-dock:active {
    transform: scale(0.85);
    /* Efecto de presión */
}

/* ======================================================
    AJUSTE DE WIDGETS PARA QUE NO TAPEN EL MENÚ (MÓVIL)
    ====================================================== */
@media (max-width: 768px) {

    /* Subir el widget de GTranslate */
    .gtranslate_wrapper {
        bottom: 100px !important;
        /* Lo subimos para que flote sobre el menú */
    }

    /* Si tienes el botón de WhatsApp, también lo subimos al mismo nivel */
    /* .wa_support_standalone, .wcs_fixed_right {
        bottom: 100px !important;
    } */
}

/* ================= CORRECCIÓN ESPACIO HERO EN CELULARES ================= */
@media (max-width: 768px) {
    .hero-section {
        /* Reducimos drásticamente el relleno superior e inferior */
        /* Antes tenías entre 100px y 140px. 30px es aprox el 20%-25% */
        padding-top: 30px !important;
        padding-bottom: 30px !important;

        /* Aseguramos que no tenga márgenes extraños */
        margin-top: 0 !important;
        min-height: auto !important;
    }

    /* Si el formulario también tiene mucho espacio arriba */
    .booking-form {
        margin-top: 20px !important;
    }
}

/* ================= CENTRAR LOGO EN MÓVIL ================= */
@media (max-width: 768px) {

    /* Forzamos al contenedor flexible del header a centrar su contenido */
    .top-header .container>.d-flex {
        justify-content: center !important;
        width: 100%;
    }

    /* Aseguramos que el contenedor del logo ocupe el espacio necesario */
    .logo-container {
        justify-content: center;
        display: flex;
        width: 100%;
    }

    /* Opcional: Ajustar un poco el tamaño del logo en celular si se ve muy grande */
    .logo-container img {
        height: 60px !important;
        /* Reducido de 80px a 60px para móvil */
        max-width: 100%;
        object-fit: contain;
    }
}