:root {
    --primary-color: #0a4d8c;
    --secondary-color: #1976d2;
    --accent-color: #64b5f6;
    --white: #fffcfc;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
}
h1, h2, h3, h4{
color: #244563;
font-family: "Poppins", serif;
  
}

body {
  margin: 0;
  padding: 0;
background-color: #FFFFFF;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg fill-opacity='0.92'%3E%3Cpath fill='%23fcfdff' d='M486 705.8c-109.3-21.8-223.4-32.2-335.3-19.4C99.5 692.1 49 703 0 719.8V800h843.8c-115.9-33.2-230.8-68.1-347.6-92.2C492.8 707.1 489.4 706.5 486 705.8z'/%3E%3Cpath fill='%23f9fbff' d='M1600 0H0v719.8c49-16.8 99.5-27.8 150.7-33.5c111.9-12.7 226-2.4 335.3 19.4c3.4 0.7 6.8 1.4 10.2 2c116.8 24 231.7 59 347.6 92.2H1600V0z'/%3E%3Cpath fill='%23f6fafe' d='M478.4 581c3.2 0.8 6.4 1.7 9.5 2.5c196.2 52.5 388.7 133.5 593.5 176.6c174.2 36.6 349.5 29.2 518.6-10.2V0H0v574.9c52.3-17.6 106.5-27.7 161.1-30.9C268.4 537.4 375.7 554.2 478.4 581z'/%3E%3Cpath fill='%23f3f8fe' d='M0 0v429.4c55.6-18.4 113.5-27.3 171.4-27.7c102.8-0.8 203.2 22.7 299.3 54.5c3 1 5.9 2 8.9 3c183.6 62 365.7 146.1 562.4 192.1c186.7 43.7 376.3 34.4 557.9-12.6V0H0z'/%3E%3Cpath fill='%23F0F6FE' d='M181.8 259.4c98.2 6 191.9 35.2 281.3 72.1c2.8 1.1 5.5 2.3 8.3 3.4c171 71.6 342.7 158.5 531.3 207.7c198.8 51.8 403.4 40.8 597.3-14.8V0H0v283.2C59 263.6 120.6 255.7 181.8 259.4z'/%3E%3Cpath fill='%23e7f1fe' d='M1600 0H0v136.3c62.3-20.9 127.7-27.5 192.2-19.2c93.6 12.1 180.5 47.7 263.3 89.6c2.6 1.3 5.1 2.6 7.7 3.9c158.4 81.1 319.7 170.9 500.3 223.2c210.5 61 430.8 49 636.6-16.6V0z'/%3E%3Cpath fill='%23ddebfe' d='M454.9 86.3C600.7 177 751.6 269.3 924.1 325c208.6 67.4 431.3 60.8 637.9-5.3c12.8-4.1 25.4-8.4 38.1-12.9V0H288.1c56 21.3 108.7 50.6 159.7 82C450.2 83.4 452.5 84.9 454.9 86.3z'/%3E%3Cpath fill='%23d4e6fd' d='M1600 0H498c118.1 85.8 243.5 164.5 386.8 216.2c191.8 69.2 400 74.7 595 21.1c40.8-11.2 81.1-25.2 120.3-41.7V0z'/%3E%3Cpath fill='%23cae0fd' d='M1397.5 154.8c47.2-10.6 93.6-25.3 138.6-43.8c21.7-8.9 43-18.8 63.9-29.5V0H643.4c62.9 41.7 129.7 78.2 202.1 107.4C1020.4 178.1 1214.2 196.1 1397.5 154.8z'/%3E%3Cpath fill='%23C0DBFD' d='M1315.3 72.4c75.3-12.6 148.9-37.1 216.8-72.4h-723C966.8 71 1144.7 101 1315.3 72.4z'/%3E%3C/g%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
}


@media (max-width: 768px) {
  body {
    background-repeat: no-repeat;
    background-position: center 50px; /* aleja hacia arriba */
    background-size: contain; /* muestra todo el SVG sin recortarlo */
  }
}






p, a, li{
    font-family: "Open Sans", sans-serif;
color: #1c3147;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.logo-instagram , .logo-whatsapp{
margin-left: 20px;
padding-right: 20px;

}
a {
  text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}


.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 1000;
    font-family: 'Monserrat', sans-serif;
    line-height: 1.6;
    
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo-container {
    display: flex;
position: relative;
    align-items: center;
    transition: opacity 0.3s ease;
}

.logo {
    height: 110px;
    width: auto;
    
}

.nav-list {
    display: flex;
    list-style: none;
  
}

.nav-item {
    margin-left: 30px;
    padding-inline: 10px;
}

.nav-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
    position: relative;
}
@media (max-width: 768px) {
    .logo-container.ocultar-logo {
      opacity: 0;
    }
}
.hamburger {
    display: block;
    position: relative;
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.hamburger::before {
    transform: translateY(-10px);
}

.hamburger::after {
    transform: translateY(10px);
}


.menu-open .hamburger {
    background-color: transparent;
}

.menu-open .hamburger::before {
    transform: rotate(45deg);
}

.menu-open .hamburger::after {
    transform: rotate(-45deg);
}

@media (max-width: 992px) {
    .nav-item {
        margin-left: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    
    .header .container {
        height: 70px;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
     
        height: 100vh;
        background-color: var(--white);
        box-shadow: -8px 0 15px rgba(0, 0, 0, 0.1);
        
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        padding-top: 80px;
 
    }
    
    .menu-open .nav {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px;
        width: 95%;        
        margin: 0 auto;    
    }
    
    .nav-item {
        margin: 0 0 20px 0;
    }
    
    .nav-link {
        font-size: 18px;
        display: block;
        padding: 10px 0;
    }
  .nav-link::after{
    display: none;
  }
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .menu-open .overlay {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 480px) {
    
    .header .container {
        height: 60px;
    }
    
    .logo {
        height: 60px;
    }
    
    .nav {
        width: 80%;
    }
    
 
 
}

.solo-pc {
    display: none; 
  text-align: center;
  font-size: 14px;
  color: #777;
  justify-content: center;
  font-weight: 600;
  }
  

  @media screen and (max-width: 768px) {
    .solo-pc {
      display: block;
      margin-top: 30px;
    }
  
  }
.solo-movil{
    display: none;
    font-size: 25px;
    
}

@media screen and (max-width: 768px) {
    .solo-movil {
      display: block;
      margin-top: -40px;
    
    }
   
   
  }


  

  

 
  

 


  .contenedor-boton{
    text-align: center;
  }
.icono-movil{
    display: none;

}
#iconos{
    display: none;
}
  @media screen and (max-width: 768px) {
    #iconos{
        display: inline;
    }

    .descripcion-curso{
        margin-top: -45px;
    }
    .nav-list .nav-item {
      margin-bottom: 20px; 
    }
    
    .nav-list .nav-link {
      display: block;
      padding: 12px 15px; 
      font-size: 18px; 
    }
    
  
    .nav-list .nav-item:not(:last-child) {
      border-bottom: 1px solid rgba(42, 71, 101, 0.3); 
      padding-bottom: 10px;
    }
    


.header-movil {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
    margin-top: -20px; 
    padding-bottom: 8px;
    border-bottom: 1px solid #2a4765;
    text-align: center;
    padding: 0 5px 5px 5px;
    width: 90%;     
    margin: 0 auto;  
}
  
  .icono-movil {
margin-top: -60px;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .icono-movil img {
    max-width: 100%;
    max-height: 100%;
    display: block;
  }
  
  
  .solo-movil {
    margin: 0;
    font-size: 17px;
    color: #2a4765;
    text-align: center;
    padding: 4px;
  }
  
  
  .nav-list {
    padding: 0;
    list-style: none;
  }
  
  .nav-item {
    margin-bottom:18px;
   padding: 20px 12px;
   
  }
}






:root {
    --primary-blue: #0a4d68;
    --secondary-blue: #088395;
    --accent-blue: #05bfdb;
    --light-blue: #e0f7fa;
    --dark-text: #333333;
    --light-text: #ffffff;
}




.footer {
    background-color: #fffdff;
    padding: 0;
    position: relative;
}

.footer-wave {
    width: 100%;
    height: 50px;
    margin-bottom: -5px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 5%;
  background-color: #1c3147;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
    padding: 0 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    
}

.footer-logo img {
    width: auto;
    height: 90px;
    margin-right: 10px;
}


.footer-logo h2 {
    font-size: 1.5rem;
    color: var(--light-text);
}

.footer-section h3 {
    position: relative;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fffdfd;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-blue);
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #fffdfd;
}

.contact-info i {
    margin-right: 10px;
    color: #dddddd;
    width: 20px;
    text-align: center;
}

.socials {
    margin-top: 20px;
}

.socials a {
    display: inline-block;
    width: 40px;
    height: 40px;
   background-color: #088395;
    color: var(--light-text);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.socials a:hover {
    background-color: var(--accent-blue);
    transform: translateY(-3px);
}

.links ul {
    list-style: none;
}

.links li {
    margin-bottom: 10px;
}

.links a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.links a i {
    margin-right: 10px;
    color: var(--accent-blue);
    font-size: 0.8rem;
}

.links a:hover {
    color: var(--accent-blue);
    padding-left: 5px;
}

.newsletter form {
    display: flex;
    flex-direction: column;
}

.newsletter input {
    padding: 12px;
    border: none;
    border-radius: 4px;
    margin-bottom: 10px;
    outline: none;
}

.newsletter button {
    padding: 12px;
    background-color: var(--accent-blue);
    color: var(--light-text);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter button:hover {
    background-color: var(--secondary-blue);
}

.footer-bottom {
 background-color: rgba(255, 255, 255, 0.821);
    padding: 15px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-section {
        margin-bottom: 30px;
    }
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--secondary-blue);
    color: var(--light-text);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
}

.back-to-top:hover {
    background-color: var(--accent-blue);
}




.admisiones-container {
    max-width: 1200px;
    margin: 110px auto;
    padding: 90px 20px;
}


.admisiones-intro {
    margin-bottom: 30px;
}

.admisiones-intro h2 {
    color: #1a365d;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 3px solid #2b72b5;
    padding-bottom: 10px;
}

.admisiones-intro p {
    color: #4a5568;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 500;
    
}
@media (max-width: 768px) {
.admisiones-container {
  
    margin: 40px auto;
  
}

}

.admisiones-content-wrapper {
    display: flex;
    flex-direction: column;
}


.admisiones-formulario {
    margin-bottom: 40px;
    order: 1;
}

.formulario-card {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.formulario-card h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.formulario-card p {
    color: #e2e8f0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

.btn-container {
    text-align: center;
}

.btn-inscripcion {
    display: inline-block;
    background-color: #fff;
    color: #2c5282;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-inscripcion:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.contacto-adicional {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.contacto-adicional p {
    font-size: 14px;
    margin-bottom: 15px;
}

.contacto-adicional p:nth-child(2),
.contacto-adicional p:nth-child(3) {
    color: #fff;
    font-size: 15px;
    margin-bottom: 5px;
}


.admisiones-cursos {
    order: 2;
}

.admisiones-cursos > h3 {
    color: #1a365d;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
}

.cursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.curso-card {
    background-color: #fff;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-left: 4px solid #3182ce;
    transition: transform 0.3s;
}

.curso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.curso-card h3 {
    color: #1a365d;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.requisitos h4 {
    color: #2d3748;
    font-size: 17px;
    margin-bottom: 12px;
    font-weight: 500;
}

.requisitos ul {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.6;
    padding-left: 20px;
    margin-bottom: 0;
}

.requisitos ul li {
    margin-bottom: 8px;
}

.requisitos ul li:last-child {
    margin-bottom: 0;
}


@media (min-width: 768px) {
   

    .admisiones-content-wrapper {
        flex-direction: row;
        gap: 40px;
    }
    
    .admisiones-formulario {
        flex: 1;
        min-width: 280px;
        max-width: 350px;
        order: 2;
        position: sticky;
        top: 40px;
        align-self: flex-start;
        margin-bottom: 0;
    }
    
    .admisiones-cursos {
        flex: 2;
        order: 1;
    }
}