:root {
    --primary-color: #0a4d8c;
    --secondary-color: #1976d2;
    --accent-color: #64b5f6;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
}
h1, h2, h3, h4{
color: #244563;
font-family: "Poppins", serif;
  
}
body {
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 %3E%3Cpolygon fill='%23f6faff' points='1600 160 0 460 0 350 1600 50'/%3E%3Cpolygon fill='%23edf5fe' points='1600 260 0 560 0 450 1600 150'/%3E%3Cpolygon fill='%23e5effe' points='1600 360 0 660 0 550 1600 250'/%3E%3Cpolygon fill='%23dceafd' points='1600 460 0 760 0 650 1600 350'/%3E%3Cpolygon fill='%23D3E5FD' points='1600 800 0 800 0 750 1600 450'/%3E%3C/g%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
}

@media (max-width: 768px) {
  body {
    background: linear-gradient(to bottom, #f3f7fb, #d3e5fd); 
  }
}



p, a{
    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);
}

      
      
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

    
        .contact-section {
            padding: 190px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: #0d4b76;
            position: relative;
        }

        .section-title h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 17px;
            color: #5a7184;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 500;
        }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #0d4b76, #1a97d4);
        }

        .contact-content {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 50px;
        }

     
        .contact-info2 {
            flex: 1;
            min-width: 300px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            padding: 40px;
        }

        .contact-info2 h3 {
            font-size: 24px;
            color: #0d4b76;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .contact-info2 h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: #1a97d4;
        }

        .info-item {
            display: flex;
            margin-bottom: 30px;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background-color: #e6f3fb;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: #1a97d4;
            font-size: 20px;
        }

        .info-details h4 {
            font-size: 18px;
            color: #0d4b76;
            margin-bottom: 5px;
        }

        .info-details p, .info-details a {
            color: #5a7184;
            text-decoration: none;
            transition: color 0.3s;
        }

        .info-details a:hover {
            color: #1a97d4;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background-color: #e6f3fb;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1a97d4;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background-color: #1a97d4;
            color: #fff;
            transform: translateY(-3px);
        }

     
        .programs-section {
            flex: 1;
            min-width: 300px;
        }

        .program-card {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            padding: 30px;
            margin-bottom: 30px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .program-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .program-card h3 {
            font-size: 22px;
            color: #0d4b76;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 10px;
        }

        .program-card h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: #1a97d4;
        }

        .program-card p {
            color: #5a7184;
            margin-bottom: 20px;
        }

        .program-features {
            list-style: none;
            margin-bottom: 20px;
        }

        .program-features li {
            padding-left: 25px;
            position: relative;
            margin-bottom: 10px;
            color: #5a7184;
        }

        .program-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #1a97d4;
            font-weight: bold;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(90deg, #0d4b76, #1a97d4);
            color: #fff;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(26, 151, 212, 0.3);
        }

        .certifications {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            padding: 30px;
        }
        .certifications a{
            margin-top: 20px;
        }

        .certifications h3 {
            font-size: 22px;
            color: #0d4b76;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .certifications h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: #1a97d4;
        }

        .cert-logos {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-around;
            align-items: center;
            margin-top: 20px;
        }

        .cert-logo {
            width: 100px;
            height: 100px;
            background-color: #e6f3fb;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #0d4b76;
            font-size: 14px;
            text-align: center;
            padding: 10px;
        }

     
        .contact-form {
            flex: 1;
            min-width: 300px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            padding: 40px;
        }

        .contact-form h3 {
            font-size: 24px;
            color: #0d4b76;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .contact-form h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: #1a97d4;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #0d4b76;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #e1e5ea;
            border-radius: 5px;
            font-size: 16px;
            transition: border-color 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: #1a97d4;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .form-row {
            display: flex;
            gap: 20px;
        }

        .form-row .form-group {
            flex: 1;
        }

        .btn-submit {
            background: linear-gradient(90deg, #0d4b76, #1a97d4);
            color: #fff;
            border: none;
            padding: 14px 30px;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-block;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(26, 151, 212, 0.3);
        }


        .map-container {
            margin-top: 50px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            height: 400px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }


        .direct-contact {
            background-color: #1c3147;
            border-radius: 10px;
            padding: 40px;
            margin-top: 50px;
            color: #fff;
            text-align: center;
        }

        .direct-contact h3 {
            font-size: 28px;
            margin-bottom: 15px;
            color: #f3f3f4;
        }

        .direct-contact p {
            font-size: 18px;
            margin-bottom: 25px;
            color: rgba(255, 255, 255, 0.8);
        }

        .contact-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

        .contact-btn {
            display: flex;
            align-items: center;
            background-color: #fff;
            color: #0d4b76;
            padding: 15px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
            background-color: #e6f3fb;
        }

        .contact-btn i {
            margin-right: 10px;
            font-size: 20px;
        }

      
        @media (max-width: 992px) {
            .contact-content {
                flex-direction: column;
            }
            
            .contact-info, .programs-section {
                width: 100%;
            }
            
            .contact-buttons {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 30px;
            }
            
            .section-title p {
                font-size: 16px;
            }
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .contact-section {
                padding: 120px 0;
            }
            
            .cert-logos {
                gap: 10px;
            }
            
            .cert-logo {
                width: 80px;
                height: 80px;
                font-size: 12px;
            }
        }

        @media (max-width: 576px) {
            .section-title h2 {
                font-size: 33px;
            }
            
            .contact-info, .program-card, .certifications {
                padding: 25px;
            }
            
            .info-icon {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            
            .map-container {
                height: 300px;
            }
            
            .direct-contact {
                padding: 30px 20px;
            }
            
            .direct-contact h3 {
                font-size: 24px;
            }
        }