/* ---------------------------------------------------------
   HAZLO COOL - ESTRATEGIA EDITORIAL & SEO
   Sistema de diseño modular (GeneratePress + GenerateBlocks)
   --------------------------------------------------------- */

:root {
    --hc-blue: #26547C;
    --hc-coral: #FF5A5F;
    --hc-yellow: #FFD166;
    --hc-teal: #00A6A6;
    --hc-bg: #FFFAF3;
    --hc-text-dark: #1F2933;
    --hc-text-gray: #667085;
    --hc-radius: 16px;
    --hc-shadow: 0 10px 30px rgba(31, 41, 51, 0.08);
}

/* --- Layout Base --- */
.hc-home-container {
    background-color: var(--hc-bg);
    color: var(--hc-text-dark);
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
}

.hc-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Hero Section --- */
.hc-hero {
    background: #fff;
    border-radius: 0 0 60px 60px;
    padding: 100px 20px;
    text-align: center;
    box-shadow: var(--hc-shadow);
}

.hc-hero h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--hc-blue);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hc-hero p {
    font-size: 1.4rem;
    color: var(--hc-text-gray);
    max-width: 850px;
    margin: 0 auto 40px;
}

.hc-btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hc-btn {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.hc-btn-primary {
    background: var(--hc-blue);
    color: #fff !important;
}

.hc-btn-secondary {
    background: var(--hc-coral);
    color: #fff !important;
}

.hc-btn-outline {
    border: 2px solid var(--hc-blue);
    color: var(--hc-blue) !important;
}

.hc-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* --- Category Cards & Slider --- */
.hc-slider-wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.hc-category-grid.is-slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
    width: max-content;
}

.hc-cat-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: var(--hc-radius);
    text-align: center;
    text-decoration: none;
    color: inherit;
    border-bottom: 6px solid #f0f0f0;
    transition: all 0.3s ease;
    box-shadow: var(--hc-shadow);
    flex: 0 0 280px;
}

.hc-cat-card:hover {
    transform: translateY(-10px);
}

.hc-cat-card h3 {
    font-family: 'Fredoka', sans-serif;
    margin: 15px 0 10px;
    font-size: 1.6rem;
}

.hc-cat-card p {
    font-size: 0.95rem;
    color: var(--hc-text-gray);
    line-height: 1.4;
}

.hc-cat-1 {
    border-color: var(--hc-yellow);
}

.hc-cat-2 {
    border-color: var(--hc-coral);
}

.hc-cat-3 {
    border-color: var(--hc-teal);
}

.hc-cat-4 {
    border-color: var(--hc-blue);
}

.hc-cat-5 {
    border-color: #FF7043;
}

/* --- Pillar Guides (Real Posts Cards) --- */
.hc-pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.hc-card {
    background: #fff;
    border-radius: var(--hc-radius);
    overflow: hidden;
    box-shadow: var(--hc-shadow);
    transition: all 0.3s ease;
}

.hc-card:hover {
    transform: translateY(-5px);
}

.hc-card-image-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hc-card-body {
    padding: 25px;
}

.hc-card-meta {
    color: var(--hc-coral);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.hc-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

/* --- FAQ Section --- */
.hc-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 40px;
}

.hc-faq-card {
    background: #ffffff;
    border: 1px solid rgba(38, 84, 124, 0.10);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 12px 32px rgba(31, 41, 51, 0.06);
    transition: transform 0.3s ease;
}

.hc-faq-card:hover {
    transform: translateY(-5px);
}

.hc-faq-card h3 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.18;
    color: var(--hc-blue);
    letter-spacing: -0.02em;
    font-family: 'Fredoka', sans-serif;
}

.hc-faq-card p {
    margin: 0;
    color: var(--hc-text-gray);
    line-height: 1.6;
    font-size: 16px;
}

.hc-faq-card a {
    color: var(--hc-coral);
    font-weight: 800;
    text-decoration: none;
}

.hc-faq-card a:hover {
    text-decoration: underline;
}

.hc-eyebrow {
    text-transform: uppercase;
    font-weight: 800;
    color: var(--hc-coral);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 10px;
}

/* --- Utility & Global --- */
.hc-title-section {
    text-align: center;
    margin-bottom: 50px;
}

.hc-title-section h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.8rem;
    color: var(--hc-blue);
}

.hc-text-highlight {
    color: var(--hc-coral);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hc-hero {
        padding: 60px 20px;
        border-radius: 0 0 40px 40px;
    }

    .hc-section {
        padding: 40px 20px;
    }

    .hc-slider-wrapper {
        overflow: visible;
    }

    .hc-category-grid.is-slider {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        flex-wrap: wrap;
        width: 100%;
        transform: none !important;
        gap: 15px;
    }

    .hc-category-grid.is-slider .hc-cat-card {
        flex: none;
        padding: 25px 15px;
    }

    .hc-faq-grid {
        grid-template-columns: 1fr;
    }

    .hc-faq-card {
        padding: 20px;
    }
}