/* Homepage – Como apostar cluster */

.home-section-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: var(--al-space-3);
    color: var(--al-primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
}

.home-section-eyebrow--dark {
    color: rgba(231, 201, 79, 0.9);
}

.home-guides {
    padding: clamp(1.5rem, 2.1vw, 2.35rem);
    border: 1px solid var(--al-border);
    border-radius: var(--al-radius-xl);
    background: var(--al-surface);
    box-shadow: var(--al-shadow-sm);
}

.home-guides__head,
.home-guides__intro,
.home-guides__grid,
.home-guides__card,
.home-guides__copy,
.home-guides__meta {
    min-width: 0;
}

.home-guides__head {
    display: flex;
    flex-direction: column;
    gap: var(--al-space-5);
    margin-bottom: var(--al-space-6);
}

.home-guides__intro {
    max-width: 43rem;
}

.home-guides__intro h2 {
    font-family: var(--al-font-sans);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: 0;
    color: var(--al-text);
}

.home-guides__intro p {
    margin-top: var(--al-space-3);
    color: var(--al-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.home-guides__cta {
    align-self: flex-start;
}

.home-guides__grid {
    display: grid;
    gap: var(--al-space-4);
}

.home-guides__card {
    display: flex;
    flex-direction: column;
    gap: var(--al-space-4);
    min-height: 100%;
    padding: var(--al-space-5);
    border: 1px solid var(--al-border);
    border-radius: var(--al-radius-lg);
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.home-guides__card:hover,
.home-guides__card:focus-visible {
    border-color: rgba(37, 99, 235, 0.2);
    background: #ffffff;
    box-shadow: var(--al-shadow-md);
    transform: translateY(-2px);
}

.home-guides__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: var(--al-radius-md);
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.06) 0%, rgba(248, 250, 252, 0.96) 100%);
    color: var(--al-primary);
}

.home-guides__icon-svg {
    width: 1.15rem;
    height: 1.15rem;
    flex: 0 0 auto;
}

.home-guides__copy {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.home-guides__copy h3 {
    color: var(--al-text);
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.24;
}

.home-guides__copy p {
    color: var(--al-muted);
    font-size: 0.94rem;
    line-height: 1.65;
}

.home-guides__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--al-space-3);
    margin-top: auto;
    padding-top: var(--al-space-2);
    color: #475569;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
}

.home-guides__meta-icon {
    width: 0.9rem;
    height: 0.9rem;
    flex: 0 0 auto;
}

@media (min-width: 700px) {
    .home-guides__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .home-guides__head {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }

    .home-guides__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .home-guides {
        padding: var(--al-space-5);
    }

    .home-guides__intro h2 {
        font-size: clamp(1.85rem, 10vw, 2.4rem);
        line-height: 1.02;
    }

    .home-guides__cta {
        width: 100%;
    }
}
