.banner-Contacto {
    width: 100%;
    margin-top: 124px; /* Compensa el navbar fixed */
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-position: left;
    background: var(--color-white);
}


/* Margen para navbar fixed */
.contact-section {
    padding-top: 10px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Hero Section para Contacto */
.contact-hero-section {
    background: #1F4CA6;
    color: white;
    padding: 100px 0 60px;
    margin-top: 90px; /* Compensa el navbar fixed */
    text-align: center;
}

.contact-hero-title {
    font-family: "Bungee Spice", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Estilos existentes mejorados */
:root {
    --primary-color: #e74c3c;
    --secondary-color: #2c3e50;
    --accent-color: #3498db;
    --light-bg: #f8f9fa;
    --dark-text: #2c3e50;
    --light-text: #7f8c8d;
    --border-radius: 10px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.contact-box {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid #e9ecef;
}

    .contact-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .contact-box h4.title {
        font-size: 1.8rem;
        margin-bottom: 25px;
        color: var(--secondary-color);
        position: relative;
        padding-bottom: 15px;
        font-family: "Shojumaru", system-ui;
    }

        .contact-box h4.title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: #D92534;
        }

.form-group {
    margin-bottom: 25px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--dark-text);
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #e9ecef;
        border-radius: 5px;
        font-size: 1rem;
        transition: var(--transition);
        background: #fff;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #D92534;
            box-shadow: 0 0 0 0.2rem rgba(217, 37, 52, 0.25);
            outline: none;
        }

    .form-group.last {
        margin-bottom: 20px;
    }

.custom-control {
    margin-bottom: 20px;
    color: #555;
}

.custom-control-input:checked ~ .custom-control-label::before {
    background-color: #D92534;
    border-color: #D92534;
}

.custom-button1 {
    background: linear-gradient(to right, #D92534, #c0392b);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    width: 100%;
    font-size: 1.1rem;
}

    .custom-button1:hover {
        background: linear-gradient(to right, #c0392b, #D92534);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(217, 37, 52, 0.3);
    }

/* Right Area */
.right-area {
    position: sticky;
    top: 120px;
}

.faq-block {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    border: 1px solid #e9ecef;
}

    .faq-block h4.title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: var(--secondary-color);
        font-family: "Shojumaru", system-ui;
    }

    .faq-block p {
        color: var(--light-text);
        margin-bottom: 20px;
    }

    .faq-block a {
        color: #D92534;
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        transition: var(--transition);
    }

        .faq-block a:hover {
            color: #c0392b;
            transform: translateX(5px);
        }

        .faq-block a i {
            margin-left: 8px;
            font-size: 0.8rem;
        }

.contact-info .single-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 25px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid #e9ecef;
}

    .contact-info .single-info:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .contact-info .single-info i {
        width: 40px;
        margin-right: 15px;
        flex-shrink: 0;
        color: #D92534;
    }

    .contact-info .single-info .content h4 {
        font-size: 1.1rem;
        margin-bottom: 5px;
        color: var(--secondary-color);
    }

    .contact-info .single-info .content p {
        color: var(--light-text);
        margin-bottom: 0;
    }

/* Responsive */
@media (max-width: 991px) {
    .right-area {
        margin-top: 50px;
        position: static;
    }

    .contact-hero-section {
        margin-top: 90px;
        padding: 80px 0 40px;
    }

    .contact-hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding-top: 100px;
    }

    .contact-hero-section {
        padding: 60px 0 30px;
        margin-top: 90px;
    }

    .contact-hero-title {
        font-size: 1.8rem;
    }

    .contact-box {
        padding: 25px 20px;
    }

    .faq-block,
    .contact-info .single-info {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding-top: 90px;
    }

    .contact-hero-section {
        margin-top: 90px;
        padding: 50px 0 25px;
    }

    .contact-hero-title {
        font-size: 1.5rem;
    }

    .contact-hero-subtitle {
        font-size: 1rem;
    }
}



/*boton Flotante*/
.flotante {
    position: fixed;
    bottom: 60px;
    right: 80px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}


.btn-flotante {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1e5ec9;
    color: white;
    border: none;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    cursor: pointer;
    transition: all .3s ease;
    animation: pulso 2.5s infinite;
}

    .btn-flotante i {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: all .3s ease;
    }

    .btn-flotante:hover {
        background: #d20a11;
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    }

        .btn-flotante:hover i {
            background: rgba(255,255,255,0.3);
            transform: rotate(10deg) scale(1.1);
        }

.flotante {
    position: fixed;
    bottom: 60px;
    right: 80px;
    z-index: 9999;
}

.ondas-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.onda {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 3px solid #1e5ec9;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: expand-ring 2s ease-out infinite;
    opacity: 0;
}

.onda-2 {
    animation-delay: 1s;
    border-color: #ff6b35;
}

@keyframes expand-ring {
    0% {
        width: 60px;
        height: 60px;
        opacity: 0.8;
    }

    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

.btn-flotante {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1e5ec9;
    color: white;
    border: none;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    cursor: pointer;
    transition: all .3s ease;
}


