@import url('https://fonts.googleapis.com/css2?family=Itim&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
:root {
    --primary:#ffffff;
    --black: #000;
    --white: #ffffff;
    --light-black: #666;
    --hover: rgba(175, 169, 169, 0.8);
    --bg: #f9f9f9;
    --border: 0.1rem solid rgba(0,0,0,0.3);
    --box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
}

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css');
:root {
    --primary:#f25430;
    --black: #000;
    --white: #fff;
    --light-black: #666;
    --hover: rgba(244,244,244,0.8);
    --bg: #f9f9f9;
    --border: 0.1rem solid rgba(0,0,0,0.3);
    --box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
}
@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);


* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;
}



html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}


section{
    padding: 5rem 9%;
}

/***UTILITIES CLASSES ***/
.heading {
    text-align: center;
    font-size: 4rem;
    color: var(--black);
    text-transform: uppercase;
    font-weight: bolder;
    margin-bottom: 3rem;
}

.heading span {
    color: var(--primary);
    border-radius: .5rem;
    padding: 0 1.5rem;
    text-transform: uppercase;
    border: 1px solid #f25430;
}


/*Header*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 9%;
    z-index: 1000;
    background-color: #333333;
}
.header .logoUF img {
    height: 40px;
}

.header .navbar {
    display: flex;
    align-items: center;
}

.header .navbar a {
    font-size: 1.4rem;
    margin: 0 1.5rem;
    margin-right: 50rem;
    padding: 2rem;
    color: #ffffff;
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
}

.header .logo{
    font-size: 2.5rem;
    font-weight: bolder;
    text-transform: uppercase;
    border-bottom: 1px solid var(--white);
    color: var(--white);
}

.header .logo span{
    color: var(--primary);
    text-transform: uppercase;
}


.header .logoUF {
    border-bottom: 1px solid var(--white);
    color: var(--white);
}

.header .navbar a{
    font-size: 1.7rem;
    margin: 0 1.8rem;
    text-transform: uppercase;
    color: var(--white);
}

.header .navbar a:hover {
    color: var(--primary);
    border-bottom: 0.3rem solid var(--primary);
    padding-bottom: .5rem;
}



/* General */
body {
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
    background-color: var(--bg);
}

section {
    padding: 5rem 9%;
}

/* Utilities Classes */
.heading {
    text-align: center;
    font-size: 4rem;
    color: var(--black);
    text-transform: uppercase;
    font-weight: bolder;
    margin-bottom: 3rem;
}

.heading span {
    color: var(--primary);
    border-radius: .5rem;
    padding: 0 1.5rem;
    text-transform: uppercase;
    border: 1px solid var(--primary);
}
/* Estilos generales para el botón del menú */
#menu-btn {
    display: none;
    font-size: 2.5rem;
    color: var(--white);
    cursor: pointer;
}

/* Estilos del menú desplegable */
.menu-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #333;
    border-radius: 0.5rem;
    width: 200px;
    box-shadow: var(--box-shadow);
    z-index: 1001;
}

.menu-nav a {
    display: block;
    padding: 1rem;
    color: var(--white);
    text-decoration: none;
}

.menu-nav a:hover {
    background: var(--hover);
}

/* Mostrar el menú desplegable cuando está activo */
.menu-nav.active {
    display: block;
}

/* Estilos responsivos para el menú hamburguesa */
@media (max-width: 768px) {
    .header .navbar {
        display: none;
    }

    .header-right {
        display: none;
    }

    #menu-btn {
        display: block;
    }

    .header .navbar {
        display: none;
    }

    .header-right {
        display: none;
    }
}
/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 9%;
    z-index: 1000;
}

.header .logo {
    font-size: 2.5rem;
    font-weight: bolder;
    text-transform: uppercase;
    border-bottom: 1px solid var(--white);
    color: var(--white);
}

.header .logo span {
    color: var(--primary);
    text-transform: uppercase;
}

.header .logoUF {
    border-bottom: 1px solid var(--white);
    color: var(--white);
}

.header .navbar a {
    font-size: 1.7rem;
    margin: 0 1.8rem;
    text-transform: uppercase;
    color: var(--white);
}

.header .navbar a:hover {
    color: var(--primary);
    border-bottom: 0.3rem solid var(--primary);
    padding-bottom: .5rem;
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 5%;
    }

    .header .navbar {
        position: absolute;
        top: 115%;
        right: 2rem;
        background: rgba(252, 250, 250, 0.5);
        box-shadow: var(--box-shadow);
        border-radius: .5rem;
        width: 30rem;
        transform: scale(0);
        transform-origin: top right;
        opacity: 0;
        backdrop-filter: blur(10px);
    }

    .header .navbar.active {
        display: flex;
        transform: scale(1);
        opacity: 1;
    }

    .header .navbar a {
        margin: 1rem 0;
    }

    .header-right {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #333333;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 5%;
    }

    .header-right.active {
        display: flex;
    }

    .language-selector, .login-btn, .register-btn {
        margin: 0.5rem 0;
    }

    #menu-btn {
        display: block;
    }
}
/* Menu Button */
#menu-btn {
    font-size: 2.5rem;
    color: var(--white);
    display: none;
    cursor: pointer;
}


/* Home */
.home {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: linear-gradient(rgba(0, 0, 0, 0.527), rgba(0, 0, 0, 0.7)), url(/img/driver.jpeg);
    background-position: center;
    background-size: cover;
    padding-top: 10rem;
    height: 100vh;
    top: 6rem;
}

.home .content {
    flex: 1 1 45rem;
    margin-top: -10rem;
}

.home .content h3 {
    font-size: 7rem;
    color: var(--bg);
    line-height:1;
    font-family: 'Roboto', sans-serif;

}

.home .content p {
    font-size: 2rem;
    color: var(--bg);
    line-height: 1.8;
    padding: 1rem;
}


.home .content .join-form {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.home .content .join-form input[type="email"] {
    padding: 4rem;
    width: 474px;
    height: 80px;
    top: 620px;
    left: 388px;
    font-size: 1.6rem;
    border: none;
    background-color: var(--bg);
    border-radius: 5rem;
    margin-top: 2rem;
}


.home .content .join-form .join-btn {
    line-height: -5rem;
    width: 260px;
    height: 80px;
    top: 620px;
    left: 388px;
    font-size: 23px;
    background-color: #2196F3;
    color: var(--white);
    border: none;
    border-radius: 100px;
    cursor: pointer;
    margin-top: 2rem;
}



.home .content .login-link {
    display: block;
    margin-left: 40rem;
    margin-top: 1rem;
    color: var(--white);
    font-size: 18px;
    text-decoration: none;

}

.home .content .login-link:hover {
    text-decoration: underline;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .home .content .join-form {
        flex-direction: column;
        align-items: center;
    }

    .home .content .join-form input[type="email"] {
        width: 100%;
        max-width: 30rem;
        border-radius: 5rem;
        margin-bottom: 1rem;
    }

    .home .content .join-form .join-btn {
        width: 100%;
        max-width: 30rem;
        border-radius: 100px;
    }

    .home .content .login-link {
        display: block;
        margin-left: 0px;
        margin-top: 1rem;
        color: var(--white);
        font-size: 15px;
        text-decoration: none;
    }

    .home .content h3 {
        font-size: 5rem;
        color: var(--bg);
        line-height:1;
        font-family: 'Roboto', sans-serif;

    }

    .home .content p {
        font-size: 15px;
        color: var(--bg);
        line-height: 1.8;
        padding: 1rem;
    }
}


@media(max-width:991px){
    html{
        font-size: 60%;
    }
    .home .taxi {
        padding: 1rem;
        width: 200px;

    }
    .home .universidades {
        width: auto;
    }
    .header {
        padding: 2rem;
    }
    section{
        padding: 2rem;
    }
}

@media(max-width:768px){
    #menu-btn{
        display: initial;
    }
    .header .navbar {
        position: absolute;
        top: 115%;
        right: 2rem;
        background: rgba(252, 250, 250, 0.5);
        box-shadow: var(--box-shadow);
        border-radius: .5rem;
        width: 30rem;
        transform: scale(0);
        transform-origin: top right;
        opacity: 0;
        backdrop-filter: blur(10px);
    }
    .header .navbar.active {
        transform: scale(1);
        opacity: 1;
    }
    .header .navbar a{

        font-size: 2rem;
        display: block;
        padding: 1rem;
        color: var(--black);
        margin: 1rem;
        border-radius: 0.5rem;

    }
    .header .navbar a:hover{
        background: var(--bg);
    }

    .header .content {
        text-align: center;
    }
    .home .taxi {
        width: 100px;
    }
    .home .content {
        text-align: center;

    }
    .about .heading {
        font-size: 500%;

    }
}


mybutton {
    display: flex;
    align-items: center;
}

.mybutton button {
    padding: 8px 16px;
    margin: 0 5px;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
    color: white;
    border-radius: 4px;
}

.mybutton button#register-btn {
    background-color: #2196F3;
    border-color: #2196F3;
}

.mybutton button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mybutton button#register-btn:hover {
    background-color: #1976D2;
}

.language-selector {
    position: relative;
    margin-right: 15px;
}

.selected-language {
    display: flex;
    align-items: center;
    color: white;
    cursor: pointer;
    font-size: 14px;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

.selected-language i {
    margin-left: 5px;
}

.language-selector {
    position: relative;
    margin-right: 15px;
}

.selected-language {
    display: flex;
    align-items: center;
    color: white;
    cursor: pointer;
    font-size: 14px;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

.selected-language i {
    margin-left: 5px;
}
#lang-selector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.login-btn, .register-btn {
    padding: 8px 16px;
    margin-left: 10px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    font-weight: bold;
}

.login-btn {
    background-color: var(--bg);
    color: #2196F3;
    border: 1px solid white;

}

.register-btn {
    background-color: #2196F3;
    color: white;
}

#menu-btn {
    display: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Footer Styles */
.footer {
    margin-top: -5rem;
    background-color: #333333;
    color: #ffffff;
    padding: 20px 40px;
    font-family: 'Poppins', sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--bg);
}

.footer-nav {
    display: flex;

}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 20px;
    font-size: 14px;
}

.language-selector {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.language-selector span {
    margin-right: 5px;
    font-size: 14px;
}

.footer-main {
    display: flex;
    align-items: flex-start;
    padding: 40px 0;
}

.footer-logo {
    display: grid;
    align-items: center;
    margin-right: 40px;
}

.footer-logo img {
    height: 136px;
    width: 136px;
    margin-right: 10px;
}

.footer-logo h2 {
    font-size: 20px;
    color: var(--bg);
    margin: 0;
    text-align: center;
}

.footer-description{
    margin-top: 2.5rem;
    font-size: 16px;
    color: var(--bg);
}



.footer-bottom {
    display: flex;
    justify-content: center; 
    align-items: center;
    padding-top: 20px;
}

.footer-legal a {
    color: #ffffff;
    display: grid;
    text-decoration: none;
    margin-left: 50rem;
    font-size: 15px;
    margin-top: 2rem ;
}

.footer-social a {
    color: #ffffff;
    align-items: center;
    font-size: 18px;
    margin-left: 20px;
}

.footer-legal {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 2rem;
}

.footer-social {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: 2rem;
    margin-top: 5rem;
}

.footer-copyright {
    font-size: 12px;
    text-align: center;
    align-items: center;
    color: var(--bg);
    margin: 0 auto; 
}

@media (max-width: 768px) {
    .footer {
        padding: 20px;
    }

    .footer-content, .footer-main, .footer-bottom {
        flex-direction: column;
        align-items: center; 
        text-align: center;
    }

    .footer-nav, .language-selector, .footer-logo, .footer-description, .footer-tagline, .footer-legal, .footer-social, .footer-copyright {
        margin-bottom: 20px;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-nav a {
        margin-bottom: 10px;
    }

    .footer-social {
        margin-left: 0; 
        margin-top: 15px;
        margin-left: -5rem;
    }

    .footer-legal {
        display: flex;
        flex-direction: column;
        margin-left: -50rem;
        align-items: center;
        margin-bottom: 15px;
    }

    .footer-copyright {
        margin: 0 auto;
        padding-top: 10px;
    }

    .footer-logo img {
        height: 100px; 
        width: 100px;
        margin-bottom: 10px;
        margin-left: 4rem;
    }
    
    .footer-logo h2 {
        font-size: 20px;
        color: var(--bg);
        margin: 0;
        margin-left: 2.5rem;
        text-align: center;
    }
}


.how-it-works {
    background-color: #FFFFFF;
    height:1101px;
    top: 1084px;
    width: auto;
    text-align: center;
}

.how-it-works h2 {
    margin-top: 4rem;
    font-size: 36px;
    text-align: left;
    color: #333;
    margin-bottom: 20px;
}

.how-it-works h2 span {
    font-weight: bold;
    font-size: 70px;

}
.steps-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 10rem;
}

.step {
    max-width: 200px;


}

.step img {
    width: 240px; 
    height: 240px;
    top: 345px;
    left: 1295px;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 25px;
    letter-spacing: -1.5%;
    align-items: center;
    text-align: center;
    color: #333;
    margin-bottom: 10px;
}

.step p {
    font-size: 20px;
    color: #666;
}


@media (max-width: 768px) {
    .how-it-works h2 {
        font-size: 20px;
    }
    .how-it-works, .benefits {
        height: auto; /* Altura automática en lugar de fija */
        min-height: 100vh; /* Mínimo toda la altura de la ventana */
    }
    .contenedor-grid {
        grid-template-columns: 1fr ;/* Una columna en móviles */
        margin-left:-100px;
    }

    .cuadro {
        width: auto; /* Ancho automático */
        height: auto; /* Altura automática */
        max-width: 450px; /* Máximo ancho */
        margin: 0 auto; /* Centrar */
    }
    .steps-container {
        flex-direction: column;
        align-items: center;
        margin-right: 100rem;
    }

    .step {
        max-width: 100%;
    }
    .step p {
        font-size: 15px;
        color: #666;
    }

    .how-it-works {
        background-color: #FFFFFF; /* Fondo gris claro */
        height:1400px;
        top: 1084px;
        width: 1680px;
        text-align: center;
    }
}

/*Benefits*/

.benefits {
    
    background-color: rgba(232, 144, 65, 1);
    height:1101px;
    top: 1084px;
    width: auto;
    font-family: Roboto, serif;
    align-content: baseline;
    font-weight: bold;
}

.group1 {
    margin: auto;
    text-align: center;
    line-height: -10px;
}

.group1 p {
    margin-top: 4rem;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-align: left;
    line-height: 50px;
}

.group1 p span {
    font-weight: 700;
    font-size: 50px;

}

.contenedor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    margin: auto;
    margin-top: 50px;
}

.cuadro {
    background-color: white;
    padding: 30px;
    width: 450px;
    height: 290px;
    top: 428px;
    left: 1141px;
    border-radius: 15px;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.box-title {
    
    display: flex;
    align-items: center;
}

h3 {
    margin-left: 30px;
}

.cuadro img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    display: flex;
}

.cuadro h3 {
    font-size: 20px;
    
}

.cuadro p {
    margin-top: 10px;
    line-height: 50px;
    color: #555;
    font-size: 20px;
}

p {
    font-weight: 500;
}
@media (max-width: 768px) {
    .benefits {
        padding: 2rem 1rem;
        height: auto;
        width: auto;
    }

    .title {
        font-size: 1.75rem;
    }

    .title span {
        font-size: 2.5rem;
    }

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


/* Sección de Seguridad */
.security {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 9%;
    background-color: #f9f9f9;
    font-family: Roboto, serif;
    height: auto;
    width: 100%;
    flex-wrap: wrap;
    height:900px;
    top: 1084px;
    width: auto;
}

.security-content {
    flex: 1;
    padding-right: 2rem;
    margin-top: -10rem; 
}

.security-content h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 1rem;
}

.security-content .priority {
    font-size: 50px;
    color: #333;
    margin-bottom: 2rem;
}

.security-content p {
    margin-top: 5rem;
    font-size: 32px;
    color: #666;
    margin-bottom: 2rem;
}

.security-content ul {
    list-style-type: none;
    margin-top: 8rem;
}

.security-content ul li {
    font-size: 25px;
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.security-content ul li i {
    color: #f25430;
    margin-right: 1rem;
}

.security-image {
    flex: 1;
    margin-top: 2rem;
}

.security-image img {
    max-width: 100%;
    border-radius: 10px;
    height: auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .security {
        flex-direction: column;
        padding: 2rem 5%;
    }

    .security-content {
        padding-right: 0;
        margin-top: 0;
    }

    .security-content h2 {
        font-size: 24px;
    }

    .security-content .priority {
        font-size: 30px;
    }

    .security-content p {
        font-size: 18px;
    }

    .security-content ul li {
        font-size: 16px;
    }

    .security-image img {
        width: 100%;
        margin-top: 1rem; 
    }
}


/*planes*/
.plans {
    padding: 5rem 9%;
    background-color: rgba(232, 144, 65, 1); 
    text-align: left;
    height:1101px;
    top: 1084px;
    width: auto;
  }
  
  .plans h2 {
    font-size: 36px;
    color: #fff;
  }
  
  .plans .our-plans {
    font-size: 50px;
    color: #fff;
    margin-bottom: 4rem;
}
  
  .plan-cards {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
  }
  
  .plan-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 3rem 2rem;
    flex: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    width: 383.37px;
    height: 700px
  }
  
  .plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); 
  }
  
  .featured {
    border: 5px solid var(--black); 
  }
  
  .plan-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 1rem;
    margin: 0;
    padding: 0;
    text-align: center;
}
  
  .plan-card .price {
    font-size: 48px;
    font-weight: bold;
    border-bottom: 2px solid var(--black);
    color: var(--black); 
    margin-bottom: 2rem;
    text-align: center;
}
  
  .plan-card .price span {
    font-size: 1.6rem;
    color: #666;
  }
  
  .plan-card ul {
    list-style-type: none;
    margin-bottom: 2rem;
    margin-top: 50px;
  }
  
  .plan-card ul li {
    font-size: 15px;
    line-height: 5rem;
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
  }
  .popular {
    background-color: #F78B26;
    color: #FFFFFF;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 14px;
    margin-top: -2px;
    margin-bottom: -20px;
    width: auto;
    text-align: center;
  }
  .plan-card ul li:before {
    content: '✔'; 
    margin-right: 0.5rem;
    color: #fff; 
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%; 
    background-color: #012840; 
    opacity: 1; 
}

  


  .plan-card button {
    background-color: var(--black);
    color: #fff;
    margin-left: 130px;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .plan-card button:hover {
    background-color: #e64a2e;
  }
  
  .plan-card .cancel {
    font-size: 1rem;
    color: #666;
    margin-left: 115px;
    margin-top: 1rem;
  }
  

  
  /* Responsive styles */
  @media (max-width: 768px) {
    .plan-cards {
      flex-direction: column;
    }

    .plan-card h3 {
        margin-left: 0px;

      }

    .plan-card button {
        background-color: var(--black);
        color: #fff;
        margin-left: 110px;
        border: none;
        padding: 1rem 2rem;
        font-size: 1.6rem;
        border-radius: 5px;
        cursor: pointer;
        
        transition: background-color 0.3s ease;
    }
    .plan-card {
      margin-bottom: 2rem;
        margin-left: -32    px;
        
    }

    .plans {
        height: auto;
        width: auto;
    }
    .plan-card ul li {
        font-size: 13px;
        line-height: 5rem;
        color: #666;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
      }

      .plan-card .cancel {
        font-size: 1rem;
        color: #666;
        margin-left: 90px;
        margin-top: 1rem;
      }
      
  }
  

h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 50px;
}

h2 span {
    font-weight: bold;
    color: #000;
    font-size: 50px;
}

/*Contact*/
.contacto {
    padding: 5rem 9%;
    background-color: var(--bg);
    text-align: left; 
    height:1000px;
    top: 1084px;
    width: auto;
}

.contacto html {
    font-family: 'Montserrat', Arial, sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
  }
  
  .contacto body {
    background-color: #000;
  }
  
  .contacto button {
    overflow: visible;
  }
  
  .contacto button, select {
    text-transform: none;
  }
  
  .contacto button, input, select, textarea {
    color: #5A5A5A;
    font: inherit;
    margin: 0;
  }
  
  .contacto input {
    line-height: normal;
  }
  
  .contacto textarea {
    overflow: auto;
  }
  
  .contacto #container {
    border: solid 3px #474544;
    max-width: 768px;
    background-color: var(--bg);
    margin: 60px auto;
    position: relative;
  }
  
  .contacto form {
    padding: 37.5px;
    margin: 50px 0;
  }
  
  .contacto h1 {
    color: #474544;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 7px;
    text-align: center;
    text-transform: uppercase;
  }
  
  .contacto .underline {
    border-bottom: solid 2px #474544;
    margin: -0.512em auto;
    width: 80px;
  }
  
  .contacto .icon_wrapper {
    margin: 50px auto 0;
    width: 100%;
  }
  
  .contacto .icon {
    display: block;
    fill: #474544;
    height: 50px;
    margin: 0 auto;
    width: 50px;
  }
  
  .contacto .email {
      float: right;
      width: 45%;
  }
  
  .contacto input[type='text'], [type='email'], select, textarea {
      background: none;
    border: none;
      border-bottom: solid 2px #474544;
      color: #474544;
      font-size: 1.000em;
    font-weight: 400;
    letter-spacing: 1px;
      margin: 0em 0 1.875em 0;
      padding: 0 0 0.875em 0;
    text-transform: uppercase;
      width: 100%;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      -ms-box-sizing: border-box;
      -o-box-sizing: border-box;
      box-sizing: border-box;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
  }
  .contacto input[type='text']:focus, [type='email']:focus, textarea:focus {
      outline: none;
      padding: 0 0 0.875em 0;
  }
  
  .contacto .message {
      float: none;
  }
  
  .contacto .name {
      float: left;
      width: 45%;
      

  }
  
  .contacto select {
    background: url('https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-ios7-arrow-down-32.png') no-repeat right;
    outline: none;
 -moz-appearance: none;
 -webkit-appearance: none;
 appearance: none;
  }
  
  .contacto select::-ms-expand {
    display: none;
  }
  
  .contacto .subject {
    width: 100%;
  }
  
  .contacto .telephone {
    width: 100%;
  }
  
  .contacto textarea {
      line-height: 150%;
      height: 150px;
      resize: none;
    width: 100%;
  }
  
  .contacto ::-webkit-input-placeholder {
      color: #474544;
  }
  
  .contacto :-moz-placeholder { 
      color: #474544;
      opacity: 1;
  }
  
  .contacto ::-moz-placeholder {
      color: #474544;
      opacity: 1;
  }
  
  .contacto :-ms-input-placeholder {
      color: #474544;
  }
  
  .contacto #form_button {
    background: none;
    border: solid 2px #474544;
    color: #474544;
    cursor: pointer;
    display: inline-block;
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: 0.875em;
    font-weight: bold;
    outline: none;
    padding: 20px 35px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
  }
  
  .contacto #form_button:hover {
    background: #474544;
    color: #F2F3EB;
  }
 
 
  @media screen and (max-width: 768px) {
     .contacto #container {
      margin: 20px auto;
      width: 95%;
    }
  }
  
  @media screen and (max-width: 480px) {
     .contacto  h1 {
      font-size: 26px;
    }
    
    .contacto .underline {
      width: 68px;
    }
    
    .contacto  #form_button {
      padding: 15px 25px;
    }
  }
  
  @media screen and (max-width: 420px) {
     .contacto  h1 {
      font-size: 18px;
    }
    
    .contacto .icon {
      height: 35px;
      width: 35px;
    }
    
    .contacto .underline {
      width: 53px;
    }
    
    .contacto input[type='text'], [type='email'], select, textarea {
      font-size: 0.875em;
    }
  }


/*hero*/
.hero {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: linear-gradient(rgba(0, 0, 0, 0.527), rgba(0, 0, 0, 0.7)), url(/img/QuienesSomos.jpeg);
    background-position: center;
    background-size: cover;
    padding-top: 10rem;
    height: 100vh;
    top: 6rem;
}

.hero-content {
    max-width: 600px;
}

.hero-content p {
    color: white;
    font-size: 40px;
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 1rem;
    color: white;
}

.btn {
    margin-top: 5rem;
    display: inline-block;
    margin-left: 10rem;
    background-color: #4A90E2;
    color: #fff;
    font-size: 20px;
    text-align: center;
    width: 500px;
    height: 100px;
    line-height: 82px;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}


.btn:hover {
    background-color: #3A7BC8;
}


/* Features Section */
.features {
    padding: 4rem 2rem;
    background-color: var(--background-color);
    height: 800px;
    margin-top: 10rem;
    
}

.features h2 {
    text-align: left;
    font-size: 50px;
    margin-bottom: 3rem;
}

.features h3 {
    font-size: 2rem;
}

.features p {
    font-size: 1.5625rem;
}

.feature-grid {
    margin-top: 10rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
}

.feature img {
    width: 200px;
    height: 200px;
    margin-bottom: 1rem;
}


@media screen and (max-width: 768px) {
    .features {
        padding: 4rem 2rem;
        background-color: var(--background-color);
        height: auto;
        margin-top: 10rem;
        
    }
}

@media screen and (max-width: 420px) {
    .features {
        padding: 4rem 2rem;
        background-color: var(--background-color);
        height: auto;
        margin-top: 10rem;
        
    }
}

/* Sponsors Section */
.sponsor {
    font-family: var(--font-primary);
    display: flex;
    background-color: var(--background-color);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 800px;
    background-color: #ffffff;
    padding: 0 10%;
}



.sponsors {
    margin-top: 0rem;
    display: grid;
    margin-left: 10rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
    width: 100%;
}

.sponsors img {
    width: 200px;
    height: auto;
    top: 263px;

}

@media screen and (max-width: 768px) {
    .sponsors {
        grid-template-columns: repeat(2, 1fr); /* Ajustar a 2 columnas en pantallas más pequeñas */
        height: auto;
        margin-left:0rem;
    }
}

@media screen and (max-width: 420px) {
    .sponsors {
        grid-template-columns: 1fr; /* Ajustar a 1 columna en pantallas muy pequeñas */
        margin-left:0rem;

    }
}

 
/*EQUIPO*/
.equipo{
    height: 1000px;
    background-color: var(--background-color);

}
.equipo .heading {
    color : #39bfbf;
}
.equipo .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(27rem,1fr));
    gap: 1.5rem;
}

.equipo .box-container .box{
    position: relative;
    height: 30rem;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.equipo .box-container .box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.equipo .box-container .box span {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 5rem;
    font-weight: bolder;
    color: var(--black);
}

.equipo .box-container .box .content {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 6rem;
    left: 0;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition-delay: 0.1s;
}

.equipo .box-container .box:hover .content{
    top: 0;
    opacity: 1;
}

.equipo .box-container .box .content h3{
    font-size: 2.5rem;
    color: var(--black);
    padding-bottom: 0.5rem;
}

.equipo .box-container .box .content p{
    font-size: 1.5rem;
    color: var(--light-black);
}

.equipo .box-container .box::before{
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: white;
    clip-path: circle(30% at 93% 0);
    transition: 0.3s linear;
}

.equipo .box-container .box:hover::before {
    background: rgba(252, 250, 250, 0.5);
    clip-path: circle(100%);
    filter: blur(5px);
}

@media screen and (max-width: 768px) {
    .equipo .box-container {
        grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr)); 
    }

    .equipo .box-container .box {
        height: auto; 
    }
}
