/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* VARIÁVEIS DE CORES (fácil manutenção) */
:root {
    --primary: #0b2a4a;
    --secondary: #1f3d5a;
    --accent: #c9a44c;
    --light: #ffffff;
    --gray: #f2f2f2;
}

/* CONFIGURAÇÕES GERAIS */
body {
    font-family: 'Segoe UI', sans-serif;
    background: var(--light);
    color: #333;
    line-height: 1.6;
}

/* CONTAINER PADRÃO */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.header {
    background: var(--primary);
    color: white;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
#logo{
    width: 5%;
    height: 5%;
    border-radius: 10px;
}
.logo {
    font-size: 1.2rem;
}

.nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav a:hover {
    opacity: 0.7;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* HERO */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(11,42,74,0.9), rgba(11,42,74,0.9));
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    padding-top: 80px;
}

.hero-title {
    font-size: 2.5rem;
    animation: fadeUp 1s ease;
}

.hero-subtitle {
    margin: 20px 0;
    animation: fadeUp 1.5s ease;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

/* BOTÕES */
.btn-primary {
    background: var(--accent);
    color: var(--primary);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid white;
    padding: 12px 25px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
}

/* SEÇÕES */
.section {
    padding: 80px 0;
}

.section.dark {
    background: var(--gray);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* LISTA */
.list {
    list-style: none;
    max-width: 500px;
    margin: auto;
}

.list li {
    margin-bottom: 10px;
}

/* CTA */
.cta {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

/* FOOTER */
.footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 20px;
}

/* ANIMAÇÕES */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.div_logo_sobre{
    display: flex;
    justify-content: center;
}
.div_logo_sobre img{
    border-radius: 50px;
    width: 20%;
    height: 20%;
}
/* SCROLL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2rem;
    }
}

/* ================= MENU MOBILE ================= */

/* Menu mobile (inicialmente oculto) */
.nav.mobile {
    position: absolute;
    top: 80px; /* altura do header */
    right: 0;
    width: 100%;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;

    /* Animação */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

/* Links do menu mobile */
.nav.mobile a {
    padding: 15px 0;
    font-size: 1.1rem;
}

/* Menu aberto */
.nav.mobile.active {
    max-height: 600px;
}

/* Esconde menu desktop no mobile */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .nav.mobile {
        display: flex;
    }
}

/* ================= MAPA ================= */
.map-container {
    width: 100%;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
/*=============== Card Contato ===============*/
.card a{
    text-decoration: none;
    color: black;
}