
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}


body{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background-image: url(fondop2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
   
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.9); 
    z-index: -1;
}


.container{
    max-width: 1200px;
    margin: 0 auto;

}

.swiper-button-next::after{
    font-size: 25px;
}

.swiper-button-prev::after{
    font-size: 25px;
}

.swiper-button-next{
    color: rgb(56, 56, 61);
}

.swiper-button-prev{
    color: rgb(56, 56, 61);
}
.swiper-pagination-bullet{
    background: #d3d2d2;
    opacity: 2;
}

.swiper-pagination-bullet-active{
    background: rgb(56, 56, 61);
}

.menu{
   display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 20px;
    background: rgba(40, 40, 40, 0.8);   
    backdrop-filter: blur(20px);        
    border-radius: 0 0 10px 10px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;


}

.nav-menus{

    display: flex;
    align-items: center;
    width: 100%; 
    gap:10px;
   

}

.menu-1{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    margin-left: 10px;
    order: 2;
}

.menu-2{
    display: flex;
    align-items: center;
    order: 3;
    margin-right: auto;


}

.logo-1{
    width: 0px;
}

.logo-2{
    height: 140px;
    width: auto;
    max-height: 140px;
    order:1;
}

.sociales{

    display: flex;

}
.social-icon{
    margin: 0 10px;
    width: 40px;       
    height: 40px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social:hover{
    background-color: white;
      
}

.social-icon img{
     width: 28px;
    height: 28px;
    object-fit: contain;
}

.social-icon.facebook img{
    width: 28px;   
    height: 28px;
}

   

.menu .nav-menus ul li{
    position: relative;
    float: left;
}

.menu .nav-menus ul li a{
    color: white;
    font-size: 18px;
    padding: 20px;
    display: block;
    position: relative; 
    text-decoration: none;
}


.nav-menus a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #C9A227;
    transition: all 0.3s ease;
}


.nav-menus a:hover::after {
    left: 0;
    width: 100%;
}


#menu{
display: none;

}

.menu-icono{
    width: 25px;

}

.menu-label{
    cursor: pointer;
    display: none;
}
.menu-1 ul li a {
    color: #ffffff; 
    transition: color 0.3s ease;
}


.menu-1 ul li a.active {
    color: #C9A227; 
    font-weight: 600; 
}


.menu-1 ul li a:hover {
    color: #FFC107;
}



header {
    padding-top: 160px;
}

.swiper {
    margin-top: 40px;
}

.swiper-slide{
    margin-bottom: 50px;
    background-color: white;
    box-shadow: 0 30px 30px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    height: 420px;
    width: 295px;
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}
.swiper-slide img {
    transition: transform 0.4s ease;
}

.swiper-slide:hover img {
    transform: scale(1.05);
}


.header-content {
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.header-txt {
    max-width: 900px;
    text-align: center;
    margin-bottom: 0px;
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.header-txt h1 {
    margin-bottom: 30px;
    font-size: 2.5em;
    font-weight: 700;
    color: #0f172a;
}

.header-txt h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #f4b400;
    margin: 20px auto 0;
    border-radius: 4px;
}

.header-txt p {
    font-size: 1em;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    color: #475569;
    text-align: justify;
}
#nosotros {
    
    margin-top: -40px;
}

/* Modal de confirmación de envío */
#successModal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}
#successModal .modal-content {
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 8px;
    max-width: 90%;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
#successModal .modal-content p {
    margin: 0;
    font-size: 1rem;
    color: #333;
}
#successModal .close-btn {
    margin-top: 15px;
    padding: 8px 16px;
    background: #C9A227;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.9rem;
}
#successModal .close-btn:hover {
    background: #b4951d;
}

.sobre-nosotros {
    margin-top: 60px;
    width: 100%;
    max-width: 500px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;

    
    background: rgba(255, 255, 255, 0.12);

    padding: 40px 30px;
    border-radius: 20px;

    
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);

    
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.sobre-nosotros:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.28);
    background: rgba(255, 255, 255, 0.95);
}

.imagen-nosotros img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.contenido-nosotros ul li {
    margin-bottom: 25px;
}

.contenido-nosotros ul {
    list-style: none;
    padding: 0;
    margin: 0;
    
}


.contenido-nosotros li {
    display: flex;
    align-items: flex-start; 
    gap: 14px;
  
}


.contenido-nosotros li img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: -6px; 
}


.contenido-nosotros li strong {
    display: block;
    font-size: 1.1em;
    font-weight: 700;
    color: #0f172a;
    margin: 0;              
}


.contenido-nosotros li p {
    margin: 4px 0 0 0;
    font-size: 1em;
    color: #475569;
}

.main-menu {
    padding: 20px 20px 0;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-menu h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #0f172a;
}

.botones {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}


.mision-vision {
    margin-top: -120px;
}


.mision-vision {
    display: block;
}

.header-txt {
    max-width: 500px; 
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
       background: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0
}

.subtitulo {
    display: inline-block;
    text-align: center;
    color: #f4b400;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
}

.mision-vision-valores-container {
    max-width: 1400px;

    justify-content: center;
    align-items: stretch;
    margin-top: 50px;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.card-proposito {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    background: transparent;   
    padding: 55px 40px;
    border-radius: 22px;

    box-shadow: none;
    border: 1.5px solid transparent;

    position: relative;

    transition:
        background 0.35s ease,
        backdrop-filter 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease,
        border-color 0.35s ease;
    
}

.card-proposito:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
    border-color: #f4b400;
}
.card-proposito .icono {
    margin-bottom: 25px;
}

.card-proposito .icono img {
    width: 90px;
    height: 90px;
    background: #f4b400;
    padding: 18px;
    border-radius: 18px;
}
.card-proposito h3 {
    font-size: 26px;
    color: #0b1c2d;
    margin-bottom: 18px;
    transition: color 0.3s ease;
}

.card-proposito:hover h3 {
    color: #f4b400;
}
.card-proposito p,
.card-proposito li {
    color: #444;
    line-height: 1.7;
}

.card-proposito ul {
    padding-left: 20px;
    text-align: left;
}

.card-proposito ul li {
    margin-bottom: 8px;
}
.card-proposito::after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 40px;
    width: 40px;
    height: 3px;
    background: #f4b400;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-proposito:hover::after {
    opacity: 1;
}



.main-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 20px;
}

.botones {
    display: flex;
    justify-content: center;
    width: 100%;
}

#ubicacion {
  padding-top: 10px; 
}

.ubicacion-item {
    background: transparent;
    padding: 80px 40px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    transition: all 0.4s ease;
}

.ubicacion-item:hover {
    transform: translateY(-8px);
}



.ubicacion-image {
    width: 110px;
    height: 110px;
    background: #f4b400;
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0 15px 30px rgba(244,180,0,0.6);
    margin-bottom: 40px;
}



.ubicacion-item h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    position: relative;
}


.ubicacion-item h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #d88900;
    margin: 20px auto 0;
    border-radius: 4px;
}



.btn-1 {
    display: inline-block;
    margin-top: 50px;
    padding: 16px 40px;
    background: #f4b400;
    color: white;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.btn-1:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.arrow {
    display: inline-block;
    animation: moverFlecha 1s infinite alternate;
}

@keyframes moverFlecha {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(6px);
    }
}



.main-menu .form-container {
    margin-top: 120px !important;
}



.form-container {
    max-width: 900px;
    margin: 120px auto 80px;
    padding: 60px 50px;
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    text-align: left;
}


.form-container h1 {
    text-align: center;
    font-size: 48px;
    color: black;
    margin-bottom: 15px;
    position: relative;
}

.form-container h1::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #f4b400; 
    display: block;
    margin: 12px auto 0;
    border-radius: 3px;
}

.form-container h4 {
    text-align: center;
    font-size: 18px;
    color: #64748b;
    margin-bottom: 50px;
}


.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #0f172a;
}

.form-container input {
    width: 100%;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    font-size: 15px;
    transition: all 0.3s ease;
}


.form-container input:focus {
    border-color: #f4b400;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.15);
    outline: none;
}


.btn-3 {
    width: 100%;
    padding: 18px;
    border-radius: 18px;
    border: none;
    background: #f4b400;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-3:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}
.form-row {
    display: flex;
    gap: 20px;
    width: 100%;
     margin-bottom: 30px;
}

.form-row .form-group {
    flex: 1;
    margin: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.asesoria-section {
    padding: 80px 10%;
    
}

.asesoria-contenedor {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.asesoria-imagen img {
    width: 100%;
    max-width: 500px;
    height: auto;      
    display: block;    
}
@media (max-width: 768px) {
    .asesoria-contenedor {
        flex-direction: column; 
        text-align: center;
    }

    .asesor {
        text-align: center;
    }

    .asesor h2::after {
        margin: 20px auto 0;  
    }
}


.asesor {
    flex: 1;
    text-align: left;
}


.asesor h2 {
    font-size: 2.5em;   
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 40px;
    text-align: left; 
}

.asesor h2::after {
   
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: #f4b400;
    text-align: left;
    margin-left: 150px;
    border-radius: 3px;
    margin: 15px 0 0 150px; 
}


.linea-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    border-top: 1px solid #e2e8f0;
}

.linea-item:last-child {
    border-bottom: 1px solid #e2e8f0;
}


.mini-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #94a3b8;
    margin-bottom: 10px;
}


.telefono,
.email {
    color: #0f172a;
    font-weight: 400;   
    font-size: 1.5em;   
    text-decoration: none;
}

.telefono:hover,
.email:hover {
    color: #f4b400;
}


.telefono,
.email {
    color: black;
    font-weight: bold;
    text-decoration: none;
}
.footer {
    background: rgba(40, 40, 40, 0.9);
    color: white;
    padding: 20px;
    text-align: center;
    margin: 0 -20px;
    width: calc(100% + 40px);
    margin-top: auto;
}

.footer p {
    margin: 10px 0 0 0;
    font-size: 14px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.btn-4,
.btn-5,
.btn-6 {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--dorado);
    padding: 10px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-4:hover,
.btn-5:hover,
.btn-6:hover {
    background: var(--dorado-dark);
    color: white;
    transform: translateY(-3px);
}


.sociales-icons img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.btn-4:hover img,
.btn-5:hover img,
.btn-6:hover img {
    transform: scale(1.1);
}
/* ===== MENSAJE DE ÉXITO FLOTANTE ===== */
.mensaje-exito {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeInBackdrop 0.3s ease;
}

.mensaje-exito.activo {
    display: flex;
}

@keyframes fadeInBackdrop {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.mensaje-exito-contenido {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    position: relative;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mensaje-exito-icono {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f4b400 0%, #e0a000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    box-shadow: 0 8px 20px rgba(244, 180, 0, 0.3);
}

.mensaje-exito-icono svg {
    animation: checkAnimation 0.6s ease 0.3s forwards;
    opacity: 0;
}

@keyframes checkAnimation {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-45deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.mensaje-exito-contenido h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    font-family: Arial, Helvetica, sans-serif;
}

.mensaje-exito-contenido p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 30px;
    line-height: 1.6;
    font-family: Arial, Helvetica, sans-serif;
}

.boton-cerrar-mensaje {
    background: linear-gradient(135deg, #f4b400 0%, #e0a000 100%);
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0.5px;
}

.boton-cerrar-mensaje:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(244, 180, 0, 0.3);
}

.boton-cerrar-mensaje:active {
    transform: translateY(0);
}


#menu-toggle {
    display: none;
}

.menu-toggle {
    display: none;
}

.menu-label {
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 101;
    padding: 10px;
}

.hamburger {
    width: 28px;
    height: 2.5px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 100%;
    height: 2.5px;
    background: white;
    border-radius: 2px;
    margin: 5px 0;
    transition: all 0.3s ease;
}


#menu-toggle:checked ~ .menu-label .hamburger {
    background: transparent;
}

#menu-toggle:checked ~ .menu-label .hamburger::before {
    transform: rotate(45deg) translate(10px, 10px);
}

#menu-toggle:checked ~ .menu-label .hamburger::after {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mostrar menú en móviles */
#menu-toggle:checked ~ .nav-menus {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(40, 40, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    z-index: 99;
}

#menu-toggle:checked ~ .nav-menus .menu-1 {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(40, 40, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    z-index: 99;
}

#menu-toggle:checked ~ .nav-menus .menu-1 ul {
    flex-direction: column;
    width: 100%;
}

#menu-toggle:checked ~ .nav-menus .menu-1 ul li {
    width: 100%;
    text-align: left;
}

#menu-toggle:checked ~ .nav-menus .menu-1 ul li a {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#menu-toggle:checked ~ .nav-menus .menu-2 {
    order: 1;
    margin: 20px 0 0 0;
}

/* ===== MEDIA QUERIES RESPONSIVE ===== */

/* Tablets y pantallas medianas (768px - 1024px) */
@media (max-width: 1024px) {
    .header-content {
        flex-direction: column;
        gap: 40px;
        padding: 60px 20px;
    }

    .mision-vision-valores-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }

    .card-proposito {
        padding: 40px 25px;
    }

    .swiper-slide {
        width: 250px;
        height: 350px;
    }

    .swiper-slide img {
        height: 350px;
    }
}


@media (max-width: 768px) {
    
     .menu {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo-2 {
        order: 1;
    }

  .menu-2 {
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    order: 2;
    margin-left: auto; /* push to right on small screens */
    transform: none; /* avoid sliding off-screen */
  }

    .nav-menus .menu-1 {
        display: none;
    }

    /* hamburger button visible on small screens */
    .menu-label {
        order: 3;
        display: flex !important;
    }

    #menu-toggle:checked ~ .nav-menus .menu-1 {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(40, 40, 40, 0.95);
        backdrop-filter: blur(20px);
        padding: 20px 0;
        z-index: 99;
    }


    header {
        padding-top: 110px;
    }

  
    .swiper {
        margin-top: 30px;
    }

    .swiper-slide {
        width: 200px;
        height: 280px;
        margin-bottom: 40px;
    }

    .swiper-slide img {
        height: 280px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

  
    .header-content {
        flex-direction: column;
        gap: 30px;
        padding: 40px 15px;
        max-width: 100%;
    }

    .header-txt {
        padding: 30px 20px;
        max-width: 100%;
    }

    .header-txt h1 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .header-txt p {
        font-size: 0.95em;
        margin-bottom: 15px;
    }

  
    .sobre-nosotros {
        max-width: 100%;
        flex-wrap: wrap;
    }

    .imagen-nosotros img {
        height: 300px;
    }

    .contenido-nosotros li {
        gap: 10px;
    }

    .contenido-nosotros li strong {
        font-size: 1em;
    }

    .contenido-nosotros li p {
        font-size: 0.9em;
    }

    
    .mision-vision {
        margin-top: 0;
    }

    .mision-vision-valores-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
        margin-top: 30px;
    }

    .card-proposito {
        padding: 30px 20px;
    }

    .card-proposito h3 {
        font-size: 22px;
    }

    .card-proposito p,
    .card-proposito li {
        font-size: 0.95em;
    }

    /* Ubicación */
    .main-menu {
        padding: 20px 15px 0;
    }

    .main-menu h1 {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .botones {
        flex-direction: column;
        gap: 20px;
        padding: 0 10px;
    }

    .ubicacion-item {
        max-width: 100%;
        padding: 25px 20px;
        min-height: 250px;
    }

    /* Formulario */
    .form-container {
        max-width: 100%;
        padding: 30px 15px;
        margin-top: 80px !important;
    }

    .form-container h1 {
        font-size: 1.8em;
    }

    .form-container h4 {
        font-size: 1em;
    }

    .form-container input {
        height: 45px;
        font-size: 13px;
        margin-bottom: 20px;
    }

    .btn-1,
    .btn-3 {
        padding: 12px 30px;
        font-size: 16px;
    }

    /* Mensaje éxito */
    .mensaje-exito-contenido {
        padding: 40px 30px;
        margin: 20px;
    }
    
    .mensaje-exito-contenido h2 {
        font-size: 24px;
    }
    
    .mensaje-exito-contenido p {
        font-size: 14px;
    }

    /* Asesor / Contacto */
    .asesor {
        padding: 30px 15px;
    }

    .asesor h2 {
        font-size: 1.8em;
    }

    /* Footer */
    .footer {
        padding: 30px 15px;
    }

    .footer h2 {
        font-size: 1.6em;
    }

    .sociales-icons {
        gap: 15px;
    }

    .sociales-icons img {
        width: 35px;
        height: 35px;
    }
}

/* Móviles pequeños (480px) */
@media (max-width: 480px) {
    .menu {
        padding: 8px 10px;
    }

    .logo-2 {
        height: 70px;
        max-height: 70px;
    }

    header {
        padding-top: 90px;
    }

    .swiper-slide {
        width: 160px;
        height: 230px;
        margin-bottom: 30px;
    }

    .swiper-slide img {
        height: 230px;
    }

    .header-txt {
        padding: 20px 15px;
    }

    .header-txt h1 {
        font-size: 1.4em;
        margin-bottom: 15px;
    }

    .header-txt p {
        font-size: 0.9em;
        margin-bottom: 10px;
    }

    .main-menu h1 {
        font-size: 1.6em;
        margin-bottom: 20px;
    }

    .mision-vision-valores-container {
        gap: 15px;
    }

    .card-proposito {
        padding: 25px 15px;
    }

    .card-proposito h3 {
        font-size: 18px;
    }

    .card-proposito p,
    .card-proposito li {
        font-size: 0.9em;
    }

    .form-container {
        padding: 20px 10px;
        margin-top: 60px !important;
    }

    .form-container h1 {
        font-size: 1.5em;
    }

    .form-container h4 {
        font-size: 0.95em;
    }

    .form-container label {
        font-size: 0.85em;
    }

    .form-container input {
        height: 40px;
        font-size: 12px;
        margin-bottom: 15px;
    }

    .btn-1,
    .btn-3 {
        padding: 10px 20px;
        font-size: 14px;
    }

    .asesor h2 {
        font-size: 1.4em;
    }

    .asesor .linea p {
        flex-direction: column;
        font-size: 0.9em;
    }

    .footer h2 {
        font-size: 1.4em;
    }
}