/* FONT FAMILY */

@font-face {
    font-family: 'Linkco-light';
    font-weight: 400;
    src: url('/linko_website/static/fonts/LynkcoType-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Linkco-regular';
    font-weight: 500;
    src: url('/linko_website/static/fonts/LynkcoType-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Linkco-medium';
    font-weight: 700;
    src: url('/linko_website/static/fonts/LynkcoType-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Linkco-bold';
    font-weight: 800;
    src: url('/linko_website/static/fonts/LynkcoType-Bold.ttf') format('truetype');
}

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

body{
    font-family: 'Linkco-regular', sans-serif;
    background-color: #000;
    color: #FFF;
}

/* CONTAINER */

.header-container,
.agenda-cita-taller-container,
.portal-home-banner-container,
.container{
    width: 1300px;
    margin: 0 auto;
}

@media only screen and (max-width: 1400px){
    .header-container,
    .agenda-cita-taller-container,
    .portal-home-banner-container,
    .container{
        width: 1100px !important;
    }
}

@media only screen and (max-width: 1200px){
    .header-container,
    .agenda-cita-taller-container,
    .portal-home-banner-container,
    .container{
        width: 850px !important;
    }
}

@media only screen and (max-width: 1000px){
    .header-container,
    .agenda-cita-taller-container,
    .portal-home-banner-container,
    .container{
        width: 700px !important;
    }
}

@media only screen and (max-width: 800px){
    .header-container,
    .agenda-cita-taller-container,
    .portal-home-banner-container,
    .container{
        width: 500px !important;
    }
}

@media only screen and (max-width: 600px){
    .header-container,
    .agenda-cita-taller-container,
    .portal-home-banner-container,
    .container{
        width: 450px !important;
    }
}

@media only screen and (max-width: 500px){
    .header-container,
    .agenda-cita-taller-container,
    .portal-home-banner-container,
    .container{
        width: 400px !important;
    }
}

@media only screen and (max-width: 420px){
    .header-container,
    .agenda-cita-taller-container,
    .portal-home-banner-container,
    .container{
        width: 90% !important;
    }
}

/* HEADER */

header{
    height: 100px;
    display: flex;
    align-items: center;
}

.header-container{
    justify-content: space-between;
    display: flex;
}

.header-container > figure{
    width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-container > figure img{
    width: 100%;
}

header .usuario{
    display: flex;
    align-items: center;
    gap: 20px;
}

header .usuario .usuario-nombre{
    text-align: right;
    color: #FFF;
    text-transform: capitalize;
}

header .usuario .usuario-nombre p{
    font-weight: 700;
    font-size: 18px;   
}

header .usuario .usuario-nombre span{
    font-weight: 400;
    font-size: 14px;
}

header .usuario .usuario-foto{
    height: 50px;
}

header .usuario .usuario-foto img{
    width: 51px;
    height: 50px;
    border-radius: 70px;
}

.header-container .menu-logo{
    display: none;
    width: 30px;
    height: 30px;
}

@media only screen and (max-width: 1400px){
    .header-container > figure{
        width: 200px;
    }
}

@media only screen and (max-width: 1200px){
    .header-container > figure{
        width: 180px;
    }
}

@media only screen and (max-width: 800px){
    header .usuario .usuario-nombre p{
        font-size: 16px;
    }

    header .usuario{
        display: none;
    }

    .header-container .menu-logo {
        display: flex;
    }
}

@media only screen and (max-width: 600px){
    
    .header-container > figure{
        width: 150px;
    }
}

/* BANNER PRINCIPAL HOME */

.portal-home-banner{
    height: 350px;
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}

.portal-home-banner .capa{
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 42%, rgba(0, 0, 0, 0.5) 60%);
}

.portal-home-banner .portal-home-banner-container{
    display: flex;
    align-items: center;
    height: 100%;
}

.portal-home-banner .portal-home-banner-container h2{
    font-family: 'Linkco-medium';
    text-transform: uppercase;
    font-size: 60px;
    color: #FFF;
    position: relative;
    z-index: 5;
}

@media only screen and (max-width: 1200px){
    .portal-home-banner .portal-home-banner-container h2{
        font-size: 50px;
        line-height: 60px;
    }
}

@media only screen and (max-width: 1000px){

    .portal-home-banner{
        height: 200px;
    }

    .portal-home-banner .portal-home-banner-container h2{
        font-size: 40px;
        line-height: 50px;
    }
}

@media only screen and (max-width: 800px){

    .portal-home-banner{
        background-size: cover;
    }

    .portal-home-banner .portal-home-banner-container h2 {
        line-height: 45px;
        width: 100%;
        text-align: center;
    }

    .portal-home-banner .capa{ 
        background: none;
        background-color: rgba(0, 0, 0, 0.6);
    }
}

@media only screen and (max-width: 600px){
    .portal-home-banner .portal-home-banner-container h2{
        font-size: 30px;
        line-height: 35px;
    }
}

/* PORTAL BOTONES */

.portal-home-buttons{
    margin: 3% 0;
}

.portal-home-buttons .portal-home-buttons-container{
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 50px;
}

.portal-home-buttons .portal-home-buttons-container a{
    font-family: 'Linkco-medium';
    width: 24%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #1ef1c6;
    text-transform: uppercase;
    border: 3px solid #1ef1c6;
    height: 125px;
    border-radius: 0 0 0 20px;
    padding: 0 2%;
    text-decoration: none;
}

.portal-home-buttons .portal-home-buttons-container a p{
    font-size: 20px;
}

@media only screen and (max-width: 1200px){
    .portal-home-buttons .portal-home-buttons-container a p{
        font-size: 18px;
    }

    .portal-home-buttons .portal-home-buttons-container{
        justify-content: space-between;
    }

    .portal-home-buttons .portal-home-buttons-container a{
        width: 28%;
        height: 120px;
    }

    .portal-home-buttons .portal-home-buttons-container a figure img{
        width: 65px;
    }
}

@media only screen and (max-width: 1000px){

    .portal-home-buttons .portal-home-buttons-container{
        gap: 0;
    }

    .portal-home-buttons .portal-home-buttons-container a{
        width: 32%;
        height: 110px;
        gap: 15px;
    }
}

@media only screen and (max-width: 800px){
    .portal-home-buttons .portal-home-buttons-container a{
        flex-direction: column;
        height: 170px;
        gap: 10px;
    }

    .portal-home-buttons .portal-home-buttons-container a figure img{
        width: 60px;
    }

    .portal-home-buttons .portal-home-buttons-container a p{
        height: 45px;
        text-align: center;
    }
}

@media only screen and (max-width: 600px){

    .portal-home-buttons{
        margin: 5% 0;
    }

    .portal-home-buttons .portal-home-buttons-container{
        flex-direction: column;
        gap: 20px;
    }

    .portal-home-buttons .portal-home-buttons-container a{
        width: 100%;
        flex-direction: row;
        height: 70px;
    }

    .portal-home-buttons .portal-home-buttons-container a figure img{
        width: 40px;
    }

    .portal-home-buttons .portal-home-buttons-container a p{
        height: auto;
    }
}

@media only screen and (max-width: 500px){

    .portal-home-buttons .portal-home-buttons-container{
        gap: 15px;
    }

    .portal-home-buttons .portal-home-buttons-container a{
        height: 60px;
    }

    .portal-home-buttons .portal-home-buttons-container a figure img {
        width: 30px;
    }
}

/* SERVICIO ACTIVO */

.active-service .active-service-container h3{
    font-size: 40px;
    text-transform: uppercase;
    color: #FFF;
    font-weight: 600;
    text-align: center;
}

.active-service .active-service-container .service-data{
    width: 65%;
    margin: 5% auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.active-service .active-service-container .service-data .data{
    display: flex;
    align-items: center;
    gap: 20px;
}

.active-service .active-service-container .service-data .data .info{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.active-service .active-service-container .service-data .data .info span{
    text-transform: uppercase;
    font-size: 20px;
}

.active-service .active-service-container .service-data .service-buttons{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.active-service .active-service-container .service-data .service-buttons a{
    text-decoration: none;
    color: #1ef1c6;
    font-size: 18px;
    text-transform: capitalize;
    height: 50px;
    width: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #1ef1c6;
    border-radius: 0 0 0 20px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.active-service .active-service-container .service-data .service-buttons a:hover{
    background-color: #1cb697;
    border-color: #1cb697;
    color: #FFF;
}

.active-service .active-service-container .service-status-bar{
    position: relative;
    margin: 0 auto 50px auto;
    width: 85%;
}

.active-service .active-service-container .service-status-bar .status{
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
    bottom: -35px;
    z-index: 2;
}

.active-service .active-service-container .service-status-bar .status .status-step{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.active-service .active-service-container .service-status-bar .status .status-step svg{
    width: 50px;
    height: 50px;
    margin: 10px 0;
}

.active-service .active-service-container .service-status-bar .status .status-step p{
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    color: #AAA;
}

.active-service .active-service-container .service-status-bar .status .status-step .service-point{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.active-service .active-service-container .service-status-bar .status .status-step .service-point .line{
    height: 45px;
    width: 3px;
    background-color: #FFF;
}

.active-service .active-service-container .service-status-bar .status .status-step .service-point .point{
    width: 18px;
    height: 18px;
    background-color: #FFF;
    border-radius: 50px;
}

.service-status-bar .status .status-step svg path{
    fill: #AAA;
}

/* Estados activos */
.service-status-bar .status .status-step.active svg path {
    fill: #1ef1c6;
}

.service-status-bar .status .status-step.active p {
    color: #FFF !important;
}

/* Estados completados */
.service-status-bar .status .status-step.completed svg path {
    fill: #1ef1c6;
}

.service-status-bar .status .status-step.completed p {
    color: #FFF !important;
}

.active-service .active-service-container .service-status-bar .bar{
    width: 100%;
    height: 55px;
    background-color: #AAA;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.active-service .active-service-container .service-status-bar .bar .bar-bg{
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, #1ef1c6, #00d4ec, #00b0ff, #0082ff, #5634ed);
}

@media only screen and (max-width: 1200px){
    .active-service .active-service-container .service-data{
        width: 80%;
    }

    .active-service .active-service-container .service-data .data .info span{
        font-size: 18px;
    }

    .active-service .active-service-container .service-data .service-buttons{
        gap: 15px;
    }

    .active-service .active-service-container .service-status-bar .status .status-step p{
        font-size: 18px;
    }
}

@media only screen and (max-width: 1000px){

    .active-service{
        margin-top: 5%;
    }

    .active-service .active-service-container h3{
        font-size: 30px;
    }

    .active-service .active-service-container .service-data,
    .active-service .active-service-container .service-status-bar {
        width: 100%;
    }
}

@media only screen and (max-width: 800px){
    .active-service .active-service-container h3 {
        font-size: 25px;
    }

    .active-service .active-service-container .service-data .service-buttons a{
        font-size: 16px;
        height: 40px;
    }

    .active-service .active-service-container .service-data .data .info span {
        font-size: 16px;
    }

    .active-service .active-service-container .service-data .data figure img{
        width: 60px;
    }

    .active-service .active-service-container .service-status-bar .status{
        bottom: -30px;
    }

    .active-service .active-service-container .service-status-bar .status .status-step svg{
        width: 40px;
        height: 40px;
    }

    .active-service .active-service-container .service-status-bar .status .status-step p {
        font-size: 16px;
    }

    .active-service .active-service-container .service-status-bar .status .status-step .service-point .line{
        width: 2px;
        height: 40px;
    }

    .active-service .active-service-container .service-status-bar .status .status-step .service-point .point{
        width: 12px;
        height: 12px;
    }

    .active-service .active-service-container .service-status-bar .bar{
        height: 50px;
    }
}

@media only screen and (max-width: 600px){
    .active-service .active-service-container .service-data{
        flex-direction: column;
        gap: 30px;
    }

    .active-service .active-service-container .service-data .data figure img{
        width: 40px;
    }

    .active-service .active-service-container .service-data .service-buttons{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
}

@media only screen and (max-width: 500px){

    .active-service .active-service-container .service-data .data figure img{
        width: 30px;
    }

    .active-service .active-service-container .service-status-bar .status .status-step{
        gap: 10px;
    }

    .active-service .active-service-container .service-status-bar .status .status-step p {
        font-size: 12px;
    }

    .active-service .active-service-container .service-status-bar .status .status-step svg {
        width: 30px;
        height: 30px;
    }

}

@media only screen and (max-width: 400px){

    .active-service .active-service-container h3 {
        font-size: 22px;
    }

    .active-service {
        margin-top: 10%;
    }

    .active-service .active-service-container .service-data .service-buttons{
        width: 100%;
    }
}

/* FOOTER */

footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #131313;
    padding: 2% 0;
}

footer .footer-border{
    width: 1500px;
    height: 1px;
    background-color: gray;
    margin: 0 auto;
}

footer .footer-container{
    display: flex;
    flex-direction: column;
}

footer .footer-container .footer-top{
    width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;

    position: relative;
}

footer .footer-container .footer-top nav{
    display: flex;
    gap: 80px;
    margin-bottom: 4%;
}

footer .footer-container .footer-top nav ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer .footer-container .footer-top nav ul li{
    list-style: none;
}

footer .footer-container .footer-top nav ul li a{
    text-decoration: none;
    color: gray;
    font-size: 18px;
}

footer .footer-container .footer-top nav ul li h3{
    font-size: 18px;
}

footer .footer-container .footer-top .footer-social-media{
    display: flex;
    gap: 8px;
}

footer .footer-container .footer-top .footer-social-media a{
    background-color: #FFF;
    width: 35px;
    height: 35px;
    border-radius: 70px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .footer-container .footer-top .footer-social-media a svg{
    width: 20px;
    height: 20px;
}

footer .footer-container .footer-top .arrow-up{
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    right: 0;
    bottom: 50px;
}

footer .footer-container .footer-top .arrow-up a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .footer-container .footer-top .arrow-up a figure{
    width: 100%;
}

footer .footer-container .footer-top .arrow-up .icon-arrow-up{
    width: 100%;
}

footer .footer-container .footer-top .arrow-up .icon-arrow-up img{
    width: 100%;
}

footer .footer-container .footer-bottom{
    width: 1300px;
    margin: 0 auto;
    margin-top: 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .footer-container .footer-bottom .footer-logos{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

footer .footer-container .footer-bottom .footer-logos .logos{
    display: flex;
    align-items: center;
    gap: 10px
}

footer .footer-container .footer-bottom .footer-logos .logos figure{
    height: 30px;
}

footer .footer-container .footer-bottom .footer-logos .logos figure img{
    height: 100%;
}

footer .footer-container .footer-bottom > p{
    font-size: 18px;
    color: gray;
    text-align: center;
}

@media only screen and (max-width: 1600px){

    footer .footer-border{
        width: 1300px;
    }
}

@media only screen and (max-width: 1400px){

    footer .footer-border{
        width: 1200px;
    }

    footer .footer-container .footer-top,footer .footer-container .footer-bottom{
        width: 1100px;
    }
}

@media only screen and (max-width: 1300px){

    footer .footer-border{
        width: 1100px;
    }
}

@media only screen and (max-width: 1200px){
    footer .footer-border{
        width: 850px;
    }

    footer .footer-container .footer-top,footer .footer-container .footer-bottom{
        width: 850px;
    }

    footer .footer-container .footer-top .arrow-up{
        width: 50px;
        height: 50px;
    }

    footer .footer-container .footer-bottom .footer-logos .logos figure{
        height: 20px;
    }

}

@media only screen and (max-width: 1000px){

    footer .footer-border,
    footer .footer-container .footer-top,footer .footer-container .footer-bottom{
        width: 700px;
    }

    footer{
        padding: 5% 0;
    }
}

@media only screen and (max-width: 800px){

    footer .footer-border,
    footer .footer-container .footer-top,footer .footer-container .footer-bottom{
        width: 500px;
    }

    footer .footer-container .footer-top,
    footer .footer-container .footer-top nav{
        flex-direction: column;
    }

    footer .footer-container .footer-top{
        padding-bottom: 30px;
    }

    footer .footer-container .footer-top nav{
        gap: 30px;
        margin-bottom: 30px;
    }

    footer .footer-container .footer-top .arrow-up{
        bottom: 30px;
        width: 40px;
        height: 40px;
    }


    footer .footer-container .footer-bottom .footer-logos .logos figure{
        height: 15px;
    }
}

@media only screen and (max-width: 600px){

    footer .footer-border{
        display: none;
    }

    footer .footer-container .footer-top,footer .footer-container .footer-bottom{
        width: 450px;
    }

    footer .footer-container .footer-top nav ul li{
        text-align: center;
    }

    footer .footer-container .footer-top .footer-social-media{
        gap: 10px;
    }

    footer .footer-container .footer-bottom{
        flex-direction: column;
        gap: 10px;
    }

    footer .footer-container .footer-top,
    footer .footer-container .footer-bottom{
        align-items: center;
    }

    footer .footer-container .footer-bottom .footer-logos .logos figure{
        margin-bottom: 5%;
    }
    
}

@media only screen and (max-width: 500px){
    footer .footer-border,
    footer .footer-container .footer-top,footer .footer-container .footer-bottom{
        width: 90%;
    }

    footer .footer-container .footer-top .arrow-up{
        right: -90px;
        bottom: -80px;    
    }
}

@media only screen and (max-width: 400px){
    footer .footer-container .footer-top .arrow-up{
        display: none; 
    }
}