/* --- GERAL & VARIÁVEIS --- */
:root {
    --azul-primario: #205d9e;
    --verde-secundario: #345d1b;
    --roxo-profundo: #273674;
    --verde-vibrante: #76ae38;
    --verde-oliva: #58892e;
    --cinza-fundo: #f4f4f4;
    --texto-base: #222222;
    --branco: #ffffff;

    --font-family: 'Inter', sans-serif;
    --header-height: 80px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--texto-base);
    background-color: var(--branco);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.container-integrada {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--azul-primario);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

section {
    padding: 4rem 0;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-primary {
    background-color: var(--verde-vibrante);
    color: var(--branco);
}

.btn-primary:hover {
    background-color: var(--verde-oliva);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: var(--verde-secundario);
    color: var(--branco);
}

.btn-secondary:hover {
    background-color: var(--verde-oliva);
    transform: translateY(-3px);
}

/* --- ANIMAÇÃO DE SCROLL --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* --- 1. HEADER & NAVEGAÇÃO --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 65px;
    transition: transform 0.3s, filter 0.3s;
}

.logo img:hover {
    transform: scale(1.12) rotate(-2deg);
    filter: brightness(1.3);
}

.logo-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--azul-primario);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-link {
    color: var(--azul-primario);
    text-decoration: none;
    font-weight: 700;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--verde-vibrante);
    transition: width 0.3s ease-out;
}

.nav-link:hover,
.nav-link.active {
    color: var(--verde-vibrante);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--azul-primario);
    position: relative;
    transition: background-color 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--azul-primario);
    transition: transform 0.3s ease-in-out;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}


/* --- 2. HERO SECTION --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--branco);
    background: linear-gradient(rgba(39, 54, 116, 0.75), rgba(32, 93, 158, 0.65)), url('../img/hero-map3.jpg') no-repeat center center/cover;
    height: 70vh;
    /* Altura ajustada */
    min-height: 600px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 2.8rem;
    color: var(--branco);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.fade-in {
    animation: fadeIn 1.5s 0.2s ease-out forwards;
    opacity: 0;
}

.hero-subtitle.fade-in {
    animation-delay: 0.4s;
}

.hero-buttons.fade-in {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* --- 2.1. HERO2 SECTION --- */
.hero2 {
    width: 100%;
    margin-bottom: 0;
    height: 280px;
    /* ajuste conforme desejar */
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/hero-map4.jpg') center/cover no-repeat;
    /* se usar imagem */
    padding: 0;
    /* remova padding se quiser altura fixa */

}

.hero2-content {
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
}

.hero2 h1 {
    font-size: 2.8rem;
    color: var(--branco);
    margin-bottom: 1rem;
    line-height: 1.2;
    margin-top: 4.5rem;
    /* ajuste para centralizar verticalmente */
}

.hero2-subtitle {
    font-size: 1.2rem;
    color: var(--branco);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero2-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.fade-in {
    animation: fadeIn 1.5s 0.2s ease-out forwards;
    opacity: 0;
}

.hero2-subtitle.fade-in {
    animation-delay: 0.4s;
}

.hero2-buttons.fade-in {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* --- 2.2. HERO3 SECTION --- */

.hero3 {
    width: 100%;
    margin-bottom: 0;
    height: 280px;
    /* ajuste conforme desejar */
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/contact.png') center/cover no-repeat;
    /* se usar imagem */
    padding: 0;
    /* remova padding se quiser altura fixa */

}

.hero3-content {
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
}

.hero3 h1 {
    font-size: 2.8rem;
    color: var(--branco);
    margin-bottom: 1rem;
    line-height: 1.2;
    margin-top: 4.5rem;
    /* ajuste para centralizar verticalmente */
}

.hero3-subtitle {
    font-size: 1.2rem;
    color: var(--branco);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero3-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.fade-in {
    animation: fadeIn 1.5s 0.2s ease-out forwards;
    opacity: 0;
}

.hero3-subtitle.fade-in {
    animation-delay: 0.4s;
}

.hero3-buttons.fade-in {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* --- 3. SOBRE --- */
.about {
    background-color: var(--branco);
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* --- 4. SERVIÇOS --- */
#servicos {
    background: url('../img/fundo.png') center center/cover !important;
    background-color: transparent !important;
}

.servicos-interativos-container {
    display: flex;
    gap: 40px;
    /* Espaço entre a lista e o conteúdo */
    margin-top: 3rem;
}

/* Coluna da lista de serviços */
.servicos-lista {
    list-style: none;
    flex: 1;
    /* Ocupa 1 parte do espaço */
    padding: 0;
    margin: 0;
}

.servico-item {
    margin-bottom: 10px;
}

.servico-titulo {
    display: block;
    padding: 15px 28px;
    background-color: #f4f4f4;
    color: var(--texto-base);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    border-left: 5px solid transparent;
    transition: all 0.3s ease;
}

.servico-titulo:hover {
    background-color: #e9e9e9;
    color: var(--azul-primario);
}

/* Estilo do item ATIVO */
.servico-titulo.active {
    background-color: var(--branco);
    color: var(--azul-primario);
    border-left-color: var(--verde-vibrante);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

/* Coluna do conteúdo detalhado */
.servicos-conteudo {
    flex: 2;
    /* Ocupa 2 partes do espaço, é maior */
}

.servico-painel {
    display: none;
    /* Esconde todos por padrão */
    align-items: center;
    gap: 30px;
    animation: fadeInContent 0.5s ease;
}

/* Mostra apenas o painel ATIVO */
.servico-painel.active {
    display: flex;
}

.servico-ilustracao {
    flex-shrink: 0;
    max-width: 350px;
    /* Aumentamos um pouco o tamanho máximo */
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Garante que a imagem caiba sem distorcer */
    border-radius: 8px;
    /* Adiciona uma borda arredondada sutil */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Uma sombra leve para destacar */
    transition:
        transform 0.5s cubic-bezier(.23, 1.01, .32, 1),
        box-shadow 0.5s cubic-bezier(.23, 1.01, .32, 1),
        filter 0.3s;
    will-change: transform, box-shadow, filter;
    backface-visibility: hidden;
}

.servico-ilustracao:hover {
    transform:
        perspective(600px) scale(1.08) rotateY(4deg) rotateX(1deg) translateY(-10px);
    box-shadow:
        0 12px 36px rgba(32, 93, 158, 0.16),
        0 2px 8px rgba(0, 0, 0, 0.10);
    filter: brightness(1.12) saturate(1.08);
    z-index: 2;
}

.servico-descricao h3 {
    text-align: left;
    /* Alinha o h3 à esquerda */
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.servico-descricao p {
    font-size: 1.1rem;
    text-align: justify;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ajustes para telas menores */
@media (max-width: 768px) {
    .servicos-interativos-container {
        flex-direction: column;
    }

    .servico-painel.active {
        flex-direction: column;
        text-align: center;
    }

    .servico-descricao h3 {
        text-align: center;
    }
}


/* --- 5. PLATAFORMA G-AIA (FUNDO BRANCO) --- */
.gaia-platform {
    background-color: var(--cinza-fundo);
}

.gaia-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.gaia-logo {
    flex-shrink: 0;
    width: 180px;
    height: auto;
}

.gaia-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.gaia-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Parceiros e clientes */


/* Importa a fonte Inter do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Variáveis de Cor e Estilo para fácil manutenção */
:root {
    --color-primary: #205d9e;
    --color-primary-light: #e0edff;
    --color-text-dark: #334155;
    --color-icon-inactive: #64748b;
    --color-background: #ffffff;
    --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.07);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --border-radius: 12px;
    --transition-smooth: all 0.3s ease-in-out;
}

/* Estilos Globais da Seção */
.institutional-section {
    font-family: 'Inter', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    background-color: var(--color-background);
    text-align: justify;
    margin-bottom: 2.5rem;
}

/* 1. NAVEGAÇÃO POR ABAS */
.tab-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-icon-inactive);
    padding: 0.5rem 1rem 1rem 1rem;
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition-smooth);
}

.tab-button:hover {
    color: var(--color-primary);
}

/* Sublinhado da aba ativa */
.tab-button::after {
    content: '';
    position: absolute;
    bottom: -1px;
    /* Alinha com a borda da navegação */
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
}

/* Estilo da aba ativa */
.tab-button.active {
    color: var(--color-primary);
}

.tab-button.active::after {
    transform: scaleX(1);
}

/* Esconde o conteúdo das abas inativas */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 2. CARDS DE PARCEIROS */
.partners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.partner-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--color-background);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.partner-card__icon-wrapper {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--color-primary-light);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-primary);
}

.partner-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.partner-card__description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-dark);
}

.partner-card__logo-wrapper {
    margin-top: 1rem;
}

.partner-card__logo-wrapper img {
    max-height: 48px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.partner-card:hover .partner-card__logo-wrapper img {
    opacity: 1;
}

/* 3. GALERIA DE LOGOS DE CLIENTES */
.client-logo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.client-logo-item {
    background-color: var(--color-background);
    padding: 2rem;
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.client-logo-item img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.client-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.client-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* 4. RESPONSIVIDADE */
/* Para tablets e desktops menores */
@media (min-width: 768px) {
    .client-logo-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Para celulares */
@media (max-width: 767px) {
    .institutional-section {
        margin: 2rem auto;
        margin-bottom: 20px;
    }

    .tab-button {
        font-size: 0.95rem;
        gap: 0.5rem;
    }

    .tab-navigation {
        gap: 1rem;
    }

    .partner-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .partner-card__icon-wrapper {
        margin-bottom: 0.5rem;
    }
}


/* --- 6. CONTATO (FUNDO branco) --- */
.contact {
    background-color: var(--branco);
    text-align: center;
}

.contact h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.contact-subtitle {
    max-width: 650px;
    margin: -1rem auto 2rem auto;
    font-size: 1.1rem;
}


/* --- 7. RODAPÉ --- */
.footer {
    background-color: var(--texto-base);
    color: #a9a9a9;
    padding-top: 60px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column .logo {
    margin-bottom: 1rem;
}

.footer-column .logo img {
    height: 90px;
    /* ou outro valor maior que 65px */
    width: auto;
    transition: transform 0.3s, filter 0.3s;
}

.footer-column .logo-name {
    color: var(--branco);
    font-size: 1.4rem;
}

.footer-about-text {
    font-size: 0.9rem;
}

.footer-column h4 {
    color: var(--branco);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a,
.footer-column span {
    color: #a9a9a9;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--branco);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social a {
    color: #a9a9a9;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--branco);
}

.footer-social svg {
    fill: #a9a9a9;
    transition: fill 0.3s;
}

.footer-social a:hover svg {
    fill: var(--branco);
}


/* pagina sobre */
.sobre-container {
    padding: 5px 20px;
    background-color: #f9fafc;
    font-family: 'Inter', sans-serif;
}

.sobre-grid {
    max-width: 1200px;
    margin-top: 0;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Título principal da seção */
.sobre-texto h2 {
    font-size: 2.2rem;
    color: #205d9e;
    /* azul claro como 'Soluções Integradas' */
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}

/* Texto abaixo do título */
.sobre-texto p {
    font-size: 1rem;
    color: #374151;
    /* mesma cor da seção G-AIA */
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 400;
    text-align: justify;
}

.sobre-logo {
    float: left;
    width: 180px;
    /* ajuste conforme desejar */
    height: auto;
    margin: 0 1.2rem 1rem 0;
    shape-outside: circle(50%);
    /* arredonda o contorno do texto, opcional */
    border-radius: 50%;
    /* deixa a logo redonda, opcional */
    transition: transform 0.3s, filter 0.3s;
    /* adicione esta linha */
}

.sobre-logo:hover {
    transform: scale(1.05) rotate(-2deg);
    /* leve aumento e rotação ao passar o mouse */
    filter: brightness(1.1);
    /* leve brilho ao passar o mouse */
}

/* Cards */
.cards-sobre {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
}

.card {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border-left: 4px solid #2563eb;
}

.card:hover {
    transform: translateY(-5px);
}

/* Títulos dos cards */
.card h3 {
    font-size: 1.1rem;
    color: #205d9e;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Texto dos cards */
.card p {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.5;
    font-weight: 400;
}


/* --- ESTILO PARA PÁGINA DE SERVIÇOS (ACORDEÃO) --- */
.detalhe-servico-section {
    padding: 4rem 0;
    background-color: var(--cinza-fundo);
}

.detalhe-servico-section h2 {
    margin-bottom: 2rem;
}

.detalhe-servico-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.detalhe-servico-item {
    background-color: var(--branco);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.detalhe-servico-header {
    margin: 0;
}

.detalhe-servico-button {
    width: 100%;
    padding: 1.25rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--azul-primario);
    background-color: var(--branco);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.detalhe-servico-button:hover {
    background-color: #f8fafc;
}

.detalhe-servico-button::after {
    content: '\002B';
    /* Símbolo de + */
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--verde-vibrante);
    transition: transform 0.3s ease;
}

.detalhe-servico-button[aria-expanded="true"]::after {
    content: '\2212';
    /* Símbolo de - */
    transform: rotate(180deg);
}

.detalhe-servico-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.detalhe-servico-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.detalhe-servico-body h4 {
    color: var(--verde-secundario);
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.detalhe-servico-body ul {
    list-style-position: inside;
    padding-left: 0.5rem;
}

.detalhe-servico-body li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.detalhe-servico-body .call-to-action {
    margin-top: 2rem;
    text-align: right;
}


/*estilos_para contato */
/* --- ESTILOS PARA PÁGINA DE CONTATO --- */
.contact-section {
    padding: 4rem 0;
    background-color: var(--branco);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3, .contact-form h3 {
    font-size: 1.8rem;
    color: var(--azul-primario);
    margin-top: 0;
    margin-bottom: 1rem;
}

.contact-info p {
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-info svg {
    color: var(--verde-vibrante);
    flex-shrink: 0;
}

.contact-map {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

/* Formulário */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-notice {
    font-size: 0.8rem;
    color: #777;
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}

#form-status {
    margin-top: 1rem;
    font-weight: 700;
}

/* Responsividade */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* --- RESPONSIVIDADE (Mobile First) --- */
@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }

    .logo-name {
        display: none;
    }

    /* Esconde o nome no mobile para caber */

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 80%;
        height: calc(100vh - var(--header-height));
        background-color: var(--branco);
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
        gap: 30px;
        transition: right 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle.active .hamburger {
        background-color: transparent;
    }

    .nav-toggle.active .hamburger::before {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .nav-toggle.active .hamburger::after {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero {
        min-height: 550px;
    }

    .gaia-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
    }



}