@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: 'Poppins', sans-serif;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.header {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 85vh;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 53, 88, 0.342); /* Adjust opacity here */
    z-index: 0;
}

.menu {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
   
    z-index: 3;
}

.logo img {
    width: 150px;
}

.menu .navbar ul {
    display: flex;
}

.menu .navbar ul li a {
    font-size: 18px;
    padding: 0 20px;
    color: #fff;
    display: block;
    font-weight: 600;
}

.menu .navbar ul li a:hover {
    color: #2475FA;
}

#menu {
    display: none;
}

.menu-icono {
    width: 25px;
}

.menu label {
    cursor: pointer;
    display: none;
}

.menu.scrolled {
    background-color: rgba(0, 0, 0, 0.8); /* Color de fondo que prefieras */
}

.header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.header-txt h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 100px;
    margin-bottom: 20px;
}

.header-txt span {
    color: #2475FA;
}

.header-txt p {
    font-size: 20px;
    margin-bottom: 20px;
}

.btn-1 {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2475FA;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
}


.alianza {
    padding: 100px 0;
    text-align: center;
}

.alianza h2 {
    font-size: 40px;
    color: #101116;
}

.alianza p {
    color: #3a3a3a;
    margin-bottom: 50px;
    font-size: 20px;
}

.alianza ul {
    list-style-type: none; /* Remove default bullet points */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
    text-align: left; /* Align text to the left */
}

.alianza ul li {
    font-size: 16px; /* Adjust font size */
    padding: 10px 0; /* Add padding to each list item */
    border-bottom: 1px solid #ccc; /* Add a bottom border */
    position: relative; /* Position relative for custom bullet */
    padding-left: 25px; /* Space for custom bullet */
}

.alianza ul li:before {
    content: "•"; /* Custom bullet point */
    color: #3d3c3a; /* Bullet color */
    font-size: 20px; /* Bullet size */
    position: absolute; /* Position absolute */
    left: 0; /* Position bullet to the left */
    top: 0; /* Align bullet vertically */
    line-height: 1.5; /* Align bullet with text */
}

.cards-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 20px;
}

.circle-img {
    display: flex;
    align-items: center;
    justify-content: center; /* Center the content */
    height: 80px;
    width: 80px; /* Make it circular */
    background-color: #2475FA;
    border-radius: 50%; /* Make it circular */
    margin: 0 auto 20px; /* Center the circle-img itself and add margin below */
}

.bgc-1 {
    background-color: #dff7fd;
}

.bgc-2 {
    background-color: #ffe6ba;
}

.bgc-3 {
    background-color: #f7ffcb;
}

.bgc-4 {
    background-color: #cbe5ff;
}

.circle-img img {
    width: 60px;
}

.mision {
    background-color: #F5FAFF;
    padding: 50px 0;
}

.mision-content {
    display: flex;
    justify-content: space-between;
}

.mision-img {
    width: 50%;
    background-color: #E4F0FE;
    text-align: center;
    margin: 0 70px;
    border-radius: 25px;
}

.mision-text {
    width: 50%;
}

.mision-text h2 {
    color: #101116;
    font-size: 40px;
}

.mision-text span {
    color: #2475FA;
    font-weight: 900;
}

.servicios {
    padding: 100px 0;
    text-align: center;
}

.servicios h2 {
    font-size: 40px;
    color: #101116;
    margin-bottom: 50px;
}

.servicios-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.servicio {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 20px;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicio:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.servicio h3 {
    font-size: 24px;
    color: #2475FA;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.servicio:hover h3 {
    color: #3d3a38;
}

.servicio ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
}

.servicio ul li {
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    position: relative;
    padding-left: 25px;
    transition: color 0.3s ease;
}

.servicio ul li:before {
    content: "•";
    color: #2475FA;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.servicio:hover ul li {
    color: #474644;
}

.servicio:hover ul li:before {
    color: #474543;
}


.socios {
    background-color: #F5FAFF;
    padding: 50px 0;
    text-align: center;
}

.socios h2 {
    font-size: 40px;
    color: #101116;
}


.socios {
    padding: 100px 0;
    background-color: #F5FAFF;
}

.socios-content h2 {
    font-size: 40px;
    color: #101116;
    margin-bottom: 50px;
    text-align: center;
}

.socios-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.socio {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.socio a {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 20px;
    height: 100%;
}

.socio img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #ccc;
}

.socio h3 {
    font-size: 24px;
    color: #2475FA;
    margin: 20px 0 10px;
    transition: color 0.3s ease;
}

.socio p {
    font-size: 16px;
    color: #3a3a3a;
}

.socio:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.socio:hover h3 {
    color: #434140;
}


.formulario-1 {
    padding: 100px 0;

}

.formulario-1-group {
    display: flex;
}

.formulario-1 h2 {
    font-size: 40px;
    color: #101116;
    margin-bottom: 50px;
}

.formulario-1 h2 {
    font-size: 40px;
    color: #101116;
    margin-bottom: 40px;
    text-align: center;
}

.formulario-1-txt {
    margin-bottom: 40px;
    width: 55%;
    padding-right: 75px;
}

.formulario-1-txt h3 {
    font-size: 24px;
    color: #2475FA;
    margin-bottom: 15px;
}

.formulario-1-txt p {
    font-size: 16px;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.formulario-1-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 45%;
}

.formulario-1-form h3 {
    font-size: 24px;
    color: #2475FA;
    margin-bottom: 20px;
    text-align: center;
}

.formulario-1-form label {
    font-size: 16px;
    color: #101116;
    display: block;
    margin-bottom: 5px;
}

.formulario-1-form input,
.formulario-1-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.formulario-1-form button {
    background-color: #2475FA;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 15px;
}

.formulario-1-form button:hover {
    background-color: #383736;
}

.privacy {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.privacy input {
    width: 20px;
    margin:0 10px 0 10px;
}
.privacy label {
    margin: 0;
}
.privacy a {
    color: #2475FA;
    text-decoration: none;
}

.privacy a:hover {
    text-decoration: underline;
}


.formulario-2 {
    padding: 100px 0;
    background-color: #F5FAFF;
    text-align: center;
}

.formulario-2 h2 {
    font-size: 36px;
    color: #101116;
    margin-bottom: 20px;
}

.formulario-2-content {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.formulario-2-content form {
    display: flex;
    flex-direction: column;
}

.formulario-2-content label {
    font-size: 16px;
    color: #101116;
    margin-bottom: 5px;
    text-align: left;
}

.formulario-2-content input,
.formulario-2-content textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.formulario-2-content button {
    background-color: #2475FA;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.formulario-2-content button:hover {
    background-color: #3d3d3d;
}

.footer {
    background-color: #101116;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-contact h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-contact p {
    margin: 5px 0;
}

.footer-contact a {
    color: #2475FA;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-privacy p {
    margin: 20px 0;
}

.footer-privacy a {
    color: #2475FA;
    text-decoration: none;
}

.footer-privacy a:hover {
    text-decoration: underline;
}

.footer-rights p {
    margin: 10px 0;
}



@media(max-width:991px) {

    .menu {
        padding: 20px 20px 0 20px;
       
    }

    .menu label {
        display: initial;
    }

    .menu .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #0084ff;
        display: none;
    }

    .menu .navbar ul {
        flex-direction: column;
    }

    .menu .navbar ul li {
        width: 100%;
        padding: 20px 0;
    }

    .menu .navbar ul li a:hover {
    
        color: #ffffff;
    }

    

    #menu:checked ~ .navbar {
        display: initial;
    }

    .header {
    
        height: 100vh;
        padding: 30px;
     
    }

    .header-txt h1 {
  
        font-size: 70px;
        line-height: 1;
    }

    .alianza {
        padding: 30px;
    }

    .alianza p {
    
        margin-bottom: 30px;
     
    }

    .cards-group {
  
        grid-template-columns: repeat(1, 1fr);
       
    }

    .mision {
        padding: 30px;
    }
    
    .mision-content {
        flex-direction: column;
    }

    .mision-img {
        width: 100%;
        margin: 0;
      
    }
    
    .mision-text {
        width:100%;
        order: -1;
        margin-bottom: 30px;
    }
    
    .servicios {
        padding: 30px;
    }
    
    .servicios h2 {
   
        margin-bottom: 30px;
    }

    .servicios-group {
 
        grid-template-columns: repeat(1, 1fr);

    }
    
    .socios {
  
        padding: 30px;

    }

    .socios-content h2 {
    
        margin-bottom: 30px;

    }
    

    .socios-group {
        grid-template-columns: repeat(1, 1fr);

    }

    .formulario-1 {
        padding: 30px;
    
    }


    .formulario-1-group {
        flex-direction: column;
    }

    .formulario-1 h2 {
        margin-bottom: 30px;
    }

    .formulario-1-txt {
        margin-bottom: 0;
        width: 100%;
        padding-right:0;
    }

    .formulario-1-form {
    
        width: 100%;
    }
    
    .formulario-2 {
        padding: 30px;
    }
 
    
    

}

