:root {
    --blanco: #FFFFFF;
    --oscuro: #212121;
    --primario: #A3B565;
    --primarioClaro: #FDF8E2;
    --secundario: #504E76;
    --secundarioClaro: #C4C3E3;
    --gris: #E6E6E4;
    --grisClaro: #F9F5EF;
    --grisOscuro: #75706F;
    --grisEnfasis: #4f4c4c;
    --box-shadow: rgb(0 0 2 / 35%) 0rem 2rem 3rem -1rem;
    /* casopractico */
    --naranja: #DD7649;
    --verde: #5B9279;
    /* PATITAS UNIDAS */
    --verdeOscuro: #4F692C;
    --morado: #9A4D9E;
    --amarillo: #F6BE17;
    --verdeClaro: #92B244;
    --azul: #668DC0;
    --cafe: #89543F;
    --naranjaPU: #F17B21;

} 
/* GLOBALES */
html {
    font-size: 62.5%;
    box-sizing: border-box; /* Hack para Box Model */
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}
*, 
*:before, 
*:after {
    box-sizing: inherit;
}
body {
    font-size: 16px; /* 1rem = 10px */
    font-family: 'Krub', sans-serif;
    background-image: linear-gradient(to top, var(--grisClaro), var(--blanco) 100%);
}
header {
    display: flex;
    justify-content: center;
    align-items: center;
}
.contenedor {
    max-width: 120rem;
    margin: 0 auto 2rem auto;
}
.contenedor-sobremi {
    max-width: 120rem;
    margin: 2rem auto 2rem auto;
}
.contenedor-testimonios {
    max-width: 120rem;
    margin: 2rem auto 2rem auto;
}
.contenedor-nav {
    max-width: 120rem;
    margin: 0 auto;
}
.contenedor-logo {
    margin: 1rem;
}
.logo {
    height: 8rem;
}
@media (min-width: 678px) {
    .logo {
        height: 10rem;
    }    
}
.boton {
    /*background-color: var(--verdeOscuro);*/
    color: var(--blanco);
    padding: 1rem 3rem;
    margin-top: 1rem;
    font-size: 2rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: .5rem;
    text-align: center;
    border: none;
}
@media (min-width: 768px) {
    .boton {
        width: auto;
    }
}
.boton:hover {
    cursor: pointer;
}
.boton-cv .boton:hover,
.formulario .boton:hover {
    /*background-color: var(--morado);*/
    transition: .7s;
}
.boton-cv {
    display: flex;
    justify-content: center;
}
.sombra {
    -webkit-box-shadow: 0px 5px 15px 0px rgba(112,112,112,1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(112,112,112,1);
    box-shadow: 0px 5px 15px 0px rgba(112,112,112,1);
    background-color: var(--blanco);
    padding: 2rem;
    border-radius: 1rem;
}
/* TIPOGRAFÍA */
h1 {
    font-size: 4rem;
}
h2 {
    font-size: 3rem;
}
@media (max-width: 600px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.5rem;
    }
}
h3 {
    font-size: 2rem;
}
h4 {
    font-size: 1.8rem;
}
h1, h2, h3 {
    text-align: center;
}
p {
    margin: 0;
}
/* TITULOS */ 
.titulo span {
    font-size: 2rem;
}
/* UTILIDADES */
.w-sm-100 {
    width: 100%;
}
@media (min-width: 768px) {
    .w-sm-100 {
        width: auto;
    }
}
.flex {
    display: flex;
}
.alinear-derecha {
    justify-content: flex-end;
}
.centrar-texto {
    text-align: center;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
}
.negritas {
    font-weight: bold;
}
.italic {
    font-style: italic;
}
.line-height {
    line-height: 1.5;
}
.espaciado--arriba {
    margin-top: 7rem;
}
.espaciado--abajo {
    margin-bottom: 3.5rem;
}
/* SCROLL PROGRESS */
#progress {
    background-color: var(--primario);
    position: fixed;
    bottom: 2rem;
    right: 1rem;
    height: 6rem;
    width: 6rem;
    display: none;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1;
}
#progress-value {
    display: block;
    height: calc(100% - 1.5rem);
    width: calc(100% - 1.5rem);
    background-color: var(--blanco);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 3.5rem;
    color: #001a2e;
}
/* NAVEGACIÓN PRINCIPAL */
.nav-bg {
    background-color: var(--secundario);
}
.navegacion-principal {
    display: flex;
    flex-direction: column;
}
@media (min-width: 768px) {
    .navegacion-principal {
        flex-direction: row;
        justify-content: space-between;
    }
}
.navegacion-principal a {
    display: block;
    text-align: center;
    color: var(--blanco);
    text-decoration: none;
    font-size: 2rem;
    font-weight: bold;
    padding: 1rem;
}
.navegacion-principal a:hover {
    background-color: var(--primario);
}
/* FOOTER */
.footer {
    text-align: center;
    background-color: var(--secundario);
    padding-top: 3rem;
    padding-bottom: 0.2rem;
}
.footer-logo-blanco {
    height: 65px;
    width: 70px;
    margin-bottom: 2rem;
}
.footer-texto {
    color: var(--blanco);
    font-weight: bold;
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 3rem;
}
.iconos-redes-sociales {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}
.iconos-redes-sociales a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin: 10px;
    border: 2px solid white;
    border-radius: 50%;
    transition: all 0.2s ease-in;
}
.iconos-redes-sociales svg {
    font-size: 1.5rem;
    transition: all 0.2s ease-in;
}
.iconos-redes-sociales a:hover {
    border: 4px solid var(--primario);
}
.footer-derechos {
    color: var(--blanco);
    margin-bottom: 1rem;
}
/* CASO PRACTICO - PATITAS UNIDAS */
.casopractico h3,
.casopractico h4 {
    color: var(--grisEnfasis);
}
.casopractico img {
    width: 100%;
}
.casopractico .casopractico--hero .large-image {
    display: block;
}
.casopractico .casopractico--hero .mobile-image {
    display: none;
}
@media (max-width: 600px) {
    .casopractico .casopractico--hero .large-image {
        display: none;
    }
    .casopractico .casopractico--hero .mobile-image {
        display: block;
    }
}
.casopractico .dos-columnas {
    padding: 2rem 3rem 3rem 3rem;
}
.casopractico .descripcion--mirol {
    padding: 0 3rem 3rem 3rem;
}
.casopractico .descripcion .descripcion--list {
    list-style-type: none;
    padding: 0;
}
.casopractico .descripcion .descripcion--list li {
    counter-increment: lista-counter; /* Incrementa el contador personalizado para cada ítem de la lista */
}
.casopractico .descripcion .descripcion--list li:before {
    content: counter(lista-counter) ")"; /* Agrega el contador personalizado seguido de un paréntesis */
    margin-right: 8px; /* Espacio entre el número y el texto del ítem de la lista */
    font-weight: bold; /* Hace que el número sea negrita, si lo deseas */
    color: var(--verdeClaro); /* Cambia el color del número */
}
@media (min-width: 800px) {
    .casopractico .dos-columnas {
        display: flex;
        justify-content: space-between;
    }
    .casopractico .descripcion {
        flex: 0 0 calc(50% - 3rem);
    }
    .casopractico .dos-columnas {
        padding: 2rem 10rem 3rem 10rem;
    }
    .casopractico .descripcion--mirol {
        padding: 0 15rem 3rem 15rem;
    }
}
.contenedor__parrafo {
    padding: 0 10rem 3rem 10rem;
}
@media (max-width: 600px) {
    .contenedor__parrafo {
        text-align: center;
        padding: 0 10rem 3rem 10rem;
    }
}
.preguntas__contenedor {
    padding: 0 12rem 3rem 12rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    font-style: italic;
    color: var(--grisEnfasis);
}
.preguntas__box {
    display: grid;
    place-items: center;
    border: 4px solid var(--morado);
    padding: 1.5rem;
}
.preguntas__box:hover {
    border: 4px solid var(--amarillo);
    transition: ease-in .5s;
}
@media (max-width: 768px) {
    .contenedor__parrafo {
        padding: 0 2rem 3rem 2rem;
        text-align: start;
    }
    .preguntas__contenedor {
        padding: 0 2rem 3rem 2rem;
        grid-template-columns: repeat(1, 1fr);
    }
    .preguntas__box {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}
.sitemap img {
    width: 90%;
    height: auto;
}
@media (max-width: 600px) {
    .sitemap img {
        width: 35rem;
        height: auto;
    }
}
.usuarios-persona {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--azul);
    flex-wrap: wrap;
}
.persona__card {
    position: relative;
    width: 48rem;
    height: auto;
    background: var(--blanco);
    border-radius: 0.5rem;
    overflow: hidden;
    margin: 1.5rem 2rem;
}
.persona__card .persona__header {
    height: 14rem;
    width: 100%;
    position: relative;
}
.persona__card .persona__header .persona__circle {
    position: absolute;
    width: 48rem;
    height: 30rem;
    border-radius: 50%;
    background: var(--morado);
    bottom: 0;
}
.persona__header .persona__img {
    width: 15rem;
    height: 15rem;
    position: absolute;
    background: var(--blanco);
    padding: 0.5rem;
    border-radius: 50%;
    bottom: -4rem;
    left: 50%;
    transform: translate(-50%);
}
.persona__header .persona__img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
@media (max-width: 600px) {
    .persona__card {
        width: 100%;
        height: auto;
    }
    .persona__card .persona__header .persona__circle {
        width: 100%; /* Ajustar el ancho para dispositivos móviles */
        height: 30rem;
    }
    .persona__header .persona__img {
        width: 65%; /* Ajustar según sea necesario */
        height: auto;
        bottom: -7rem; /* Ajustar según sea necesario */
    }
    .persona__descripcion h3 {
        margin-top: 4.5rem;
    }
}
.persona__descripcion {
    padding: 4rem 2rem 2rem 2rem;
}
.persona__descripcion h3 {
    color: var(--cafe);
}
.persona__descripcion p {
    text-align: start;
    line-height: 1.5;
}
.competencia .competencia__img {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}
.competencia .competencia__img img {
    width: 15%;
}
.userflow img {
    width: 100%;
}
@media (max-width: 600px) {
    .competencia .competencia__img {
        gap: 1rem;
    }
    .competencia .competencia__img img {
        width: 22%;
    }
}
.casopractico__boton .boton {
    background: var(--verdeOscuro);
    font-size: 1.5rem;
}
.casopractico__boton .boton:hover {
    background-color: var(--morado);
    transition: .7s;
}
.refinar-diseño .contenedor__video img {
    width: 80%;
    height: auto;
}
.refinar-diseño img {
    width: 80%;
}
@media (max-width: 600px) {
    .refinar-diseño .contenedor__video img {
        width: 30rem;
    }
    .refinar-diseño img {
        width: 100%;
    }
}
/* Gallery */
.wireframes__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.digital-wireframes__gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.wireframes__gallery img,
.digital-wireframes__gallery img {
    width: 100%;
    height: auto;
    border: 1px solid var(--grisEnfasis);
}
.wireframes__gallery--mobile {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.digital-wireframes__gallery--mobile {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}
.wireframes__gallery--mobile img,
.digital-wireframes__gallery--mobile img {
    width: 100%;
    height: auto;
    margin-top: 4rem;
    border: 1px solid var(--grisEnfasis);
}
@media screen and (max-width: 768px) {
    .wireframes__gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 480px) {
    .wireframes__gallery {
        grid-template-columns: 1fr;
    }
    .wireframes__gallery--mobile {
        grid-template-columns: repeat(2, 1fr);
    }
}