.encabezado {
    font-family: 'Playfair Display', serif;

}

p {
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: rgb(50, 50, 50);
}

.subtitulo {
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: #ffffff;
}

.custom-ul li {
    position: relative;
    padding-left: 1.5em;
}


.custom-ul li::before {
    content: "🧠"; /* o cualquier otro símbolo */
    position: absolute;
    left: 0;
    color: #A45152;
}

.contenedorCuadro {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    display: grid;
    gap: 3.5rem;
    align-items: stretch;
  }

.cuadro {
    position: relative;
    text-align: center;
    border-width: 2px;
    border-color: #A45152;
    padding: 1.5rem; /* p-6 → 1.5rem = 24px */
    border-radius: 0.25rem; /* rounded → 4px */
    transition: transform 300ms ease-in-out;  
}

div.cuadro#formulario {
    transition: none !important;
    background-color: white;
}
@media (max-width: 639px) {
    div.cuadro#formulario {
        padding: 1rem;
    }
}

.cuadro:hover {
    transform: scale(1.05);

}

div.cuadro#formulario:hover {
    transform: none !important;
}

.cuadroBoton {
    position: absolute;
    left: 50%;
    bottom: -1.25rem;
    transform: translate(-50%);
    background-color: #A45152;
    color: white;
    padding-left: 1rem; /* px-4 → 16px */
    padding-right: 1rem;
    padding-top: 0.5rem; /* py-2 → 8px */
    padding-bottom: 0.5rem;
    border-radius: 0.25rem; /* rounded → 4px */
    transition: all 300ms;
    font-family: 'Playfair Display', serif;
    font-size: 2rem; /* text-lg → 20px */
    font-weight: bold;
    letter-spacing: 1px;
}

.cuadroBoton:hover {
    background-color: #8E3E44;
}

.banner {
    background-color: #A45152;
    color: #ffffff;
    padding: 2.5rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: bold;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.cuadroTitulo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #A45152;
    text-align: center;
    margin-bottom: 1rem;

}

.icono {
    display: block;
    width: 5rem;
    color:#A45152;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.cuadroTexto {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    background-color: #A45152;
    padding: 0.5rem;
    border-radius: 0.25rem; /* rounded → 4px */
    text-align: center;
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1.5rem;
}

.texto {
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: rgb(50, 50, 50);
}

.pregunta {
    font-family: 'Playfair Display', serif !important;
    color: #A45152;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-family: 'Playfair Display', serif !important;

}
