/* ================================
   RESET E BASE
================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    background: #050608;
    /* preto quase absoluto */
    color: #e5e5e5;
}

/* Container mais largo e fluido em telas grandes */
.container {
    width: 100%;
    max-width: 1400px;        /* aumenta a largura útil */
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

/* Em monitores MUITO grandes (ex.: 1920px+), abre mais um pouco */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
        padding-left: 48px;
        padding-right: 48px;
    }
}


/* ================================
   CABEÇALHO
================================== */
.topbar {
    background: #000;
    color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid rgba(249, 115, 22, 0.25);
}

.topbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-area img {
    height: 60px;
}

.logo-text h1 {
    font-size: 16px;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.logo-text span {
    font-size: 11px;
    color: #a3a3a3;
}

/* ================================
   MENU
================================== */
.menu {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.menu a {
    text-decoration: none;
    color: #d4d4d4;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.menu a:hover {
    background: #1f2933;
    color: #ffffff;
    transform: translateY(-1px);
}

.menu a.active {
    background: #f97316;
    color: #111111;
    font-weight: 600;
}

.menu .btn-menu {
    background: #f97316;
    color: #111111;
    font-weight: 600;
}

/* ================================
   ÍCONES SOCIAIS
================================== */
.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Ícones sociais sem borda laranja */
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    /* leve transparência */
    padding: 4px;
    transition: 0.25s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.18);
    /* leve destaque no hover */
}

/* Ícones mantêm identidade de cor */
.social-links img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: none !important;
}


.social-links img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: none !important;
}

/* ================================
   HERO (TEXTO + IMAGEM)
================================== */
.hero {
    background: radial-gradient(circle at top left, #f97316 0%, #020617 40%, #000000 100%);
    color: #ffffff;
    padding: 56px 0 48px;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
    justify-content: space-between;
}

/* Coluna do texto */
.hero-text {
    flex: 1 1 320px;
}

.hero-text h2 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 14px;
}

.hero-text p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 14px;
    color: #e5e7eb;
}

.hero-highlight {
    font-size: 13px;
    line-height: 1.5;
    color: #f9fafb;
    opacity: 0.95;
    margin-top: 6px;
}

/* Coluna da imagem */
.hero-media {
    flex: 0 1 420px;
    max-width: 420px;
    width: 100%;
}

.hero-media img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 320px;
    /* controla a altura máxima */
    object-fit: cover;
    /* corta o excesso sem distorcer */
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.65);
}

/* ================================
   BOTÕES
================================== */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
}

.btn-primary {
    background: #f97316;
    color: #111827;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 26px rgba(249, 115, 22, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #f97316;
    border: 1px solid #f97316;
}

.btn-secondary:hover {
    background: #f97316;
    color: #111111;
}

.hero-buttons {
    display: flex;
    gap: 10px;
    margin: 12px 0;
}

/* ================================
   SEÇÕES E CARDS
================================== */
.section {
    padding: 32px 0;
}

.section:nth-of-type(even) {
    background: #020617;
}

.section:nth-of-type(odd) {
    background: #050608;
}

.section-title {
    font-size: 22px;
    margin-bottom: 20px;
    color: #f97316;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.card {
    background: #020617;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.card h4 {
    margin-bottom: 8px;
    font-size: 17px;
    color: #f97316;
}

.card p {
    font-size: 14px;
    line-height: 1.6;
    color: #e5e7eb;
    text-align: justify;
}

/* ================================
   SEÇÃO DESTACADA
================================== */
.section-highlight {
    background: linear-gradient(90deg, #111827, #000000);
    color: #f9fafb;
}

.highlight-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

/* ================================
   RODAPÉ
================================== */
.footer {
    background: #000000;
    color: #9ca3af;
    padding: 16px 0;
    font-size: 13px;
    border-top: 1px solid rgba(249, 115, 22, 0.25);
}

.footer-content {
    text-align: center;
    line-height: 1.5;
}

/* ================================
   RESPONSIVO
================================== */
@media (max-width: 900px) {
    .topbar-content {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-media {
        max-width: 100%;
    }

    .logo-area img {
        height: 44px;
    }

    .hero-text h2 {
        font-size: 24px;
    }
}

/* ================================
   TEXTO JUSTIFICADO
================================== */

.texto-justificado {
    text-align: justify;
}


/* Botão de menu - escondido no desktop */
.menu-toggle {
    display: none;
}

/* Ajustes gerais dos ícones sociais (sem contorno laranja) */
.social-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;               /* remove borda/contorno */
    border-radius: 999px;       /* bolinha */
    background: #111827;        /* fundo escuro discreto */
}

.social-links img {
    width: 20px;
    height: 20px;
}

/* ====== MOBILE (até 900px) ====== */
@media (max-width: 900px) {

    .topbar {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .topbar-content {
        gap: 10px;
        align-items: center;
    }

    .logo-area img {
        max-width: 52px;
        height: auto;
    }

    .logo-text h1 {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .logo-text span {
        font-size: 0.7rem;
    }

    /* Botão hambúrguer aparece no mobile */
    .menu-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 20px;
        border: 0;
        background: transparent;
        cursor: pointer;
        margin-left: auto;
        padding: 0;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: #ffffff;
        border-radius: 999px;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    /* Estado "X" quando o menu está aberto */
    .menu-toggle.is-open span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Menu vira dropdown */
    .menu {
        position: absolute;
        inset: 100% 0 auto 0; /* cola logo abaixo do header */
        background: #050814;
        display: none;
        flex-direction: column;
        gap: 10px;
        padding: 12px 16px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .menu.open {
        display: flex;
    }

    .menu a {
        display: block;
        width: 100%;
    }

    /* Ícones sociais ficam logo ao lado do botão */
    .social-links {
        margin-left: 8px;
    }
}

/* ====== MAPA / LOCALIZAÇÃO ====== */

.section-map {
    padding-top: 32px;
    padding-bottom: 48px;
}

.section-map p {
    max-width: 720px;
    margin-bottom: 16px;
}

.map-wrapper {
    position: relative;
    width: 100%;           /* ocupa toda a largura disponível */
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

/* iframe ocupa todo o espaço do wrapper */
.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 420px;         /* pode aumentar para maior impacto no desktop */
    border: 0;
}

@media (max-width: 768px) {
    .map-wrapper iframe {
        height: 280px;
    }
}



/* --- ÍCONES SOCIAIS (sem contorno laranja) --- */
.social-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none !important;          /* força remover borda */
    box-shadow: none !important;      /* remove qualquer sombra antiga */
    border-radius: 999px;
    background: #111827;
}

.social-links img {
    width: 20px;
    height: 20px;
}

/* --- MENU MOBILE --- */
.menu-toggle {
    display: none; /* some no desktop */
}

/* Tudo até 900px de largura é tratado como “mobile/tablet” */
@media (max-width: 900px) {

    .topbar {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .topbar-content {
        gap: 10px;
        align-items: center;
    }

    .logo-area img {
        max-width: 52px;
        height: auto;
    }

    .logo-text h1 {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .logo-text span {
        font-size: 0.7rem;
    }

    /* Botão hambúrguer visível no mobile */
    .menu-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 20px;
        border: 0;
        background: transparent;
        cursor: pointer;
        margin-left: auto;
        padding: 0;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: #ffffff;
        border-radius: 999px;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    /* Animação para virar "X" quando aberto */
    .menu-toggle.is-open span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Menu vira dropdown */
    .menu {
        position: absolute;
        inset: 100% 0 auto 0; /* abaixo do header */
        background: #050814;
        display: none;
        flex-direction: column;
        gap: 10px;
        padding: 12px 16px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .menu.open {
        display: flex;
    }

    .menu a {
        display: block;
        width: 100%;
    }
}


.section-map ul,
.section ul,
ul {
    margin-left: 0;
    padding-left: 0;
    list-style-position: inside; /* faz a bolinha entrar no fluxo do texto */
}

/* Correção de alinhamento da seção Mapa */
.section-map h3,
.section-map p {
    margin-left: 0 !important;
    padding-left: 0 !important;
}
