:root {
    --hc-blue: #0C6FA6;
    --hc-blue-dark: #1F2E5A;
    --hc-gold: #E3B43B;
    --hc-gold-light: #FFD24A;
    --hc-green: #1C8C4A;
    --hc-black: #000000;
    --hc-white: #FFFFFF;
    --hc-bg-light: #f4f6fb;
    --hc-border-soft: rgba(0, 0, 0, 0.06);
    --hc-radius-lg: 20px;
    --hc-radius-md: 14px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #f2f3f7 0, #ffffff 55%, #ffffff 100%);
    color: #222222;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* CONTAINER */
.hc-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* HEADER */
.hc-header {
    background: #ffffff;
    border-bottom: 1px solid rgba(227, 180, 59, 0.6);
    position: sticky;
    top: 0;
    z-index: 50;
}

.hc-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    gap: 0.75rem;
}

.hc-logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hc-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.hc-title-group {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.hc-subtitle-top {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hc-gold);
}

.hc-title-group h1 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--hc-blue-dark);
}

.hc-title-group p {
    font-size: 0.8rem;
    color: #666;
}

/* NAV */
.hc-nav {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
}

.hc-nav a {
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    color: #333;
}

.hc-nav a:hover {
    background: rgba(12, 111, 166, 0.08);
    color: var(--hc-blue-dark);
    transform: translateY(-1px);
}

.hc-btn-header {
    border: 1px solid var(--hc-gold);
    color: var(--hc-blue-dark);
    padding: 0.3rem 0.9rem;
}

/* NAV MOBILE */
.hc-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--hc-blue-dark);
}

/* HERO */
.hc-hero {
    position: relative;
    padding: 2.8rem 0 2.4rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 0% 0%, rgba(227, 180, 59, 0.12) 0, transparent 55%),
        radial-gradient(circle at 100% 10%, rgba(12, 111, 166, 0.15) 0, transparent 55%);
}

.hc-hero-overlay {
    display: none; /* não precisamos mais do overlay escuro */
}

.hc-hero-content {
    position: relative;
    display: flex;
    gap: 2.2rem;
    align-items: center;
    flex-wrap: wrap;
    z-index: 1;
}

.hc-hero-text {
    flex: 1 1 260px;
}

.hc-hero-text h2 {
    font-size: 1.9rem;
    margin-bottom: 0.9rem;
    color: #0c2a4d;
}

.hc-hero-text p {
    color: #444;
    margin-bottom: 1.1rem;
    max-width: 560px;
    font-size: 0.98rem;
}

.hc-hero-actions {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

/* BOTÕES */
.hc-btn-primary,
.hc-btn-secondary,
.hc-btn-disabled {
    border-radius: 999px;
    padding: 0.65rem 1.4rem;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-weight: 500;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.hc-btn-primary {
    background: linear-gradient(135deg, var(--hc-blue), var(--hc-blue-dark));
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(12, 111, 166, 0.4);
}

.hc-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(12, 111, 166, 0.45);
}

.hc-btn-secondary {
    background: #ffffff;
    border: 1px solid var(--hc-gold);
    color: var(--hc-blue-dark);
}

.hc-btn-secondary:hover {
    background: rgba(227, 180, 59, 0.08);
    transform: translateY(-1px);
}

.hc-btn-disabled {
    background: #e0e3ef;
    color: #666;
    cursor: not-allowed;
    border: 1px dashed rgba(227, 180, 59, 0.6);
}

/* HERO LOGO CARD */
.hc-hero-logo-card {
    flex: 0 1 280px;
    background: radial-gradient(circle at top, #ffffff, #f4f6fb);
    border-radius: var(--hc-radius-lg);
    padding: 1.3rem 1.1rem 1.1rem;
    border: 1px solid rgba(227, 180, 59, 0.4);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.hc-hero-logo-circle {
    width: 150px;
    height: 150px;
    margin: 0 auto 0.7rem;
    border-radius: 50%;
    border: 2px solid rgba(227, 180, 59, 0.9);
    background: radial-gradient(circle at 30% 0%, rgba(255, 210, 74, 0.18), #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hc-hero-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hc-hero-highlight {
    font-size: 0.92rem;
    color: var(--hc-blue-dark);
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.hc-hero-small {
    font-size: 0.8rem;
    color: #777;
}

/* SEÇÕES GERAIS */
.hc-section {
    padding: 2.6rem 0 2.4rem;
    position: relative;
}

.hc-section-light {
    background: #ffffff;
}

.hc-section-alt {
    background: #f5f6fb;
}

.hc-section h2 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--hc-blue-dark);
}

.hc-section-intro {
    font-size: 0.95rem;
    color: #555;
    max-width: 760px;
    margin-bottom: 1.6rem;
}

/* GRID 3 CARDS */
.hc-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

.hc-card {
    background: #ffffff;
    border-radius: var(--hc-radius-md);
    padding: 1rem;
    border: 1px solid var(--hc-border-soft);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
    font-size: 0.9rem;
    color: #333;
}

.hc-card-outline {
    border-color: rgba(227, 180, 59, 0.5);
}

.hc-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--hc-blue);
}

/* AGENDA */
.hc-agenda-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

.hc-agenda-card {
    background: #ffffff;
    border-radius: var(--hc-radius-md);
    padding: 1rem;
    border: 1px solid rgba(12, 111, 166, 0.2);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
    font-size: 0.88rem;
    color: #333;
}

.hc-agenda-label {
    display: inline-block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--hc-blue-dark);
    margin-bottom: 0.35rem;
}

/* ÁREA RESTRITA */
.hc-restricted {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 1.3fr);
    gap: 1.6rem;
    align-items: center;
}

.hc-restricted-text p {
    font-size: 0.94rem;
    color: #444;
    margin-bottom: 0.5rem;
}

.hc-restricted-note {
    margin-top: 0.3rem;
    font-size: 0.86rem;
    color: #777;
}

.hc-restricted-card {
    background: #ffffff;
    border-radius: var(--hc-radius-lg);
    border: 1px dashed var(--hc-gold);
    padding: 1.2rem;
    text-align: center;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.09);
}

/* FORMULÁRIO CONTATO */
.hc-form {
    background: #ffffff;
    border-radius: var(--hc-radius-lg);
    padding: 1.4rem 1.3rem 1.3rem;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--hc-border-soft);
    max-width: 760px;
}

.hc-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.hc-form-group {
    margin-bottom: 0.9rem;
}

.hc-form-group label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    color: #333;
}

.hc-form-group input,
.hc-form-group textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #d0d4e2;
    padding: 0.55rem 0.75rem;
    font-size: 0.9rem;
    outline: none;
    background: #f9fafb;
    color: #222;
}

.hc-form-group input::placeholder,
.hc-form-group textarea::placeholder {
    color: #9ca3af;
}

.hc-form-group input:focus,
.hc-form-group textarea:focus {
    border-color: var(--hc-blue);
    box-shadow: 0 0 0 1px rgba(12, 111, 166, 0.35);
}

/* FOOTER */
.hc-footer {
    padding: 1.3rem 0 1.6rem;
    background: linear-gradient(135deg, var(--hc-blue-dark), #071022);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: 0.5rem;
}

.hc-footer-content {
    text-align: center;
    font-size: 0.84rem;
    color: #f4f4f9;
}

.hc-footer-small {
    font-size: 0.78rem;
    color: #d1d5f0;
    margin-top: 0.2rem;
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
    .hc-hero-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .hc-hero-logo-card {
        align-self: center;
    }
}

@media (max-width: 900px) {
    .hc-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hc-agenda-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hc-restricted {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .hc-header-content {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .hc-nav {
        position: absolute;
        top: 64px;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 0.7rem 1rem;
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
        transform: translateY(-160%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.2s ease;
        border-bottom-left-radius: 16px;
        border-left: 1px solid rgba(227, 180, 59, 0.4);
        border-bottom: 1px solid rgba(227, 180, 59, 0.4);
    }

    .hc-nav a {
        color: #222;
    }

    .hc-nav.hc-nav-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .hc-nav-toggle {
        display: block;
    }

    .hc-grid-3,
    .hc-agenda-grid,
    .hc-form-row {
        grid-template-columns: 1fr;
    }

    .hc-hero {
        padding-top: 2.1rem;
    }

    .hc-hero-text h2 {
        font-size: 1.7rem;
    }
}
