* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;

}


html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    background-color: white;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-bottom: 1px darkgray solid;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: white;
    width: 100%;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1600px; 
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

header .logo span {
    font-weight: 700;
}

.logo{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}



.nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-center nav {
    display: flex;
    gap: 15px;

}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-actions nav {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.nav-actions .register {
    background-color: black;
    color: white;
    padding: 10px 15px 10px 15px;
    margin: 5px 5px 5px 0px;
    border-radius: 5px;
    border: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}
.nav-actions .register:hover {
    background-color: #333
}

a{
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 15px;
}


.logo img {
    width: 30px;
    height: 30px;
}


.nav-actions-profile{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.nav-actions-profile .profile {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: white;
    color: rgb(0, 0, 0);
    padding: 10px 15px 10px 15px;
    margin: 5px 5px 5px 0px;
    border-radius: 5px;
    border: 0;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    gap: 10px;
}

.nav-actions-profile .profile:hover {
    background-color: #e7e7e7
}

.nav-actions-profile .profile img {
    width: 15px;
    height: 15px;
}



.nav-actions-profile .exit {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: white;
    color: rgb(233, 55, 55);
    padding: 10px 15px 10px 15px;
    margin: 5px 5px 5px 0px;
    border-radius: 5px;
    border: 0;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    gap: 10px;
}
.nav-actions-profile .exit:hover {
    background-color: #f3e5e5
}

.nav-actions-profile .exit img {
    width: 15px;
    height: 15px;
}






















main {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto;
    min-width: 100%;
    flex: 1;
    min-height: 100vh;
    flex-direction: column;
    padding: 0;
    background-color: #f0f0f0;
    font-family: 'Inter', sans-serif;
    gap: 30px;

}

.head-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0px 0px;
    margin-top: 110px;
    background-color: #f0f0f0;
}

.section-container{
    display: flex;
    flex-direction: column;
    margin: 0px auto;
    max-width: 900px;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
}

.section-container h3 {
    padding-top: 15px;
    font-weight: 700;
    font-size: 36px;
    text-align: center;
}

.section-container p {
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    color: #686666;
    line-height: 1.5;
}

.section-container .ready-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    color: white;
    padding: 10px 20px;
    gap: 10px;
    border-radius: 6px;
    border: 0;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 40px;
    margin-top: 15px;
}
.ready-btn span {
    font-weight: 500;
}

.section-container .ready-btn:hover {
    background-color: #333
}
.ready-btn img {
    width: 15px;
    height: 15px;
}


.steps-container {
    display: flex;
    background-color: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 0px 0px;
    gap: 60px;
    padding-bottom: 60px;
}
.steps-container h2 {
    padding-top: 70px;
    font-weight: 700;
    font-size: 32px;
    text-align: center;
}
.step-model-one{
    display: flex;
    flex-direction: row-reverse;
    margin: 0px auto;
    max-width: 900px;
    justify-content:flex-end;
    align-items: center;
    gap: 60px;
    padding: 0px 0px;
}
.step-model-one img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: none;
    background-color: #f0f0f0;
    padding: 25px;
    margin: 0px 80px;
}

.step-container-model {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
}

.step-container-model h2 {
    padding: 0px;
    font-weight: 700;
    font-size: 24px;
    text-align: left;
    line-height: 1.3;
}
.step-container-model p {
    font-weight: 400;
    font-size: 16px;
    text-align: left;
    color: #686666;
    line-height: 1.3;
}

.step-model-two {
    display: flex;
    margin: 0px auto;
    max-width: 900px;
    justify-content:flex-start;
    align-items: center;
    gap: 60px;
    padding: 0px 0px;
}

.step-model-two img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: none;
    background-color: #f0f0f0;
    padding: 25px;
    margin: 0px 80px;
}

.step-container-model {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
}

.step-container-model h2 {
    padding: 0px;
    font-weight: 700;
    font-size: 24px;
    text-align: left;
    line-height: 1.3;
}
.step-container-model p {
    font-weight: 400;
    font-size: 16px;
    text-align: left;
    color: #686666;
    line-height: 1.3;
}




.caracteristicas{
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 25px;
    padding-bottom: 60px;
}

.caracteristicas .caracteristicas-titulos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;

}

.caracteristicas .caracteristicas-titulos h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 35px;
    margin: 0px 0px 20px 0px;
}

.caracteristicas .caracteristicas-titulos div {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: white;
    background-color: black;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 5px 10px 5px 10px;
}

.caracteristicas .caracteristicas-titulos span{
    color: rgb(151, 148, 148);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
}




.caracteristicas-item {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 20px;
}


.caracteristicas-item .item{
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 33.33%;
    height: 200px;
}

.caracteristicas-item .item img {
    width: 50px;
    height: 50px;
}

.caracteristicas-item .item h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin: 0px;
    margin-top: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.caracteristicas-item .item p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    margin: 0px;
    text-align: center;
    color: rgb(151, 148, 148);
    padding: 0px 20px 0px 20px;
}

.future-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background-color: white;
    width: 100%;
    padding: 50px 0px;
    border: 1px solid #d8d6d6;
}

.header-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0px auto;
    max-width: 700px;
    gap: 25px;
}

.header-features h2 {
    font-weight: 700;
    font-size: 32px;
}

.header-features span  {
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    color: #686666;
    line-height: 1.3;
}

.body-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0px auto;
    max-width: 700px;
    gap: 15px;
    background-color: #f0f0f0;
    padding: 30px 30px;
    border-radius: 10px;
    border: none;
}

.body-features h3 {
    font-weight: 700;
    font-size: 20px;
}

.body-features p {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #686666;
    line-height: 1.3;
}



@media (max-width: 768px) {
    *{
        text-align: center;
    }

    header {
        display: flex;
        flex-direction: column;
    }

    .header-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 0 10px;
    }
    .nav-center {
        white-space: nowrap;
    }
    

    main {
        padding-top: 110px;
        display: flex;
        flex-direction: column;
    }
    
    /* Arreglar título tapado por header en móviles */
    main h1 {
        scroll-margin-top: 120px;
        margin-top: 60px;
    }
    .head-container {
        padding: 0 10px;
    }

    .section-container {
        max-width: 100%;
        padding: 0 10px;
    }

    .steps-container {
        padding: 0 10px 15px 10px;
        gap: 30px;
    }

    .step-model-one,
    .step-model-two {
        flex-direction: column; 
        max-width: 100%;
        gap: 20px;
        padding: 0 10px;
    }

    .step-model-one img,
    .step-model-two img {
        margin: 0;
        width: 80px; 
        height: 80px;
        padding: 15px;
    }

    .step-container-model {
        text-align: center;
    }

    .caracteristicas-item {
        flex-direction: column; 
        gap: 30px;
    }

    .caracteristicas-item .item {
        min-width: 100%;
        height: auto;
        padding: 20px;
    }

    .future-features {
        padding: 20px 10px;
    }

    .body-features {
        padding: 20px;
        max-width: 100%;
    }



}


