.main-nav {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    transform: translateY(-1px);
}

/* Ícone no nav-link */
.nav-link i {
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.nav-link:hover i {
    transform: scale(1.1);
}



/* 
   DROPDOWN STYLES - REMOVIDOS (não usado mais)
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(18,18,18,0.95);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 0.5rem 0;
  z-index: 1001;
  backdrop-filter: blur(8px);
}
.nav-item:hover > .dropdown-menu,
.nav-item:focus-within > .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  width: 100%;
}
.dropdown-menu a {
    display: block;
    color: #fff;
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}
.dropdown-menu a:hover {
  background: rgba(255,255,255,0.10);
  color: #fff;
}
*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Evita scroll horizontal indesejado */
}

body{
    color: aliceblue;
    background-color: #121212;
    font-size: 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden; /* Evita scroll horizontal indesejado */
}

/* Header transparente */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(18, 18, 18, 0.2); /* preto transparente */
  backdrop-filter: blur(8px);
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: background 0.3s;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px;
}

.main-nav {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    text-decoration: none;
}

.nav-link:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    transform: translateY(-1px);
}

.nav-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

/* Remover rotação da seta (não usado mais)
.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}
*/

/* 
   DROPDOWN MENU STYLES - REMOVIDOS (não usado mais)
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: rgba(18, 18, 18, 0.25);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
    border-radius: 12px;
    padding: 0.75rem 0;
    z-index: 1001;
    border: 1px solid rgba(255,255,255,0.1);
    animation: dropdownFadeIn 0.3s ease-out;
    transform-origin: top center;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.nav-item:hover > .dropdown-menu,
.nav-item:focus-within > .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    width: 100%;
    position: relative;
    list-style: none;
}

.dropdown-menu a {
    display: block;
    color: #fff;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 400;
    border-radius: 0;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    transition: width 0.3s ease;
    z-index: -1;
}

.dropdown-menu a:hover::before {
    width: 100%;
}

.dropdown-menu a:hover {
    background: transparent;
    color: #fff;
    padding-left: 2rem;
    transform: translateX(4px);
}
*/

/* Área direita do header */
.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.candidaturas-btn,
.portal-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.candidaturas-btn {
    background: rgba(0, 255, 98, 0.25);
    color: white;
}

.candidaturas-btn:hover {
    transform: translateY(-2px);
}

.portal-btn {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.portal-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-1px);
}

/* Seletor de idioma */
.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.lang-active {
    color: #fff;
    cursor: default;
}

.lang-separator {
    color: rgba(255,255,255,0.5);
}

.lang-option {
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: color 0.3s ease;
}

.lang-option:hover {
    color: #fff;
}

/* ========================================
   MENU MOBILE - DESIGN MODERNO E RESPONSIVO
======================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 0.7rem;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
    min-width: 44px;
    min-height: 44px;
}

.mobile-menu-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.mobile-menu-toggle:hover::before {
    left: 100%;
}

.mobile-menu-toggle:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.3);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.hamburger {
    width: 24px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    position: relative;
}

.hamburger::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #fff, #e0e0e0);
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-toggle:hover .hamburger::before {
    opacity: 1;
}

/* =============================
   HERO SECTION - SPLIT PANELS
   Comportamento: 35%|35%|35% padrão
   Com hover: coluna ativa 60%, outras 20%
============================= */
/* ========================================
   HERO SECTION - THREE COLUMN SPLIT WITH INTERACTIVE BEHAVIOR
   Estado padrão: 35% | 35% | 35%
   Estado hover: 60% | 20% | 20% (ou variações)
======================================== */
.hero {
    width: 100%;
    min-height: 100vh;
    display: flex;
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
    margin-top: 0; /* Compensar altura do header fixo */
}

/* ========================================
   TEXTO CENTRAL FIXO - SEMPRE VISÍVEL
======================================== */
.hero-fixed-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    pointer-events: none;
    width: 100%;
    max-width: 600px;
}

.hero-fixed-center .hero-main-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.8);
    line-height: 1;
}

.hero-fixed-center .hero-main-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    margin-top: 1rem;
}

/* Estado padrão: cada coluna ocupa 35% (aproximadamente 1/3) */
.hero-column {
    flex: 0 0 35%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    min-height: 100vh;
    cursor: pointer;
    transition: flex-basis 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Quando hover na seção hero, prepara as colunas para mudança */
.hero:hover .hero-column {
    flex: 0 0 20%;
}

/* Coluna com hover expande para 60% */
.hero:hover .hero-column:hover,
.hero-column--expanded {
    flex: 0 0 60% !important;
}

/* Suaviza a transição de volta ao estado padrão */
.hero:not(:hover) .hero-column {
    flex: 0 0 35%;
}

/* Imagem de fundo para cada coluna */
.hero-column img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

}

/* Overlay gradiente colorido na parte inferior */
.hero-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 40%;
    pointer-events: none;
    transition: opacity 0.3s ease, height 0.3s ease;
}

/* Overlay mais intenso na coluna com hover */
.hero:hover .hero-column:not(:hover) .hero-overlay {
    opacity: 0.7;
}

.hero:hover .hero-column:hover .hero-overlay {
    height: 45%;
    opacity: 1;
}

.hero-overlay--orange {
    background: linear-gradient(0deg, #ffb800 0%, rgba(255, 184, 0, 0.9) 60%, transparent 100%);
}

.hero-overlay--green {
    background: linear-gradient(0deg, #00b67a 0%, rgba(0, 182, 122, 0.9) 60%, transparent 100%);
}

.hero-overlay--cyan {
    background: linear-gradient(0deg, #00b6e3 0%, rgba(0, 182, 227, 0.9) 60%, transparent 100%);
}

/* Conteúdo da coluna (ícone e texto) */
.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    color: #fff;
    text-align: center;
    width: 100%;
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1),
                opacity 0.3s ease;
}

/* Conteúdo das colunas não-hover fica levemente transparente */
.hero:hover .hero-column:not(:hover) .hero-content {
    opacity: 0.75;
}

/* Conteúdo da coluna com hover fica mais destacado */
.hero:hover .hero-column:hover .hero-content {
    opacity: 1;
}

/* Ícone */
.hero-icon {
    margin-bottom: 1rem;
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.hero-icon svg {
    width: 56px;
    height: 56px;
    stroke: #fff;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    transition: filter 0.3s ease;
}

/* Ícone com animação ao hover */
.hero:hover .hero-column:hover .hero-icon {
    transform: translateY(0);
}

.hero:hover .hero-column:hover .hero-icon svg {
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}

/* Texto "+ Resilientes", "+ Digitais" */
.hero-label {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    text-transform: none;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    transition: font-size 0.3s ease, letter-spacing 0.3s ease;
}

/* Label com destaque ao hover */
.hero:hover .hero-column:hover .hero-label {
    font-size: 1.5rem;
    letter-spacing: 0.02em;
}

/* Coluna central com título principal */
.hero-column--center {
    align-items: center;
    justify-content: center;
}

.hero-content--center {
    justify-content: flex-end;
    padding: 4rem 2rem;
    height: 100%;
}

/* Conteúdo inferior da coluna central */
.hero-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
}

/* ========================================
   HERO BUTTONS - BOTÕES NAS COLUNAS
======================================== */
.hero-button-container {
    margin-top: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-button {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    min-width: 140px;
    justify-content: center;
}

.hero-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-button--orange {
    background: rgba(255, 184, 0, 0.2);
    border-color: rgba(255, 184, 0, 0.4);
}

.hero-button--orange:hover {
    background: rgba(255, 184, 0, 0.3);
    border-color: rgba(255, 184, 0, 0.6);
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

.hero-button--green {
    background: rgba(211, 224, 220, 0.212);
    border-color: rgba(0, 182, 122, 0.4);
}

.hero-button--green:hover {
    background: rgba(0, 182, 122, 0.3);
    border-color: rgba(0, 182, 122, 0.6);
    box-shadow: 0 4px 15px rgba(0, 182, 122, 0.3);
}

.hero-button--cyan {
    background: rgba(0, 182, 227, 0.2);
    border-color: rgba(0, 182, 227, 0.4);
}

.hero-button--cyan:hover {
    background: rgba(0, 182, 227, 0.3);
    border-color: rgba(0, 182, 227, 0.6);
    box-shadow: 0 4px 15px rgba(0, 182, 227, 0.3);
}

.hero-button i {
    font-size: 0.8rem;
}

/* Responsividade para Mobile e Tablet */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        min-height: auto;
    }

    .hero-column {
        flex: 1 1 auto !important; /* Desabilita o comportamento de expansão no mobile */
        min-height: 50vh;
        width: 100%;
        cursor: default;
    }

    /* Desabilita efeitos hover no mobile */
    .hero:hover .hero-column {
        flex: 1 1 auto !important;
        opacity: 1;
    }

    .hero:hover .hero-column:hover {
        flex: 1 1 auto !important;
    }

    .hero:hover .hero-column:not(:hover) .hero-content,
    .hero:hover .hero-column:not(:hover) .hero-overlay {
        opacity: 1;
        transform: none;
    }

    .hero-main-title {
        font-size: 2.5rem;
    }

    .hero-main-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .hero-label {
        font-size: 1.2rem;
    }

    .hero-icon svg {
        width: 48px;
        height: 48px;
    }

    .hero-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        min-width: 120px;
    }

    .hero-button-container {
        margin-top: 1.5rem;
    }

    .hero-fixed-center .hero-main-title {
        font-size: 2.5rem;
    }

    .hero-fixed-center .hero-main-subtitle {
        font-size: 1rem;
    }
}

/* ========================================
   CONTENT SECTION - CONTAINER DE CONTEÚDO
======================================== */
.content-section {
    background: #f5f5f5;
    padding: 6rem 0;
    width: 100%;
    position: relative; /* Garante que está no fluxo normal do documento */
    z-index: 1; /* Fica abaixo do header mas acima do hero */
}

.content-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.content-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-subtitle {
    font-size: 0.85rem;
    font-weight: 200;
    color: #00b67a;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    margin-bottom: 1.0rem;
}

.content-title {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    font-weight: 200;
    color: #2a2a2a;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-align: justify;
}

.content-description {
    font-size: clamp(1.0rem, 2vw, 1.0rem);
    font-weight: 200;
    color: #2a2a2a;
    line-height: 1.2;
    text-align: justify;
}

.content-title .highlight,
.content-description .highlight {
    color: #00b67a;
    font-weight: 600;
}

/* ========================================
   IMPACT SECTION - ESTATÍSTICAS DO GCPRE
======================================== */
.impact-section {
    max-width: 1200px;
    margin: 5rem auto 4rem;
    padding: 0 2rem;
    text-align: center;
}

.impact-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 0.5rem;
}

.impact-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    font-weight: 400;
    color: #666;
    margin-bottom: 3rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.impact-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e0e0e0;
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #00b67a;
}

.impact-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.impact-number--blue {
    color: #1e40af;
}

.impact-number--green {
    color: #00b67a;
}

.impact-number--orange {
    color: #f59e0b;
}

.impact-label {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Divisões com Imagem e Texto */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 4rem;
    min-height: 500px;
    width: 100%;
}

.content-split--large {
    min-height: 500px;
}

.content-split--reverse {
    direction: ltr;
}

.content-split__left,
.content-split__right {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Lado com cor de fundo e texto */
.content-split__left--orange {
    background: #ffb800;
    color: #fff;
    padding: 4rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.content-split__right--green {
    background: #00b67a;
    color: #fff;
    padding: 4rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.content-split__left--cyan {
    background: #00b8d4;
    color: #fff;
    padding: 4rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

/* Padrão de ícones no fundo */
.content-split__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><circle cx="50" cy="50" r="30" fill="none" stroke="white" stroke-width="2"/><rect x="120" y="20" width="60" height="60" fill="none" stroke="white" stroke-width="2"/><path d="M 20 130 L 80 130 L 50 170 Z" fill="none" stroke="white" stroke-width="2"/></svg>');
    background-repeat: repeat;
    background-size: 150px;
    pointer-events: none;
}

.content-split__subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.content-split__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

/* Lado com imagem */
.content-split__left img,
.content-split__right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Carrossel de Imagens */
.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Responsividade */
@media (max-width: 1200px) {
    .content-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .content-split__left,
    .content-split__right {
        min-height: 400px;
    }

    .content-split--reverse {
        direction: ltr;
    }

    .content-split--reverse .content-split__left {
        order: 1;
    }

    .content-split--reverse .content-split__right {
        order: 2;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .content-section {
        padding: 4rem 1.5rem;
    }

    .content-subtitle {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .content-title,
    .content-description {
        text-align: left;
    }

    /* Impact Section Mobile */
    .impact-section {
        margin: 3rem auto 2rem;
        padding: 0 1rem;
    }

    .impact-title {
        font-size: 1.8rem;
    }

    .impact-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .impact-card {
        padding: 2rem 1.5rem;
    }

    .impact-number {
        font-size: 2.5rem;
    }

    .impact-label {
        font-size: 0.85rem;
    }
}

/* ========================================
   MILESTONES SECTION - MARCOS E METAS
======================================== */
.milestones-section {
    background: #fff;
    padding: 6rem 2rem;
}

.milestones-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.milestones-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #00b67a;
    margin-bottom: 3rem;
}

.milestones-chart {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.chart-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
}

.donut-chart {
    width: 100%;
    height: 100%;
}

/* Animações para o gráfico */
.chart-progress {
    transition: stroke-dasharray 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.chart-percentage {
    transition: opacity 0.3s;
    animation: fadeInScale 1s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        font-size: 0;
    }
    to {
        opacity: 1;
        font-size: 40px;
    }
}

.chart-label {
    position: absolute;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    background: #fff;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.chart-label:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: #00b67a;
}

.chart-label--top {
    top: 10%;
    right: 15%;
}

.chart-label--bottom {
    bottom: 20%;
    left: 25%;
}

.chart-label--left {
    top: 50%;
    left: -5%;
    transform: translateY(-50%);
}

.chart-label--right {
    top: 45%;
    right: -8%;
}

.milestones-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 0.5rem;
}

.milestones-total {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

.total-count {
    color: #00b67a;
    font-size: 1.3rem;
    font-weight: 700;
}

.milestones-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: #f5f5f5;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.legend-item--animated {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease-out forwards;
}

.legend-item--animated:nth-child(1) {
    animation-delay: 0.2s;
}

.legend-item--animated:nth-child(2) {
    animation-delay: 0.4s;
}

.legend-item--animated:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.legend-item:hover {
    background: #e8f5e9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 182, 122, 0.2);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.legend-dot--dark-green {
    background: #1b5e20;
}

.legend-dot--light-green {
    background: #66bb6a;
}

.legend-dot--very-light-green {
    background: #a5d6a7;
}

.legend-text {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.legend-count {
    font-size: 1rem;
    font-weight: 700;
    color: #00b67a;
    margin-left: 0.3rem;
}

.milestones-date {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Responsividade */
@media (max-width: 768px) {
    .milestones-section {
        padding: 4rem 1.5rem;
    }

    .chart-wrapper {
        width: 300px;
        height: 300px;
    }

    .chart-label {
        font-size: 0.9rem;
        padding: 0.2rem 0.4rem;
    }

    .milestones-legend {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

/* ========================================
   NEWS SECTION - NOTÍCIAS
======================================== */
.news-section {
    background: #f5f5f5;
    padding: 6rem 2rem;
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.news-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #00b67a;
    letter-spacing: 0.1em;
}

.news-view-all {
    padding: 0.8rem 2rem;
    border: 2px solid #00b67a;
    border-radius: 25px;
    color: #00b67a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.news-view-all:hover {
    background: #00b67a;
    color: #fff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.news-card__image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card__image img {
    transform: scale(1.05);
}

.news-card__tags {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.news-tag {
    background: rgba(255,255,255,0.95);
    color: #00b67a;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.news-card__content {
    padding: 1.5rem;
}

.news-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2a2a2a;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.news-card__excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #00b67a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.news-card__link:hover {
    gap: 0.8rem;
}

.news-card__link svg {
    transition: transform 0.3s ease;
}

.news-card__link:hover svg {
    transform: translateX(4px);
}

/* Responsividade */
@media (max-width: 768px) {
    .news-section {
        padding: 4rem 1.5rem;
    }

    .news-header {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .news-card__image {
        height: 200px;
    }
}

/* ========================================
   GROUND SECTION - gcrpe NO TERRENO
======================================== */
.ground-section {
    background: #fff;
    padding: 6rem 2rem;
}

.ground-container {
    max-width: 1400px;
    margin: 0 auto;
}

.ground-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #00b67a;
    margin-bottom: 1rem;
}

.ground-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #00b67a;
    margin-bottom: 3rem;
}

.ground-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.video-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.video-card__thumbnail {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #000;
}

.video-card__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-card:hover .video-card__thumbnail img {
    transform: scale(1.05);
    opacity: 0.8;
}

.video-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.video-card:hover .video-card__play {
    transform: translate(-50%, -50%) scale(1.15);
}

.video-card__play svg {
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.video-card__title {
    padding: 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: #2a2a2a;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ground-footer {
    display: flex;
    justify-content: flex-end;
}

.ground-view-all {
    padding: 0.8rem 2rem;
    border: 2px solid #00b67a;
    border-radius: 25px;
    color: #00b67a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.ground-view-all:hover {
    background: #00b67a;
    color: #fff;
}

/* Responsividade */
@media (max-width: 768px) {
    .ground-section {
        padding: 4rem 1.5rem;
    }

    .ground-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .video-card__thumbnail {
        height: 220px;
    }

    .ground-footer {
        justify-content: center;
    }
}

/* ========================================
   FOOTER - RODAPÉ
======================================== */
.footer {
    background: #2a3a3f;
    color: #fff;
    position: relative;
}

.footer-top {
    padding: 4rem 2rem 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.footer-email,
.footer-address {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

.footer-button {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: #fff;
    color: #2a3a3f;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-self: flex-start;
}

.footer-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}

.footer-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fff;
}

.footer-column--newsletter {
    max-width: 400px;
}

.footer-newsletter-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.footer-newsletter-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-checkbox {
    display: flex;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
}

.footer-checkbox input[type="checkbox"] {
    margin-top: 0.2rem;
    cursor: pointer;
}

.footer-email-input {
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: #fff;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.footer-email-input:focus {
    outline: none;
    border-color: #00b67a;
}

.footer-email-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.footer-subscribe-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    color: #00b67a;
    border: 2px solid #00b67a;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.footer-subscribe-btn:hover {
    background: #00b67a;
    color: #fff;
}

.footer-social {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    color: #00b67a;
    transform: translateY(-4px);
}

.footer-bottom {
    background: #1f2d32;
    padding: 2rem;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-logos {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-logo {
    height: 50px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-align: right;
}

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #00b67a;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, background 0.3s ease;
    z-index: 100;
}

.scroll-to-top:hover {
    background: #009960;
    transform: translateY(-4px);
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-top {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-logos {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-logo {
        height: 40px;
    }

    .footer-copyright {
        text-align: center;
    }

    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: auto;
        margin-top: 70px; /* Mantém compensação do header fixo */
    }

    .hero-column {
        min-height: 40vh;
    }

    .hero-main-title {
        font-size: 2rem;
    }

    .hero-main-subtitle {
        font-size: 1rem;
    }
}

/* ========================================
   RESPONSIVIDADE GERAL
======================================== */

/* Desktop pequeno / Laptop */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }

    /* .dropdown-menu {
        min-width: 250px;
    } */

    .header-right {
        gap: 1rem;
    }

    .candidaturas-btn,
    .portal-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Tablet */
@media (max-width: 900px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    /* .dropdown-menu {
        min-width: 220px;
        font-size: 0.9rem;
    } */
    
    .header-right {
        gap: 0.8rem;
    }
    
    .candidaturas-btn,
    .portal-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .language-selector {
        font-size: 0.85rem;
    }
}

/* ========================================
   RESPONSIVIDADE - MENU MOBILE OTIMIZADO
======================================== */
@media (max-width: 768px) {
    /* Header ajustes para mobile */
    .container {
        padding: 0 1rem;
        height: 60px;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo img {
        height: 32px !important;
    }
    
    /* Esconder menu desktop */
    .main-nav .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(18,18,18,0.98), rgba(10,10,10,0.99));
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        z-index: 999;
        overflow-y: auto;
        overflow-x: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-30px) scale(0.95);
        transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
        padding-top: env(safe-area-inset-top, 0);
        /* Garantir espaço suficiente para scroll */
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Menu ativo - animação de entrada */
    .nav-menu.mobile-active {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 2rem 1rem 3rem;
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        min-height: calc(100vh - 60px);
    }
    
    /* Container para itens do menu */
    .nav-menu.mobile-active::before {
        content: '';
        flex: 0 0 auto;
        height: 1rem;
    }
    
    /* Animação de entrada sequencial dos itens */
    .nav-menu.mobile-active .nav-item {
        width: 100%;
        margin: 0.4rem 0;
        opacity: 0;
        transform: translateX(-30px);
        animation: slideInLeft 0.6s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
    }
    
    .nav-menu.mobile-active .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.mobile-active .nav-item:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.mobile-active .nav-item:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.mobile-active .nav-item:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.mobile-active .nav-item:nth-child(5) { animation-delay: 0.5s; }
    
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* Estilo dos links no menu mobile */
    .nav-menu.mobile-active .nav-link {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 1rem 1.5rem;
        border-radius: 14px;
        margin: 0;
        font-size: 1rem;
        font-weight: 600;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.12);
        transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
        position: relative;
        overflow: hidden;
        min-height: 54px;
        gap: 0.8rem;
    }
    
    /* Efeito de brilho nos links */
    .nav-menu.mobile-active .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
        transition: left 0.6s ease;
    }
    
    .nav-menu.mobile-active .nav-link:hover::before {
        left: 100%;
    }

    .nav-menu.mobile-active .nav-link:hover {
        background: rgba(0, 182, 122, 0.15);
        border-color: rgba(0, 182, 122, 0.3);
        transform: translateX(8px) translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 182, 122, 0.25);
    }
    
    .nav-menu.mobile-active .nav-link:active {
        transform: translateX(4px) scale(0.98);
    }

    /* Ícones nos links mobile */
    .nav-menu.mobile-active .nav-link i {
        font-size: 1.1rem;
        color: rgba(255,255,255,0.8);
        transition: all 0.3s ease;
        min-width: 20px;
    }
    
    .nav-menu.mobile-active .nav-link:hover i {
        color: #00b67a;
        transform: scale(1.2);
    }

    /* Botão Início - destaque especial no mobile */
    .nav-menu.mobile-active .nav-item:first-child .nav-link {
        background: linear-gradient(135deg, rgba(0, 182, 122, 0.2), rgba(0, 182, 122, 0.15));
        border: 2px solid rgba(0, 182, 122, 0.4);
        box-shadow: 0 4px 20px rgba(0, 182, 122, 0.2);
        position: relative;
    }
    
    .nav-menu.mobile-active .nav-item:first-child .nav-link::after {
        content: '●';
        position: absolute;
        right: 1.5rem;
        color: #00b67a;
        font-size: 0.8rem;
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.6; transform: scale(1.2); }
    }

    .nav-menu.mobile-active .nav-item:first-child .nav-link:hover {
        background: linear-gradient(135deg, rgba(0, 182, 122, 0.3), rgba(0, 182, 122, 0.25));
        border-color: rgba(0, 182, 122, 0.6);
        box-shadow: 0 8px 30px rgba(0, 182, 122, 0.35);
        transform: translateX(12px) translateY(-3px);
    }

    /* Botão hamburger no mobile */
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
        order: 3;
    }
    
    .mobile-menu-toggle.active {
        background: rgba(0, 182, 122, 0.25);
        border-color: rgba(0, 182, 122, 0.5);
        box-shadow: 0 4px 15px rgba(0, 182, 122, 0.3);
    }
    
    /* Animação do X no hamburger */
    .mobile-menu-toggle.active .hamburger:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 7px);
        background: #00b67a;
        box-shadow: 0 2px 8px rgba(0, 182, 122, 0.4);
    }
    
    .mobile-menu-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
        transform: translateX(30px) scale(0);
    }
    
    .mobile-menu-toggle.active .hamburger:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -7px);
        background: #00b67a;
        box-shadow: 0 2px 8px rgba(0, 182, 122, 0.4);
    }

    /* Esconder área direita do header */
    .header-right {
        display: none;
    }

    /*
       DROPDOWNS MOBILE - REMOVIDOS (não usado mais)
    .dropdown-menu {
        position: static;
        display: none;
        background: linear-gradient(135deg, rgba(0, 182, 122, 0.08), rgba(0, 182, 122, 0.12));
        box-shadow: inset 0 2px 12px rgba(0, 182, 122, 0.15);
        border-radius: 12px;
        margin: 0.5rem 0 0 0;
        padding: 1rem 0;
        border: 1px solid rgba(0, 182, 122, 0.25);
        backdrop-filter: blur(10px);
        max-height: none;
        overflow: visible;
        width: 100%;
    }

    .nav-item.mobile-dropdown-open .dropdown-menu {
        display: block;
        animation: expandDown 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
        max-height: none;
    }

    @keyframes expandDown {
        from {
            opacity: 0;
            transform: translateY(-15px) scale(0.95);
            max-height: 0;
            padding-top: 0;
            padding-bottom: 0;
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
            max-height: 500px;
            padding-top: 1rem;
            padding-bottom: 1rem;
        }
    }

    .dropdown-menu a {
        display: block;
        padding: 1rem 2rem 1rem 3.5rem;
        font-size: 0.95rem;
        font-weight: 500;
        border-radius: 10px;
        margin: 0.3rem 1rem;
        transition: all 0.3s ease;
        position: relative;
        border-left: 3px solid transparent;
        min-height: 50px;
        line-height: 1.4;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .dropdown-menu a::before {
        content: '▸';
        position: absolute;
        left: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(255,255,255,0.5);
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }

    .dropdown-menu a:hover {
        background: rgba(0, 182, 122, 0.2);
        border-left-color: #00b67a;
        transform: translateX(8px);
        box-shadow: 0 3px 12px rgba(0, 182, 122, 0.2);
    }
    
    .dropdown-menu a:hover::before {
        color: #00b67a;
        transform: translateX(3px);
    }
    */

    /* Overlay para fechar menu - melhorado */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.6);
        backdrop-filter: blur(3px);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }
    
    /* Ajustes para telas muito pequenas */
    @media (max-width: 480px) {
        .nav-menu.mobile-active {
            padding: 1.5rem 0.5rem 2rem;
            min-height: calc(100vh - 60px);
        }
        
        .nav-menu.mobile-active .nav-link {
            padding: 0.9rem 1rem;
            font-size: 0.9rem;
            min-height: 0px;
        }
        
        /* Dropdowns em telas pequenas */
        .dropdown-menu a {
            padding: 0.8rem 1.5rem 0.8rem 2.5rem;
            font-size: 0.85rem;
            margin: 0.2rem 0.5rem;
            min-height: 0px;
        }
        
        .dropdown-menu a::before {
            left: 1rem;
            font-size: 0.8rem;
        }
        
        .mobile-menu-toggle {
            padding: 0.6rem;
            min-width: 40px;
            min-height: 40px;
        }
        
        .hamburger {
            width: 22px;
            height: 2.5px;
        }
    }
    
    /* Ajustes adicionais para telas extra pequenas */
    @media (max-width: 360px) {
        .nav-menu.mobile-active {
            padding: 1rem 0.3rem 1.5rem;
            min-height: calc(100vh - 60px);
        }
        
        .nav-menu.mobile-active .nav-link {
            padding: 0.8rem 0.8rem;
            font-size: 0.85rem;
            min-height: 0px;
        }
        
        .dropdown-menu a {
            padding: 0.7rem 1.2rem 0.7rem 2.2rem;
            font-size: 0.8rem;
            margin: 0.1rem 0.3rem;
            min-height: 0px;
        }
        
        .dropdown-menu {
            margin: 0.3rem 0 0 0;
            padding: 0.8rem 0;
        }
        
        @keyframes expandDown {
            from {
                opacity: 0;
                transform: translateY(-10px) scale(0.98);
                max-height: 0;
                padding-top: 0;
                padding-bottom: 0;
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
                max-height: 600px;
                padding-top: 0.8rem;
                padding-bottom: 0.8rem;
            }
        }
    }
    
    /* Melhorias para acessibilidade */
    @media (prefers-reduced-motion: reduce) {
        .nav-menu.mobile-active .nav-item {
            animation: none;
            opacity: 1;
            transform: none;
        }
        
        .nav-menu.mobile-active {
            transition: opacity 0.2s ease;
        }
        
        .mobile-menu-toggle .hamburger {
            transition: none;
        }
    }
}