/* HERO / PRIMER SECTION */
section:first-of-type {
    background-color: var(--bg-card);
    border-radius: 16px;
    padding: 3rem 2.5rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    gap: 1.5rem;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* TÍTULO PRINCIPAL */
section:first-of-type h1 {
    font-size: 3rem;
    color: var(--accent);
}

/* SUBTÍTULO */
section:first-of-type h2 {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-main);
}

/* DESCRIPCIÓN */
section:first-of-type p {
    max-width: 700px;
    font-size: 1rem;
}

/* SEGUNDA SECTION */
section:nth-of-type(2) {
    text-align: center;
    max-width: 700px;
}

section:nth-of-type(2) h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

section:nth-of-type(2) p {
    font-size: 1rem;
}