/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Container padrão */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* Cabeçalho */
header {
    background: linear-gradient(135deg, #003366, #0056b3);
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

header h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

header p {
    font-size: 1.2rem;
    margin-top: 10px;
    opacity: 0.9;
}

header .btn {
    display: inline-block;
    background: #ffcc00;
    color: #003366;
    padding: 12px 25px;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    transition: 0.3s;
}

header .btn:hover {
    background: #ffdb4d;
}

/* Seção Informações */
.informacoes {
    background: white;
    padding: 60px 0;
    text-align: center;
}

.informacoes h2 {
    color: #003366;
    font-size: 2rem;
    margin-bottom: 20px;
}

.informacoes p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #444;
    margin-bottom: 10px;
}

/* Seção de Serviços */
.servicos {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.servicos h2 {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colunas */
    gap: 20px; /* Espaçamento entre os cards */
    max-width: 900px;
    margin: 0 auto;
  }
  
  .card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.card p {
    font-size: 1rem;
    color: #555;
}

.card:hover {
    background: #003366;
    color: white;
    transform: translateY(-5px);
}

.card:hover p {
    color: white;
}

/* Seção Benefícios */
.beneficios {
    background: white;
    padding: 60px 0;
}

.beneficios h2 {
    text-align: center;
    font-size: 2rem;
    color: #003366;
    margin-bottom: 20px;
}

.beneficios ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.beneficios ul li {
    font-size: 1.1rem;
    background: url('https://cdn-icons-png.flaticon.com/512/845/845646.png') no-repeat left center;
    background-size: 22px;
    padding-left: 35px;
    margin-bottom: 12px;
    color: #444;
}
/* Estilização da Tabela */
.tabela {
    background: white;
    padding: 50px 0;
    text-align: center;
}

.tabela h2 {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 20px;
}

table {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-collapse: collapse;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

thead {
    background: #003366;
    color: white;
}

th, td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}

tbody tr:nth-child(even) {
    background: #f8f9fa;
}

/* Seção de Experiência */
.experiencia {
    background: #003366;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.experiencia h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.experiencia p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 10px auto;
    opacity: 0.9;
}

/* Seção Destaque */
.destaque {
    background: #ffcc00;
    color: #003366;
    text-align: center;
    padding: 40px 20px;
    font-weight: bold;
    font-size: 1.5rem;
    animation: piscar 1.5s infinite alternate;
}

.destaque h2 {
    font-size: 2.2rem;
}

.destaque h2 span {
    color: #ff0000;
    font-size: 2.5rem;
}

.destaque-aposentadoria {
    background: #ffcc00;
    color: #003366;
    padding: 40px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-weight: bold;
    transition: 0.3s;
    font-size: 1.3rem;
    list-style: none; /* Remove os marcadores de lista */
    padding: 0; /* Remove o recuo padrão */
    margin: 0; /* Garante que não há margens indesejadas */
    
  }

  .destaque-aposentadoria h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
  }

  .destaque-aposentadoria p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
  }

  .destaque-aposentadoria .cta {
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    background-color: #007bff;
    padding: 15px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
    text-align: center;
    text-transform: uppercase;
    transition: background 0.3s ease;
    text-decoration: none;
    cursor: pointer;
  }

  .destaque-aposentadoria .cta:hover {
    background-color: #0056b3;
  }


/* Animação chamativa */
@keyframes piscar {
    from {
        background-color: #ffcc00;
    }
    to {
        background-color: #ffd633;
    }
}
/* Seção Sobre Nós */
.sobre {
    background: #f8f9fa;
    color: #333;
    text-align: center;
    padding: 40px 20px;
}

.sobre h2 {
    font-size: 1.8rem;
    color: #003366;
    margin-bottom: 10px;
}

.sobre p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Rodapé */
footer {
    text-align: center;
    padding: 20px;
    background: #003366;
    color: white;
    margin-top: 20px;
    font-size: 1rem;
}

/* Botão do WhatsApp */
.whats {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whats img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.whats img:hover {
    transform: scale(1.1);
}

/* Botão do WhatsApp estilizado */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    background: #0ecf2e; /* Verde mais escuro */
    color: white;
    padding: 12px 25px;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.btn-whatsapp:hover {
    background: #0ecf2e; /* Verde mais escuro */
    transform: scale(1.05);
}


@media (max-width: 768px) {
    .grid {
      grid-template-columns: 1fr; /* Apenas 1 card por linha */
    }
  }