/* ============================================================
   Família Orun — Tema Colmeia
   Paleta derivada do amarelo âmbar, evocando a estrutura
   de uma colmeia que conecta e sustenta todos os projetos.
   ============================================================ */

/* ---- Paleta Colmeia ---- */
:root {
    --honey-bg:           #1C0E00;   /* fundo principal: âmbar escuro profundo */
    --honey-bg-alt:       #251400;   /* fundo alternado */
    --honey-bg-section:   #2D1800;   /* seções internas */
    --honey-surface:      #3A2200;   /* superfície de card */
    --honey-surface-2:    #452900;   /* card hover / elevado */

    --honey-border:       rgba(212, 130, 10, 0.18);
    --honey-border-hover: rgba(232, 160, 32, 0.45);

    --honey-deep:         #7A3B00;   /* âmbar profundo */
    --honey-mid:          #B06300;   /* âmbar médio */
    --honey-warm:         #D4820A;   /* âmbar quente (acento principal) */
    --honey-gold:         #E8A020;   /* ouro mel */
    --honey-bright:       #F5C842;   /* amarelo mel claro */
    --honey-glow:         #FFD966;   /* brilho do favos */

    /* Texto — contraste cuidadoso sobre fundos âmbar escuros */
    --honey-text:         #FFF8E7;   /* branco quente: contraste ~13:1 sobre bg */
    --honey-text-soft:    rgba(255, 248, 231, 0.72); /* contraste ~9:1 */
    --honey-text-muted:   rgba(255, 248, 231, 0.42);
    --honey-text-on-gold: #1C0E00;   /* texto escuro sobre fundo âmbar claro */

    /* Padrão hexagonal (SVG inline) */
    --hex-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='116' height='100'%3E%3Cpolygon points='58,2 113,30 113,70 58,98 3,70 3,30' fill='none' stroke='rgba(212%2C130%2C10%2C0.09)' stroke-width='1.5'/%3E%3C/svg%3E");
    --hex-pattern-strong: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='116' height='100'%3E%3Cpolygon points='58,2 113,30 113,70 58,98 3,70 3,30' fill='none' stroke='rgba(232%2C160%2C32%2C0.14)' stroke-width='1.5'/%3E%3C/svg%3E");
}

/* ---- Override global variables para esta página ---- */
.theme-colmeia {
    --color-bg:           var(--honey-bg);
    --color-bg-alt:       var(--honey-bg-alt);
    --color-surface:      var(--honey-surface);
    --color-surface-hover: var(--honey-surface-2);
    --color-border:       var(--honey-border);
    --color-text:         var(--honey-text);
    --color-text-soft:    var(--honey-text-soft);
    --color-text-muted:   var(--honey-text-muted);
    --accent:             var(--honey-warm);
    --accent-light:       var(--honey-gold);
    --accent-dark:        var(--honey-mid);
}

/* ---- Body e fundo base ---- */
.theme-colmeia body {
    background: var(--honey-bg);
    color: var(--honey-text);
}

/* ---- Header colmeia ---- */
.theme-colmeia .main-header {
    background: rgba(28, 14, 0, 0.88);
    border-bottom-color: var(--honey-border);
}
.theme-colmeia .main-header.scrolled {
    background: rgba(28, 14, 0, 0.97);
}
.theme-colmeia .logo-mark {
    background: var(--honey-warm);
    color: var(--honey-bg);
}
.theme-colmeia .nav-link { color: var(--honey-text-soft); }
.theme-colmeia .nav-link:hover,
.theme-colmeia .nav-link.active {
    color: var(--honey-text);
    background: rgba(212, 130, 10, 0.12);
}
.theme-colmeia .nav-link--cta {
    background: var(--honey-warm);
    color: var(--honey-bg) !important;
}
.theme-colmeia .nav-link--cta:hover {
    background: var(--honey-gold) !important;
}
.theme-colmeia .main-nav {
    background: var(--honey-bg);
    border-left-color: var(--honey-border);
}

/* ============================================================
   HERO COLMEIA
   ============================================================ */
.colmeia-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-total) + 4rem) 0 5rem;
    background: var(--honey-bg);
    overflow: hidden;
}

/* Camada 1: gradiente radial âmbar (brilho central) */
.colmeia-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 40%, rgba(212, 130, 10, 0.22) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 80%, rgba(176, 99, 0, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 30% 30% at 20% 70%, rgba(116, 57, 0, 0.1) 0%, transparent 60%);
    z-index: 0;
}

/* Camada 2: padrão hexagonal */
.colmeia-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--hex-pattern-strong);
    background-size: 116px 100px;
    background-position: 0 0;
    z-index: 1;
    opacity: 1;
}

.colmeia-hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.colmeia-hero__content { max-width: 560px; }

.colmeia-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.38rem 1rem;
    background: rgba(212, 130, 10, 0.14);
    border: 1px solid rgba(212, 130, 10, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--honey-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.colmeia-hero__title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--honey-text);
    margin-bottom: 0.5rem;
}
.colmeia-hero__title em {
    font-style: normal;
    color: var(--honey-bright);
}

.colmeia-hero__subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--honey-text-soft);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2.25rem;
}

.colmeia-hero__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Hexágono visual decorativo à direita */
.colmeia-hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hex-cluster {
    position: relative;
    width: 340px;
    height: 340px;
}

/* Hexágono central (Família Orun) */
.hex-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, var(--honey-warm), var(--honey-bright));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.3rem;
    z-index: 5;
    box-shadow: 0 0 40px rgba(232, 160, 32, 0.5);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}
.hex-center:hover {
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow: 0 0 48px rgba(232, 160, 32, 0.65);
}
.hex-center:focus-visible {
    outline: 2px solid var(--honey-bright);
    outline-offset: 4px;
}
.hex-center__label {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--honey-bg);
    text-align: center;
    line-height: 1.2;
    padding: 0 12px;
}
.hex-center i {
    font-size: 1.2rem;
    color: var(--honey-bg);
}

/* Hexágonos satélites (os 5 projetos) */
.hex-satellite {
    position: absolute;
    width: 85px;
    height: 85px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--honey-text);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
    cursor: pointer;
    text-align: center;
    padding: 0 8px;
    z-index: 4;
}
.hex-satellite:hover {
    transform: scale(1.08);
    filter: brightness(1.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.hex-satellite:focus-visible {
    outline: 2px solid var(--honey-bright);
    outline-offset: 3px;
}
.hex-satellite i { font-size: 1rem; }

/* Posicionamento dos satélites (distribuição em torno do centro) */
.hex-s1 { background: rgba(30,58,95,0.85);  top: 18px;  left: 50%; transform: translateX(-50%); }
.hex-s2 { background: rgba(192,57,43,0.85); top: 95px;  right: 22px; }
.hex-s3 { background: rgba(123,45,142,0.85);bottom: 50px; right: 38px; }
.hex-s4 { background: rgba(45,106,79,0.85); bottom: 50px; left: 38px; }
.hex-s5 { background: rgba(180,140,0,0.85); top: 95px;  left: 22px; }

.hex-s1:hover { transform: translateX(-50%) scale(1.08); }
.hex-connections {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

@media (max-width: 900px) {
    .colmeia-hero .container {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .colmeia-hero__visual { display: none; }
    .colmeia-hero {
        min-height: auto;
        padding-top: calc(var(--header-total) + 2.5rem);
        padding-bottom: 3rem;
        align-items: flex-start;
    }
    .colmeia-hero__content {
        max-width: 100%;
    }
}

/* ============================================================
   SEÇÕES — FUNDO ÂMBAR ESCURO
   ============================================================ */
.theme-colmeia .section {
    background: var(--honey-bg);
}
.theme-colmeia .section--alt {
    background: var(--honey-bg-alt);
}

/* Seção com padrão hex de fundo (util para destaque) */
.section--hex-pattern {
    position: relative;
}
.section--hex-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--hex-pattern);
    background-size: 116px 100px;
    pointer-events: none;
    z-index: 0;
}
.section--hex-pattern .container { position: relative; z-index: 1; }

/* ============================================================
   CARDS COLMEIA
   ============================================================ */

/* Ícone hexagonal */
.hex-icon {
    width: 52px;
    height: 52px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.theme-colmeia .feature-card:hover .hex-icon { transform: scale(1.1); }

/* Cards de feature (missão, visão, memória etc.) */
.theme-colmeia .feature-card {
    background: var(--honey-surface);
    border-color: var(--honey-border);
    color: var(--honey-text);
}
.theme-colmeia .feature-card:hover {
    border-color: var(--honey-gold);
    background: var(--honey-surface-2);
    box-shadow: 0 6px 30px rgba(212, 130, 10, 0.12);
}
.theme-colmeia .feature-card__icon {
    background: rgba(212, 130, 10, 0.12);
    color: var(--honey-gold);
}
.theme-colmeia .feature-card__title { color: var(--honey-text); }
.theme-colmeia .feature-card__text  { color: var(--honey-text-soft); }

/* Value list */
.theme-colmeia .value-item {
    background: var(--honey-surface);
    border-color: var(--honey-border);
    color: var(--honey-text-soft);
}
.theme-colmeia .value-item i { color: var(--honey-warm); }

/* ============================================================
   SEÇÃO A COLMEIA — NÚCLEOS (hex cards grandes)
   ============================================================ */
.colmeia-nucleos {
    background: var(--honey-bg-section);
    position: relative;
    overflow: hidden;
}
.colmeia-nucleos::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--hex-pattern-strong);
    background-size: 116px 100px;
    opacity: 0.6;
    pointer-events: none;
}
.colmeia-nucleos .container { position: relative; z-index: 1; }

/* Grid de hexágonos grandes para os projetos */
.hex-nucleos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.hex-nucleo-card {
    position: relative;
    background: var(--honey-surface);
    border: 1px solid var(--honey-border);
    border-radius: var(--radius-xl);
    padding: 2.25rem 1.75rem;
    text-decoration: none;
    color: var(--honey-text);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.hex-nucleo-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--card-honey-color, var(--honey-warm));
    opacity: 0.07;
    transition: opacity var(--transition), transform var(--transition);
}
.hex-nucleo-card:hover {
    border-color: var(--card-honey-color, var(--honey-warm));
    background: var(--honey-surface-2);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.25),
                0 0 0 1px var(--card-honey-color, var(--honey-warm));
    color: var(--honey-text);
}
.hex-nucleo-card:hover::before {
    opacity: 0.14;
    transform: scale(1.15) rotate(15deg);
}

.hex-nucleo-card__hex-icon {
    width: 54px;
    height: 54px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--card-honey-color, var(--honey-warm));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    flex-shrink: 0;
}

.hex-nucleo-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--honey-text);
    margin: 0;
}
.hex-nucleo-card__text {
    font-size: 0.9rem;
    color: var(--honey-text-soft);
    line-height: 1.6;
    flex: 1;
}
.hex-nucleo-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--card-honey-color, var(--honey-gold));
    margin-top: auto;
}
.hex-nucleo-card:hover .hex-nucleo-card__link { gap: 0.7rem; }

/* Cores dos projetos dentro da colmeia */
.hex-nucleo--ile        { --card-honey-color: #4A80BE; }
.hex-nucleo--pontao     { --card-honey-color: #E05A47; }
.hex-nucleo--cozinhas   { --card-honey-color: #A855CC; }
.hex-nucleo--espiritualmente { --card-honey-color: #4CAF7A; }
.hex-nucleo--portal     { --card-honey-color: var(--honey-bright); }

/* Hex card especial: Família Orun no centro (destacado) */
.hex-nucleo--raiz {
    background: linear-gradient(135deg, var(--honey-surface-2), rgba(212, 130, 10, 0.2));
    border-color: rgba(212, 130, 10, 0.4);
    grid-column: span 3;
}

@media (max-width: 900px) {
    .hex-nucleos-grid { grid-template-columns: 1fr 1fr; }
    .hex-nucleo--raiz { grid-column: span 2; }
}
@media (max-width: 600px) {
    .hex-nucleos-grid { grid-template-columns: 1fr; }
    .hex-nucleo--raiz { grid-column: span 1; }
}

/* ============================================================
   CONTENT BLOCKS — CORES ÂMBAR
   ============================================================ */
.theme-colmeia .content-block p { color: var(--honey-text-soft); }
.theme-colmeia .content-block strong { color: var(--honey-text); }
.theme-colmeia .content-block h3 { color: var(--honey-text); }

.theme-colmeia .section-label { color: var(--honey-gold); }
.theme-colmeia .section-title { color: var(--honey-text); }
.theme-colmeia .section-subtitle { color: var(--honey-text-soft); }

.theme-colmeia .simple-list li { color: var(--honey-text-soft); }
.theme-colmeia .simple-list li::before { background: var(--honey-warm); }
.theme-colmeia .simple-list a { color: var(--honey-gold); }
.theme-colmeia .simple-list a:hover { color: var(--honey-bright); }

.theme-colmeia .highlight-box {
    background: rgba(212, 130, 10, 0.09);
    border-left-color: var(--honey-warm);
}
.theme-colmeia .highlight-box p { color: var(--honey-text-soft); font-style: italic; }

/* ============================================================
   BOTÕES COLMEIA
   ============================================================ */
.theme-colmeia .btn-primary {
    background: var(--honey-warm);
    color: var(--honey-bg);
}
.theme-colmeia .btn-primary:hover {
    background: var(--honey-gold);
    color: var(--honey-bg);
    box-shadow: 0 4px 24px rgba(212, 130, 10, 0.35);
}
.theme-colmeia .btn-secondary {
    background: var(--honey-surface);
    color: var(--honey-text);
    border-color: var(--honey-border);
}
.theme-colmeia .btn-secondary:hover {
    background: var(--honey-surface-2);
    border-color: var(--honey-gold);
    color: var(--honey-text);
}
.theme-colmeia .btn-outline {
    color: var(--honey-gold);
    border-color: var(--honey-warm);
}
.theme-colmeia .btn-outline:hover {
    background: var(--honey-warm);
    color: var(--honey-bg);
}

/* ============================================================
   HERO BADGE E SECTION LABEL
   ============================================================ */
.theme-colmeia .hero-badge {
    background: rgba(212, 130, 10, 0.12);
    border-color: rgba(212, 130, 10, 0.3);
    color: var(--honey-gold);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.theme-colmeia .cta-section {
    background: var(--honey-bg-section);
    border-top-color: var(--honey-border);
    position: relative;
    overflow: hidden;
}
.theme-colmeia .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 50% 50%, rgba(212, 130, 10, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.theme-colmeia .cta-section .container { position: relative; z-index: 1; }
.theme-colmeia .cta-section__title { color: var(--honey-text); }
.theme-colmeia .cta-section__text  { color: var(--honey-text-soft); }

/* ============================================================
   CONNECTIONS & FOOTER
   ============================================================ */
.theme-colmeia .connections {
    background: var(--honey-bg-alt);
    border-top-color: var(--honey-border);
}
.theme-colmeia .connection-card {
    background: var(--honey-surface);
    border-color: var(--honey-border);
    color: var(--honey-text-soft);
}
.theme-colmeia .connection-card:hover {
    color: var(--honey-text);
    border-color: var(--honey-warm);
    box-shadow: 0 4px 16px rgba(212, 130, 10, 0.12);
}

.theme-colmeia .main-footer {
    background: var(--honey-bg-alt);
    border-top-color: var(--honey-border);
}
.theme-colmeia .footer-tagline { color: var(--honey-text-soft); }
.theme-colmeia .footer-heading { color: var(--honey-text-muted); }
.theme-colmeia .footer-links a { color: var(--honey-text-soft); }
.theme-colmeia .footer-links a:hover { color: var(--honey-gold); }
.theme-colmeia .footer-contact li { color: var(--honey-text-soft); }
.theme-colmeia .footer-contact i { color: var(--honey-warm); }
.theme-colmeia .footer-bottom p { color: var(--honey-text-muted); }
.theme-colmeia .footer-bottom { border-top-color: var(--honey-border); }
.theme-colmeia .logo-text { color: var(--honey-text); }

/* ============================================================
   SEÇÃO HISTÓRIA — DETALHE DOURADO
   ============================================================ */
.historia-destaque {
    background: linear-gradient(135deg, rgba(212,130,10,0.08) 0%, transparent 100%);
    border: 1px solid var(--honey-border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.historia-destaque::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--honey-warm);
    opacity: 0.04;
}
.historia-destaque .content-block { max-width: 700px; margin: 0 auto; }

/* ============================================================
   MISSÃO / VISÃO — Cards especiais
   ============================================================ */
.missao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
@media (max-width: 640px) { .missao-grid { grid-template-columns: 1fr; } }

.missao-card {
    background: var(--honey-surface);
    border: 1px solid var(--honey-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.missao-card::after {
    content: '';
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 80px;
    height: 80px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--honey-warm);
    opacity: 0.07;
    transition: opacity var(--transition);
}
.missao-card:hover::after { opacity: 0.13; }
.missao-card:hover {
    border-color: var(--honey-gold);
    background: var(--honey-surface-2);
}

.missao-card__icon {
    width: 50px;
    height: 50px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--honey-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--honey-bg);
    margin-bottom: 1.25rem;
}
.missao-card__title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--honey-gold);
    font-weight: 700;
    margin-bottom: 0.6rem;
}
.missao-card__text {
    font-size: 0.95rem;
    color: var(--honey-text-soft);
    line-height: 1.75;
}

/* ============================================================
   GOVERNANÇA
   ============================================================ */
.theme-colmeia .img-placeholder {
    background: var(--honey-surface);
    border-color: rgba(212, 130, 10, 0.15);
    color: var(--honey-text-muted);
}

.theme-colmeia .quem-somos-photo {
    margin: 0;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(212, 130, 10, 0.15);
}
.theme-colmeia .quem-somos-photo img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
}

/* ============================================================
   SEPARADOR EM FAVO
   ============================================================ */
.hex-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
}
.hex-divider__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--honey-border), transparent);
    max-width: 200px;
}
.hex-divider__shape {
    width: 18px;
    height: 18px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--honey-warm);
    opacity: 0.5;
}

/* ============================================================
   MOBILE PEQUENO — ≤ 600px
   ============================================================ */
@media (max-width: 600px) {

    /* Hero: padding compacto e título escalável */
    .colmeia-hero {
        padding-top: calc(var(--header-total) + 1.75rem);
        padding-bottom: 2.5rem;
        overflow-x: hidden;
    }

    .colmeia-hero__title {
        font-size: clamp(1.9rem, 9vw, 2.8rem);
        letter-spacing: -0.02em;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .colmeia-hero__subtitle {
        font-size: 0.97rem;
        max-width: 100%;
        margin-bottom: 1.75rem;
    }

    .colmeia-hero__badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.85rem;
        margin-bottom: 1.1rem;
    }

    /* Botões: coluna única para toque fácil */
    .colmeia-hero__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.6rem;
    }
    .colmeia-hero__actions .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* Núcleos: margin-top menor */
    .hex-nucleos-grid {
        margin-top: 1.75rem;
        gap: 0.9rem;
    }

    /* Card de núcleo: padding ajustado */
    .hex-nucleo-card {
        padding: 1.5rem 1.25rem;
        gap: 0.75rem;
    }

    /* História: padding menor para não sufocar o texto */
    .historia-destaque {
        padding: 1.75rem 1.25rem;
    }

    /* Missão/visão: padding menor */
    .missao-card {
        padding: 1.75rem 1.25rem;
    }

    /* Seção da colmeia: padding lateral suave */
    .highlight-box {
        padding: 1.25rem 1rem !important;
    }

    /* Previne overflow de qualquer texto longo */
    .colmeia-hero__title,
    .missao-card__text,
    .hex-nucleo-card__title,
    .hex-nucleo-card__text {
        overflow-wrap: break-word;
        word-break: break-word;
    }
}

/* ============================================================
   MOBILE MUITO PEQUENO — ≤ 380px
   ============================================================ */
@media (max-width: 380px) {
    .colmeia-hero__title {
        font-size: clamp(1.7rem, 10vw, 1.95rem);
    }

    .colmeia-hero__badge {
        font-size: 0.64rem;
        padding: 0.25rem 0.7rem;
    }

    .historia-destaque {
        padding: 1.25rem 1rem;
    }

    .missao-card {
        padding: 1.25rem 1rem;
    }
}
