/* ==================================== */
/* Sección de portada
/* ==================================== */
.portada_text {
    width: 80%;
    width: clamp(300px, 80%, 600px);
    text-align: left;
}

.portada_text p {
    text-align: left;
}

.portada_text h1 {
    font-weight: 700;
    font-size: clamp(36px, 8vw, 60px);
    padding: 0;
    /* padding-bottom: 5vh; */
}

.portada_text h1 span {
    color: var(--color-t2);
}

.portada_text .btn-link {
    /* Box model */
    width: 30%;
    padding: var(--padding-button);
    /* Bordes */
    border: none;
    border-radius: var(--border-radius-button);
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 1); /* Añade una sombra sutil para darle relieve */
    /* Background */
    background-color: var(--lila-1);
    /* background-color: var(--color-t2); */

    /* Font */
    color: #000;
    text-decoration: none;
    font-weight: bold;
    /* Cursor */
    cursor: pointer;
}

.portada_text .btn-link:hover {
    opacity: 0.7;
}

.button_container_index .button_1 {
    width: 40%;
    width: clamp(100px, 40%, 150px);
}

/* ==================================== */
/* Secciones de Problemas y soluciones
/* ==================================== */
.quotes-grid {
    display: grid;
    grid-template-columns: 1fr;  /* Por defecto, una columna en pantallas pequeñas (móviles) */
    gap: 25px; /* Espacio entre las tarjetas */
}

/* Estilos de la Tarjeta de Cita (Quote Card) */
.quote-card, .quote-card_yellow {
    background: #ffffff;
    padding: 30px 25px 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Sombra suave */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    position: relative;
    border-top: 5px solid var(--lila-1); /* Borde superior para */
}

.quote-card_yellow {
    border-top: 5px solid var(--red-2); /* Borde superior para */
}

.image-container img {
    max-width: 717px;
}

/* ---------------------------*/
/* DESKTOP  */
/* ---------------------------*/
/* mobile first. Estas config son para Desktop */
@media only screen and (min-width: 1000px) {

    .quotes-grid {
        /* Cuatro columnas */
        grid-template-columns: repeat(3, 1fr);
    } 
}
