/*=========================================
  VARIÁVEIS E CONFIGURAÇÕES GLOBAIS
=========================================*/
:root {
    --primary: #0A4D40;
    --primary-light: #126e5c;
    --secondary: #F18F1C;
    --secondary-light: #ffb05c;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #EEEEEE;
    --dark-gray: #333333;
    --black: #111111;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 10px 30px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --border-radius-lg: 16px;
  }
  
  /*=========================================
    RESET E ESTILOS BASE
  =========================================*/
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
  }
  
  section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
  }
  
  p {
    margin-bottom: 20px;
  }
  
  /* Botões */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
  }
  
  .btn-primary {
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(241, 143, 28, 0.3);
  }
  
  .btn-primary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(241, 143, 28, 0.4);
  }
  
  .btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.6s, opacity 0.6s;
  }
  
  .btn-primary:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  
  /*=========================================
    MENU DE NAVEGAÇÃO
  =========================================*/
  .main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
  }
  
  .logo-img {
    height: 75px;
    margin: 8px 0;
    width: auto;
    display: block; /* Garante que a imagem é exibida corretamente */
  }
  
  .main-nav {
    display: flex;
    align-items: center;
  }
  
  .nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    height: 100%;
    align-items: center;
  }
  
  .nav-list li {
    display: flex;
    align-items: center;
    height: 100%;
  }
  
  .nav-list li a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  
  .nav-list li a:hover {
    color: var(--secondary);
  }
  
  .nav-button {
    background-color: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    display: flex;          /* Adicione estas três */
    align-items: center;    /* propriedades para */
    justify-content: center; /* alinhamento perfeito */
    line-height: 1;          /* Normaliza a altura da linha */
    height: fit-content;     /* Altura adequada ao conteúdo */
  }
  
  .nav-button:hover {
    background-color: var(--primary-light);
  }
  
  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
  }
  
  .mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
  }
  
  /*=========================================
    RESPONSIVIDADE
  =========================================*/
  
  @media (max-width: 1200px) {
    .container {
      max-width: 992px;
    }
  
  }
  
  @media (max-width: 992px) {
    .container {
      max-width: 768px;
    }
    
    section {
      padding: 60px 0;
    }
    
    /* Menu responsivo - 992px */
    .nav-list {
      display: none;
      height: calc(100vh - 350px);
      position: fixed;
      overflow-y: auto;
      z-index: 9999;
      background: rgba(255, 255, 255, 0.95);
    }

    /* Se o navegador entende svh, substitui */
    @supports (height:100svh) {
        .nav-list { 
            height:calc(100svh - 350px); 
        }
    }
    
    .mobile-menu-toggle {
      display: flex;
    }
    
    .section-title {
      font-size: 30px;
    }
    
  }
  
  @media (max-width: 768px) {
    .container {
      max-width: 100%;
      padding: 0 16px;
    }
    
    section {
      padding: 50px 0;
    }
    
    .btn {
      padding: 12px 24px;
      font-size: 15px;
    }
  
  }
  
  @media (max-width: 576px) {
    section {
      padding: 40px 0;
    }
    
  }