/* HERO */
.home-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 16px 12px;
    align-items: center;
}

@media (min-width:900px) {
    .home-hero {
        grid-template-columns: 1fr 1.1fr;
        gap: 32px;
        padding: 40px 16px 12px;
    }
}

.hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.logo-circle.lg {
    width: 220px;
    height: 220px;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-copy {
    text-align: center;
}

@media (min-width:900px) {
    .hero-copy {
        text-align: left;
    }
}

.hero-title {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 800;
    letter-spacing: .01em;
    margin: 8px 0 8px;
}

.hero-lead {
    color: var(--muted);
    font-size: clamp(14px, 2.2vw, 17px);
    line-height: 1.6;
    max-width: 60ch;
    margin: 0 auto;
}

@media (min-width:900px) {
    .hero-lead {
        margin: 0;
    }
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
    justify-content: center;
}

@media (min-width:900px) {
    .hero-cta {
        justify-content: flex-start;
    }
}

/* ABOUT */
.home-about {
    padding: 24px 16px;
    display: grid;
    place-items: center;
}

.about-card {
    width: 100%;
    max-width: 960px;
    padding: 22px;
    border: 1px solid var(--ring);
    border-radius: calc(var(--radius) + 4px);
    background: linear-gradient(180deg, #fff, #fff);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .05);
}

.about-card h2 {
    margin: 0 0 10px;
    font-size: clamp(20px, 2.6vw, 28px);
}

.about-card p {
    color: var(--muted);
    margin: 0 0 10px;
}

.about-bullets {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: grid;
    gap: 8px;
}

.about-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-bullets i {
    opacity: .9;
}

/* CATEGORIES */
.home-categories {
    padding: 24px 16px;
}

.section-head {
    text-align: center;
    margin-bottom: 16px;
}

.section-head h2 {
    font-size: clamp(20px, 2.6vw, 28px);
    margin: 0 0 6px;
}

.section-head p {
    color: var(--muted);
    margin: 0;
}

.grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

@media (min-width:700px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    border: 1px solid var(--ring);
    border-radius: calc(var(--radius) + 4px);
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .05);
}

.card-media {
    aspect-ratio: 16/10;
    background: #f7f7f7;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-body h3 {
    margin: 0;
    font-size: 18px;
}

.card-body p {
    margin: 0;
    color: var(--muted);
}

.card-actions {
    margin-top: auto;
}

/* TESTIMONIOS */
.home-testimonials {
    padding: 24px 16px;
    background: linear-gradient(180deg, #fff, #fafafa);
}

.quotes {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
}

@media (min-width:900px) {
    .quotes {
        grid-template-columns: 1fr 1fr;
    }
}

blockquote {
    margin: 0;
    font-style: italic;
    color: #374151;
}

figcaption {
    margin-top: 6px;
    color: var(--muted);
    font-size: 14px;
}

/* CTA FINAL */
.home-cta-final {
    padding: 28px 16px;
    display: grid;
    place-items: center;
}

.cta-card {
    width: 100%;
    max-width: 960px;
    text-align: center;
    border: 1px solid var(--ring);
    border-radius: calc(var(--radius) + 4px);
    background: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .05);
    padding: 22px;
}

.cta-card h2 {
    margin: 0 0 8px;
    font-size: clamp(20px, 2.6vw, 28px);
}

.cta-card p {
    margin: 0 0 12px;
    color: var(--muted);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}