@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --degradado: linear-gradient(to right, #BB36E7, #C0138F);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #333;
    overflow-x: hidden !important;
}

img { max-width: 100%;}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

.contenedor {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin-bottom: 35px;
}

.header .logo {
    font-size: 26px;
    color: transparent;
    background: var(--degradado);
    background-clip: text;
    -webkit-background-clip: text;
}

.navegacion {
    display: flex;
    gap: 15px;
    align-items: center;
}

.navegacion a {
    font-size: 14px;
    color: #555;
}

.navegacion a.boton {
    background: #222;
    color: #fff;
    padding: 5px 14px;
    border-radius: 6px;
    font-weight: 500;
    transition: .3s transform;
}

.navegacion a.boton:hover {
    /* background: #444; */
    transform: scale(1.05);
}


.hero {
    min-height: calc(100dvh - 105px);
    /* background: #f2f2f2; */
}

.hero__contenido {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero__info {
    max-width: 550px;
    display: flex;
    flex-direction: column;
    gap:15px;
}

.hero__titulo {
    font-size: 64px;
    font-weight: 300;
    text-transform: uppercase;
}

.hero__desc {
    color: #555;
}

.botones__cta  {
    display: flex;
    gap: 10px;
    align-items: center;
}

.boton {
    background: #222;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    font-family: inherit;
    border: 0;
}

.boton--hero {
    background: var(--degradado);
}

.label-credito {
    font-size: 12px;
    color: #555;
    cursor: default;
}

@media (max-width: 900px) {
    .hero__imagen {
        display: none;
    }
    .hero__info {
        max-width: 100%;
        text-align: left;
        margin-top: 50px;
    }
    .hero__titulo {
        font-size: 42px;
    }
}


@media (max-width: 500px) {
    .header {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero {
        min-height: calc(100dvh - 150px);;
    }    

    .hero__titulo {
        font-size: 32px;
    }
    .hero__desc {
        font-size: 14px;
    }

    .boton--hero {
        padding: 10px 15px;
        font-size: 14px;
    }


}

/* Seccion */

.seccion__titulo {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    position: relative;
    margin-bottom: 30px;
}

.seccion__titulo::before {
    content: "";
    width: 200px;
    height: 3px;
    border-radius: 100px;
    background: var(--degradado);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%)
}

.caracteristicas {
    display: flex;
    gap: 20px;
    list-style: none;
}

.caracteristica {
    padding: 25px;
    /* border: 1px solid #e4e4e7; */
    border-radius: 8px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 100%;
}

.caracteristica > img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.caracteristica__titulo {
    font-weight: 600;
    font-size: 18px;
}

.caracteristica__desc {
    font-size: 14px;
    color: #555;
    text-align: center;
}


@media(max-width:900px) {
    .seccion__titulo {
        font-size: 24px;
    }
    .seccion__titulo::before {
        width: 150px;
    }

    .caracteristicas {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 500px) {
    .caracteristicas {
        grid-template-columns: repeat(1, 1fr);
    }
}

.seccion-adapta {
    margin-top: 100px;
    padding: 70px 0;
    background: #EEF4FB;
}

.seccion-adapta__contenido {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.seccion-adapta__titulo {
    font-size: 32px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 10px;
}

.seccion-adapta__desc {
    color: #555;
    font-size: 14px;
    max-width: 700px;
    text-align: center;
    margin: auto;
}

.seccion-adapta__motivos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
    max-width: 940px;
    list-style: none;
}

.seccion-adapta__motivos h4 {
    font-size: 16px;
    font-weight: 500;
}

.seccion-adapta__motivos p {
    font-size: 14px;
}

.boton--cta {
    background: var(--degradado);
    text-align: center;
    display: inline-flex;
}

@media (max-width: 500px) {
    .seccion-adapta__titulo {
        font-size: 24px;
    }

    .seccion-adapta__motivos {
        grid-template-columns: repeat(1, 1fr);
        gap: 25px;
    }
}

.footer {
    margin-top: 100px;
    background: #222;
    color: #fff;
    padding: 20px 0;
}

.footer__contenido {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__contenido > h3 {
    font-size: 22px;
    font-weight: 600;
}

.footer__contenido > p {
    font-size: 14px;
}

@media (max-width: 500px) {
    .footer__contenido {
        flex-direction: column;
    }
}


/* Login */

.login-box {
    max-width: 360px;
    width: 90%;
    margin: auto;
    /* padding: 25px; */
}

.login__titulo {
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 30px;
}

.formulario {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-grupo {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-grupo > label {
    font-weight: 500;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 2px;
}

.form-checkbox > label {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.input {
    padding: 10px 15px;
    font-family: inherit;
    font-size: 14px;
    border: 1px solid #e4e4e7;
    border-radius: 6px;
    outline: none;
    color: #555;
}

input::placeholder {
    color: rgba(0, 0, 0, .3);
}

.boton--login {
    font-size: 14px;
    transition: .3s opacity;
}

.boton--login:hover {
    opacity: .85;
}

.boton--login[disabled] {
    opacity: .4;
}

.login__texto {
    font-size: 12px;
    margin-top: 20px;
    color: #555;
}

.login__texto > a {
    color: transparent;
    background: var(--degradado);
    background-clip: text;
    -webkit-background-clip: text;
}