/* ===========================================================
   1. CSS Variables (mescladas e consolidadas)
   As variáveis abaixo definem as cores e estilos base.
=========================================================== */
:root {
    --bg-color: #121212;
    --bg-color-heder: #000000;
    --card-bg: #1e1e1e;
    --text-color: #f2f2f2;
    --primary-color: #2a3d75;
    --primary-color-hover: #212f5b;
    --secondary-color: #d67c26;
    --secondary-color-hover: #a55f1e;
    --btn-hover: #333;
    --border-color: #333;
    --hover-color: #333;
  }
  
  /* ===========================================================
     2. Global Styles & Reset
  =========================================================== */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: var(--bg-color);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  main {
    flex: 1; /* Faz o conteúdo principal expandir, empurrando o footer para baixo */
}
  
  /* Headings e Parágrafos */
  h1 {
    font-size: 2.5rem;
    font-weight: 700;
  }
  
  /* Parágrafos com espaçamento e largura máxima */
  p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: auto;
  }
  
  /* ===========================================================
     3. Scrollbar Customizado
  =========================================================== */
  ::-webkit-scrollbar {
    width: 10px;  /* Rolagem vertical */
    height: 10px; /* Rolagem horizontal */
  }
  
  ::-webkit-scrollbar-track {
    background: var(--bg-color);
    border-radius: 5px;
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color-hover);
  }
  
  /* ===========================================================
     4. Navbar
  =========================================================== */
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* Garante que o header fique sobre outros elementos */
    background-color: var(--bg-color-heder); /* Exemplo de fundo */
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  .menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
  }
  
  .menu .logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-color);
  }
  
  .menu-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .menu-links li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    transition: color 0.3s;
  }
  
  .menu-links li a:hover {
    color: #198640;
  }
  
  .menu-toggle {
    display: none;
  }
  
  .seguro-detalhes {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    margin-top: 50px;
}

.container {
    max-width: 800px;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 0px 0px 12px 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: fadeIn 0.6s ease-in-out;
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.container img {
    width: 40%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 3px solid var(--border-color);
}

p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* ==========================================
   3. Botão "Saiba Mais"
========================================== */
.btn {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 16px;
    transition: 0.3s;
}

.btn:hover {
    background: var(--secondary-color-hover);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   4. Rodapé
========================================== */
footer {
    text-align: center;
    padding: 15px;
    background: var(--bg-color-heder);
    font-size: 14px;
    margin-top: auto;

    width: 100%;
    background-color: var(--bg-color-heder); /* Cor de fundo */
    color: var(--text-color); /* Cor do texto */
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* ===== Seção Parceiros + Rodapé ===== */
.partners-footer {
    background: #121212;  /* Preto suave para o fundo */
    color: var(--text-color);
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid white;
  }
  
  /* ===== Estilização dos Parceiros ===== */
  .partners-container h2 {
    font-size: 2.5rem;
    color: var(--primary-color); /* Cor azul para destaque */
    margin-bottom: 30px;
  }
  
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
  }
  
  .partner img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  .partner img:hover {
    transform: scale(1.1);
  }
  
  /* ===== Estilização do Rodapé ===== */
  .footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: var(--bg-color-header);
    color: var(--text-color);
    flex-wrap: wrap;
    text-align: center;
    gap: 100px;

}
  
  .contact-info p {
    font-size: 1rem;
    margin: 5px 0;
    color: #ccc;
  }
  
  .contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
  }
  
  .social-media {
    margin-top: 15px;
  }
  
  .social-media a {
    display: inline-block;
    margin: 0 10px;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .social-media a:hover {
    color: var(--text-color);
    transform: scale(1.2);
  }
  
/* ==========================================
   5. Responsividade
========================================== */
@media (max-width: 768px) {
  .menu-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: rgb(0, 0, 0);
    width: 100%;
    text-align: center;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.menu-links.active {
    display: flex;
}

.menu-toggle {
    display: block;
}
    .container {
        width: 90%;
        padding: 20px;
    }

    h1 {
        font-size: 24px;
    }

    p {
        font-size: 16px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ==========================================
   6. Animação Fade-In
========================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}