@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

:root {
    --1: #59B954;
    --2: #0F1114;
    --3: #1B1E24;
    --4: #30FF13;
    --5: #9B9B9B; 
    --6: #FFD700;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.amarillo {
    background-color: var(--6);
}

.verdeoscuro {
    background-color: var(--1);
}

.whitet {
    color: white;
}

.boton_flotante {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    margin: 0px 25px 25px 0px;
    border-radius: 100px;
    z-index: 1;
}

.boton_flotante img{
    height: 50px;
}

.boton_flotante:hover {
    transform: scale(1.08);
    cursor: pointer;
    transition: transform 1s;
}

.home {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 900px;
    background-image: url("../img/Home.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.menu {
    width: 100%;
    padding: 25px 60px;
    height: 130px;
    background-color: #13181f;
}

.logo_menu {
    height: 100%;
}

.banner_p {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 770px;
    width: 100%;
    padding: 25px 60px;
}

.bienvenida {
    display: flex;
    flex-direction: column;
    width: 50%;
    color: white;
}

.bienvenida h2 {
    margin-top: -80px;
    font-weight: 400;
    font-size: 80px;
}

.bienvenida h1 {
    margin-top: -30px;
    font-size: 100px;
    color: var(--4);
}

.bienvenida p{
    margin-top: 15px;
    font-size: 20px;
}

.imagen_principal {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    pointer-events: none;
}

.imagen_principal img{
    width: 100%;
    margin-top: 50px;
    pointer-events: none;
}

.imagen_principal img:hover{
    transform: scale(1.05);
    transition: transform 2s;
}

.botones_menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 80px;
    gap: 13px;
    float: right;
}

.boton_menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    height: 50%;
    width: auto;
    padding: 6px 20px;
    cursor: pointer;
    color: var(--5);
    background: none;
    border: none;
    overflow: visible;
    font-size: 16.5px;
}

.boton_menu:hover {
    transform: scale(1.15);
    transition: transform 1s;
    color: white;
}

.ventajas {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;  
    width: 100%;
    height: 100%;
    padding: 100px 170px 0px 170px;
    background-color: var(--2);
}

.circulo_v {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 100px;
    height: 100px;
    background-color: var(--3);
    border-radius: 50%;
    z-index: 1;
}

.circulo_v:hover {
    background-color: var(--4);
}

.circulo_v img{
    width: 110%;
    padding: 20px;
}

.line_v {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 170px;
    left: 170px;
    width: auto;
    height: 3px;
    background-color: var(--5);
}

.titles_v {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0px 140px 100px 140px;
    background-color: var(--2);
}

.titles_v h1{
    color: white;
    width: 160px;
    font-size: 18px;
    text-align: center;
    margin-top: 25px;
    font-weight: 500;
}

.servicios_inicio {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: var(--3);
    padding: 70px 100px 50px 100px;
}

.card_servicio {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    width: 370px;
    height: auto;
    background-color: var(--2);
    border-radius: 30px;
    padding: 10px;
    color: white;
}

.card_servicio img {
    width: 90%;
    border-radius: 30px;
    margin-top: 20px;
}

.card_servicio h1 {
    font-size: 20px;
    font-weight: 300;
    margin-top: 10px;
}

.card_servicio p {
    font-size: 16px;
    margin-top: 5px;
    font-weight: 200;
}

.card_servicio button {
    margin: 20px;
    background-color: var(--6);
    border-radius: 50px;
    height: 50px;
    width: 210px;
    font-size: 22px;
    font-weight: 600;
    color: var(--2);
    border: none;
}

.card_servicio button:hover {
    animation: vibrating 2s infinite;
    cursor: pointer;
}
  
@keyframes vibrating {
    0% { transform: translateX(0); }
    20% { transform: scale(1.08) translateX(-3px) rotate(-3deg); }
    40% { transform: translateX(3px) rotate(3deg); }
    60% { transform: translateX(-3px) rotate(-3deg); }
    80% { transform: scale(1.08) translateX(3px) rotate(3deg); }
    100% { transform: translateX(0); }
}

.testimonios {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: var(--2);
    padding: 100px 190px;
}

.card_user {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 2px solid var(--5);
    width: 270px;
    padding: 35px 20px 20px 20px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.card_user p{
    font-weight: 300;
}

.card_user h2{
    font-weight: 600;
    font-style: italic;
    margin-top: 10px;
    font-size: 17px;
}

.circle_card_u {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--5);
    z-index: 1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: -25px;
    background-color: var(--2);
}

.footer {
    display: flex;
    width: 100%;
    height: 200px;
    background-color: var(--3);
    font-weight: lighter;
}

.sec_final {
    width: 100%;
    display: flex;  
    padding: 30px 100px;
    gap: 34px;
}

.sec_final h2{
    font-weight: 500;
}

.footer_descrip{
    width: 50%;
    margin-right: 70px;
}

.footer_descrip img{
    height: 60px;
}

.footer_descrip p{
    line-height: 20px;
    color: white;
    margin-top: 10px;
}

.redesfooter {
    display: flex;
    flex-direction: column;
    color: white;
    margin-top: 20px;
}

.redesfooter a{
    text-decoration: none;
    color: white;
}

.serviciosfooter {
    display: flex;
    flex-direction: column;
    color: white;
    margin-top: 20px;
}

.serviciosfooter a{
    text-decoration: none;
    color: white;
}

.tienda {
    width: 100%;
    background-color: var(--3);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0px 50px 0px;
}

.tienda button {
    border: 4px solid var(--5);
    border-radius: 40px;
    background: none;
    font-size: 40px;
    width: 500px;
    height: 100px;
    color: var(--5);
    font-weight: 600;
    cursor: pointer;
}

.tienda button:hover {
    border: none;
    background-color: var(--4);
    font-size: 41px;
    color: var(--2);
    transform: scale(1.01);
    transition: border 1s,
                background-color 1s,
                font-size 1s,
                color 1s,
                transform 1s;
}

.zona_ventajas2 {
    display: none;
    height: auto;
}

.ventajas2 {
    display: flex;
    justify-content: space-between;
    align-items: center;  
    width: 100%;
    height: auto;
    background-color: var(--2);
    flex-direction: column;
    gap: 50px;
    padding: 60px 0px;
}

.circulo_ventaja2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 50%;
    flex-direction: column;
    text-align: center;
}


.circulo_ventaja2 img{
    background-color: var(--3);
    border-radius: 50%;
    width: 45%;
    padding: 20px;
}

.circulo_ventaja2 img:hover {
    background-color: var(--4);
}

.circulo_ventaja2 h1{
    margin-top: 20px;
    color: white;
}

@media (max-width: 768px) {
    .menu {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .botones_menu {
        flex-direction: column;
        width: 100%;
    }    
    .banner_p {
        flex-direction: column;
    }
    .servicios_inicio {
        flex-direction: column;
        gap: 50px;
        padding: 50px 50px;
    }
    .card_servicio {
        width: 90%;
    }
    .testimonios {
        flex-direction: column;
        gap: 50px;
    }
    .tienda button{
        width: 100%;
        height: 100%;
        font-size: 40px;
        padding: 20px;
    }
    .ventajas {
        flex-direction: column;
        height: auto;
        gap: 100px;
    }
    .line_v {
        display: none;
    }
    .titles_v {
        flex-direction: column;
    }
    .home {
        height: auto;
        padding: 100px 0px;
    }
    .bienvenida {
        width: 100%;
    }
    .banner_p {
        gap: 100px;
    }
    .bienvenida h2 {
        font-size: 70px;
    }
    .bienvenida h1 {
        font-size: 90px;
    }
    .imagen_principal img{
        width: 200%;
    }
    .footer {
        height: auto;
    }
    .sec_final {
        flex-direction: column;
        padding: 50px 50px;
    }
    .footer_descrip{
        width: 100%;
    }
    .menu {
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
        gap: 230px;
        padding: 30px 0px;
    }
    .logo_menu{
        width: 80%;
        height: auto;
    }
    .boton_menu {
        gap: 8px;
        height: 100%;
        width: auto;
        padding: 5px 20px;
        font-size: 35px;
    }
    .botones_menu img {
        height: 70%;
    }    
    .zona_ventajas1 {
        display: none;
    }    
    .zona_ventajas2 {
        display: flex;
        width: 100%;
        height: auto;
        gap: 50px;
    }
}
@media (max-width: 480px) {
    .menu {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .botones_menu {
        flex-direction: column;
    }
    .tienda button{
        width: 100%;
        height: 100%;
        font-size: 25px;
        padding: 20px;
    }  
    .bienvenida h2 {
        font-size: 50px;
    }
    .bienvenida h1 {
        font-size: 60px;
    }
    .imagen_principal img{
        width: 230%;
    }  
    .boton_menu {
        font-size: 30px;
    }     
    .home {
        padding: 6px 0px;
        height: auto;
    }       
    .menu {
        gap: 190px;
    }    
}