@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header{
    height: 60px;
}

#logo{
    background: url("imagenes/logo_inker.png") no-repeat center;
    background-size: cover;
    text-indent: -500px;
    overflow: hidden;
    width: 130px;
    height: 37px;
} 
.nav-item:hover{
    background-color: #B9FF66;
    border-radius: 5px;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
    display: flex;
    margin-bottom: 0;
}
figure{
    display: flex;
    justify-content: center;
}
/* BANNER */
#banner{
    background: linear-gradient(-90deg, rgba(25,26,35,1) 0%, rgba(185,255,102,1) 39%, rgba(243,243,243,1) 100%);
}

.texto_nosotros p{
    line-height: 1.5rem;
}
#nosotros img{
    border-radius: 15px;
} 

/* CAROUSEL */
.carousel-inner{
    border-radius: 10px;
}
#carousel h2{
    text-align: center;
    margin: 2rem;
}

/* CARACTERISTICAS */
.texto_caracteristicas{
    line-height: 1.5rem;
    padding: 1rem 2.5rem;
} 

.negro{
        background-color: #191A23;
        color: white;
        padding: .8rem 1rem;
        transition: 0.5s ease;
}
.verde{
        background-color: #B9FF66;
        padding: .8rem 1rem;
        transition: 0.5s ease;
    }
.gris{
        background-color: #F3F3F3;
        padding: .8rem 1rem;
        transition: 0.5s ease;
    }
.negro:hover,
.negro:active {
    transform: scale(1.05);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.verde:hover,
.verde:active {
    transform: scale(1.05);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.gris:hover,
.gris:active {
    transform: scale(1.05);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
    /* RESENA */
    #resena{
        background: linear-gradient(-90deg,  rgba(185,255,102,1) 0%, rgba(185,255,102,1) 39%, rgba(243,243,243,1) 100%);
        padding: 1rem;
    }
    .uno{
        background-color: white;
        margin: 1rem;
        padding: 1rem 1.5rem;
    }
    .dos{
        background-color: white;
        margin: 1rem;
        padding: 1rem 1.5rem;
    }

/* PREGUNTAS FRECUENTES */
.accordion{
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem #b9ff66;
    --bs-accordion-active-color: #191a23;
    --bs-accordion-active-bg: #b9ff66;
}
#preguntas h2{
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}
#preguntas{
    width: 80%;
    margin: auto;
}
#carousel{
    margin: auto;
}

/* CONTACTO */
#contacto label{
    font-size: 1rem;
    margin: 1rem;
}
#contacto h2{
    text-align: center;
    margin-top: 2rem;
}
input{
    padding: 0.25rem;
}
form > div{
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
}
label{
    margin: .2rem;
}
form{
    border-radius: 10px;
    width: 80%;
    margin: auto;
    padding: 0.8rem;
}
#margin-genero input{
    margin-right: 0.65rem !important;
}
form > div :last-child{
    flex: 1;
    border-radius: 8px;
}
#botones{
    justify-content: flex-end;
    flex-direction: row;
}
#botones input{
    flex: 0 200px;
    height: 50px;
    border: none;
    border-radius: 10px;
}
#botones :last-child{
    background-color: #B9FF66;
    margin: auto;
    color: #191A23;
}
#botones :last-child:hover{
    background-color: #191a23;
    color: white;
    transition: 0.8s ease;
}
[type="color"]{
    width: 100%;
    padding: 20px 10px;
}

/* FOOTER */
footer{
    background-color: black;
    color: white;
    display: flex;
}
#comision{
    margin-top: 1%;
}
#redes a{
    margin: 0 .8rem;
    transition: 0.5s ease;
}
#redes img:hover{
    transform: scale(1.20);
}

@media screen and (max-width: 767px) {
    #logo{
        left: calc(50vw - 58px);
        top: 15px;
        position: absolute;
        z-index: 99;
    }
    .navbar{
        padding-top: 20px;
    }
    .navbar-toggler{
        border: none;
    }
    .navbar-toggler:focus{
        box-shadow: none;
    }
    .navbar-nav{
        margin-top: 30px;
    }
    .nav-item{
        margin: 1rem 0;
        padding: .5rem;
    }
    .texto_banner{
        margin-top: 1.5rem;
        padding: 1rem 2.5rem;
    }
    #carousel{
        width: 90%;
    }
    .verde{
        padding: 1rem 1.5rem;
        margin: 1rem;
    }
    .negro{
        padding: 1rem 1.5rem;
        margin: 1rem;
    }
    .gris{
        padding: 1rem 1.5rem;
        margin: 1rem;
    }
    #resena h2{
        text-align: center;
    }

    /* FOOTER */
    footer{
        align-items: center;
        flex-direction: column;
        gap: 10px;
        padding: 10px;
        margin-top: 1rem;
    }
}

@media screen and (min-width: 768px) {
    header{
        display: flex;
        justify-content: space-around;
        align-items: center;
        align-content: center;
    }

    #carousel{
        width: 80%;
    }
    .negro{
        margin-top: .8rem;
        margin-bottom: .8rem;
    }
    .verde{
        margin-top: .8rem;
        margin-bottom: .8rem;
    }
    .gris{
        margin-top: .8rem;
        margin-bottom: .8rem;
    }
    .uno{
        background-color: white;
        padding: 1rem 1.5rem;
        margin: 1rem;
    }
    .dos{
        background-color: white;
        margin: 1rem;
        padding: 1rem 1.5rem;
    }
    /* FOOTER */
    footer{
    height: 100px;
    justify-content: space-around;
    align-items: center;
    }
}


