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

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* ANIMACIONES */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(15px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideDownHeader {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInSection {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* HEADER */
.header {
    background: linear-gradient(135deg, #0A192F 0%, #1a3a52 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.logo-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text h1 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-text p {
    color: #C9A84C;
    font-size: 12px;
    letter-spacing: 2px;
}

/* MENÚ NAVEGACIÓN */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #C9A84C;
}

/* HERO */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.hero-content {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;

}


.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 100%;
    background-image: url('imagenes/avion hero.jpeg');
    background-size: cover;      /* CUBRE COMPLETAMENTE */
    background-position: center; /* CENTRADA */
    background-repeat: no-repeat;
    z-index: -1;                 /* DETRÁS DEL TEXTO */
}


.hero-text {
    position: relative;
    z-index: 1;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out;
}

.migration-tag {
    display: inline-block;
    color: #C9A84C;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    color: #0A192F;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.year-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.year-bullet {
    font-size: 28px;
    font-weight: 900;
    color: #0A192F;
}

.underline {
    width: 60px;
    height: 4px;
    background: #C9A84C;
    border-radius: 2px;
}

.hero-description {
    font-size: 18px;
    color: #5a7a8a;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 90%;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.button-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #C9A84C;
    color: white;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
    background: #b8922e;
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #C9A84C;
    border: 2px solid #C9A84C;
}

.btn-secondary:hover {
    background: #C9A84C;
    color: white;
}

/* ANIMACIÓN GENERAL AL DESLIZAR (reveal) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* VIDEO OBLIGATORIO */
.video-required {
    background: linear-gradient(135deg, #0A192F 0%, #1a3a52 100%);
    padding: 80px 20px;
}

.video-required-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title.light {
    color: #ffffff;
}

.video-description {
    font-size: 18px;
    color: #b9c9d6;
    line-height: 1.8;
    max-width: 90%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9 / 16;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
    background: #000;
}

.intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-controls {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
}

.video-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(10, 25, 47, 0.65);
    color: #C9A84C;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: background 0.3s ease, transform 0.2s ease;
}

.video-btn:hover {
    background: rgba(201, 168, 76, 0.9);
    color: #0A192F;
    transform: scale(1.08);
}

.video-btn i {
    font-size: 16px;
    line-height: 1;
}

/* NOSOTROS */
.about {
    background: white;
    padding: 10px 20px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    /* animación controlada por la clase .reveal */
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    color: #0A192F;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-underline {
    width: 80px;
    height: 4px;
    background: #C9A84C;
    margin-bottom: 30px;
    border-radius: 2px;
}

.about-heading {
    font-size: 22px;
    font-weight: 700;
    color: #0A192F;
    margin-bottom: 15px;
    text-align: justify;
}

.about-description {
    font-size: 19px;
    color: #5a7a8a;
    line-height: 1.8;
    text-align: justify;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(201, 168, 76, 0.2);
    object-fit: cover;
}


/* SERVICIOS */
.services {
    background: white;
    padding: 70px 20px;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-container .section-title {
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.service-card {
    background: #f5f7fa;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease, opacity 0.7s ease-out, transform 0.7s ease-out;
}

.service-card:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    object-fit: contain;
    display: block;
    transition: transform 0.2s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.08);
}

.service-text {
    font-size: 16px;
    color: #0A192F;
    font-weight: 600;
    line-height: 1.7;
    text-align: justify;
}

/* TÍTULO SERVICIO */

.texto-destacado {
    display: block;
    color: #C9A84C;
    font-size: 22px;
    text-align: center;
    letter-spacing: 0.3px;
}

/* RESEÑAS */
.reviews {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%);
    padding: 70px 20px;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
}

.review-card {
    flex: 1 1 300px;
    max-width: 360px;
}

.review-card {
    background: white;
    padding: 32px 28px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease, opacity 0.7s ease-out, transform 0.7s ease-out;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.review-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.review-image {
    width: 100%;
    height: 380px;
    border-radius: 15px;
    object-fit: cover;
    object-position: top;
    margin-bottom: 20px;
}

.review-text {
    font-size: 15px;
    color: #0A192F;
    font-weight: 600;
    line-height: 1.7;
    text-align: justify;
}

/* FORMULARIO */
.form-section {
    background: white;
    padding: 70px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.form-left {
    padding: 40px 20px;
}

.form-title {
    font-size: 16px;
    font-weight: 700;
    color: #C9A84C;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.form-subtitle {
    font-size: 48px;
    font-weight: 900;
    color: #0A192F;
    line-height: 1.2;
    margin-bottom: 0;
}

.visa-text {
    color: #C9A84C;
}

.form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0A192F;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #C9A84C;
    border-radius: 10px;
    background: #ffffff;
    color: #0A192F;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input[type="text"]::placeholder,
.form-group input[type="tel"]::placeholder,
.form-group input[type="email"]::placeholder {
    color: #a0a0a0;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="email"]:focus {
    outline: none;
    border-color: #b8922e;
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
    background: #f9fdff;
}

.radio-group {
    display: flex;
    gap: 30px;
    margin-top: 12px;
}

.radio-group input[type="radio"] {
    display: none;
}

.radio-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #0A192F;
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
}

.radio-label::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #C9A84C;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: white;
}

.radio-group input[type="radio"]:checked + .radio-label::before {
    background: #C9A84C;
    box-shadow: inset 0 0 0 4px white;
}

.radio-group input[type="radio"]:checked + .radio-label {
    color: #C9A84C;
}

/* MODAL PAGO */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideInUp 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #0A192F;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #C9A84C;
}

.modal-header {
    padding: 30px;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, #f9fdff 0%, #f0f7ff 100%);
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0A192F;
    margin: 0;
}

.modal-header.success {
    background: linear-gradient(135deg, #f0fff4 0%, #e8f5e9 100%);
    border-bottom-color: #C9A84C;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 40px 30px;
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.modal-text {
    font-size: 16px;
    color: #5a7a8a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.modal-text-small {
    font-size: 13px;
    color: #a0a0a0;
    margin-top: 15px;
}

.btn-payment-link {
    display: inline-block;
    background: #C9A84C;
    color: white;
    padding: 14px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-payment-link:hover {
    background: #b8922e;
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
}

.modal-footer {
    padding: 20px 30px 30px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.modal-footer .btn {
    flex: 1;
    justify-content: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-content,
    .form-container,
    .video-required-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .video-required {
        padding: 50px 20px;
    }

    .video-text {
        text-align: center;
    }

    .video-description {
        max-width: 100%;
        margin: 0 auto;
    }

    .video-wrapper {
        max-width: 260px;
    }

    .hero {
        min-height: auto; /* CORREGIDO AQUÍ */
    }

    .hero-content {
        padding: 40px 20px; /* CORREGIDO AQUÍ */
        min-height: auto; /* CORREGIDO AQUÍ */
        align-items: flex-start; /* CORREGIDO AQUÍ */
    }

    .form-subtitle {
        font-size: 24px;
    }

    .form-section {
        padding: 30px 15px;
        min-height: auto;
    }

    .radio-group {
        flex-direction: column;
    }

    .modal-content {
        padding: 25px;
    }

    .modal-header h2 {
        font-size: 20px;
    }

    .modal-footer {
        flex-direction: column;
    }

    .modal-footer .btn {
        width: 100%;
    }

    .btn-payment-link {
        padding: 12px 30px;
        font-size: 14px;
    }

    .hero-title {
        font-size: 48px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0A192F;
        flex-direction: column;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .nav-menu a {
        padding: 15px;
        display: block;
    }

    .section-title {
        font-size: 28px;
    }

    .button-group {
        flex-direction: column;
    }

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

    .social-links {
        gap: 30px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }

    .reviews-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .review-card {
        width: 100%;
        max-width: 360px;
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 20px;
    }

    .form-title {
        font-size: 13px;
    }

    .form-subtitle {
        font-size: 20px;
    }

    .modal-content {
        padding: 20px;
    }

    .form-group input[type="text"],
    .form-group input[type="tel"],
    .form-group input[type="email"] {
        padding: 10px 12px;
        font-size: 13px;
    }

    .hero-content {
        padding: 30px 15px; /* Ajuste complementario para móviles pequeños */
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 24px;
    }

    .logo-text h1 {
        font-size: 18px;
    }

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

    .hero-description {
        font-size: 16px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }
}

/* CONTACTO */
.contact-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%);
    padding: 70px 20px;
    text-align: center;
}

.contact-section .section-title {
    margin-bottom: 15px;
}

.contact-section .section-underline {
    margin: 15px auto 50px;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 16px 50px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn:hover {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* COMUNIDAD */
.community {
    background: white;
    padding: 70px 20px;
    text-align: center;
}

.community .section-title {
    margin-bottom: 15px;
}

.community .section-underline {
    margin: 15px auto 50px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease, opacity 0.7s ease-out, transform 0.7s ease-out;
}

.social-link:hover .social-icon {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    color: white;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.social-icon.facebook {
    background: #1877F2;
}

.social-icon.tiktok {
    background: #000000;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
}

.social-link p {
    font-size: 16px;
    font-weight: 700;
    color: #0A192F;
}

/* FOOTER */
footer {
    background: #2e2a35;
    color: #ffffff;
    padding: 60px 20px 0;
}

.footer-copyright {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 14px;
    color: #a0a0a0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding: 40px 0 40px 0;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand h2 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0;
}

.footer-brand p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.7;
}

.footer-nav, .footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-nav h3, .footer-contact h3 {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-nav ul, .footer-contact ul {
    list-style: none;
}

.footer-nav ul li, .footer-contact ul li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
}

.footer-nav ul li a, .footer-contact ul li a {
    text-decoration: none;
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover, .footer-contact ul li a:hover {
    color: #C9A84C;
}

.footer-image {
    width: 100%;
    max-width: 150px;
}

.footer-image img {
    width: 100%;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    object-fit: contain;
}

.footer-image img:hover {
    opacity: 1;
}

/* FOOTER RESPONSIVE */
@media (max-width: 768px) {
    footer {
        padding: 40px 20px 0;
        text-align: center; /* Centrado base para texto libre */
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 0;
        justify-items: center; /* Centra los contenedores dentro del grid */
    }

    /* FORZAR CENTRADO DE CONTENIDO INTERNO EN LOS BLOQUES */
    .footer-brand,
    .footer-nav,
    .footer-contact,
    .footer-image { /* <--- AGREGADO: Centrado explícito para el contenedor de la imagen */
        width: 100%;
        text-align: center;
        display: flex; /* <--- AGREGADO: Flexbox es lo más robusto para centrado total */
        flex-direction: column;
        align-items: center; /* <--- AGREGADO: Centrado horizontal de hijos */
    }

    .footer-nav ul,
    .footer-contact ul {
        padding-left: 0;
        display: flex; /* Centrado de los elementos de lista */
        flex-direction: column;
        align-items: center;
    }

    .footer-brand h2,
    .footer-nav h3,
    .footer-contact h3 {
        font-size: 14px;
        width: 100%; /* Asegura que el texto ocupe todo el ancho para centrarse */
    }

    .footer-nav ul li,
    .footer-contact ul li {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .footer-image img {
        max-width: 120px;
        margin: 0 auto; /* Margen auto como seguridad */
        display: block;  /* Bloque para que el margen funcione */
    }

    .footer-copyright {
        padding: 15px 0;
        font-size: 12px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 30px 15px 0;
    }

    .footer-columns {
        gap: 25px;
        padding: 20px 0;
    }

    .footer-brand h2 {
        font-size: 16px;
    }

    .footer-nav h3,
    .footer-contact h3 {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .footer-nav ul li,
    .footer-contact ul li {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .footer-image img {
        max-width: 100px;
    }

    .footer-copyright {
        padding: 12px 0;
        font-size: 11px;
    }
}

/* MODAL ÉXITO */
.success-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-modal-content {
    background-color: white;
    padding: 50px 40px;
    border-radius: 30px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
}

.success-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #C9A84C 0%, #b8922e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 64px;
    color: white;
    font-weight: bold;
    box-shadow: 0 10px 40px rgba(201, 168, 76, 0.3);
    animation: scaleIn 0.5s ease-out;
}

.success-modal-content h3 {
    font-size: 28px;
    color: #0A192F;
    margin-bottom: 15px;
    font-weight: 700;
}

.success-modal-content p {
    font-size: 16px;
    color: #5a7a8a;
    margin-bottom: 30px;
    line-height: 1.6;
}

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