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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: #1e40af;
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
}

.logo svg {
  width: 32px;
  height: 32px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 20px;
  transition: color 0.3s;
}

nav a:hover {
  color: #dbeafe;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: white;
  color: #1e40af;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn:hover {
  background-color: #f0f9ff;
}

/* Produtos Section */
.produtos {
  padding: 80px 20px;
  background-color: #f9fafb;
}

.produtos h3 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.produto-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s;
}

.produto-card:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.produto-card h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  margin-bottom: 10px;
  color: #1e40af;
}

.produto-card .descricao {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 15px;
}

.produto-card ul {
  list-style: none;
  padding: 0;
}

.produto-card li {
  padding: 8px 0;
  font-size: 14px;
  color: #555;
}

.produto-card li:before {
  content: "• ";
  color: #1e40af;
  font-weight: bold;
  margin-right: 8px;
}

/* Sobre Section */
.sobre {
  padding: 80px 20px;
}

.sobre .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.sobre h3 {
  font-size: 36px;
  margin-bottom: 20px;
}

.sobre p {
  margin-bottom: 15px;
  color: #555;
  line-height: 1.8;
}

.sobre-beneficios {
  background-color: #eff6ff;
  padding: 30px;
  border-radius: 8px;
}

.sobre-beneficios h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

.beneficio {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.beneficio:before {
  content: "✓";
  color: #1e40af;
  font-weight: bold;
  font-size: 20px;
  flex-shrink: 0;
}

.beneficio span {
  color: #555;
}

/* Contato Section */
.contato {
  padding: 80px 20px;
  background-color: #f9fafb;
}

.contato h3 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
}

.contato-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.contato-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contato-card h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  margin-bottom: 15px;
  color: #1e40af;
}

.contato-card .valor {
  font-size: 18px;
  font-weight: bold;
  color: #1e40af;
  margin-bottom: 10px;
}

.contato-card .info {
  font-size: 14px;
  color: #6b7280;
}

/* Footer */
footer {
  background-color: #111827;
  color: white;
  padding: 40px 20px;
}

footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

footer h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

footer p {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 10px;
}

footer a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s;
}

footer a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 20px;
  text-align: center;
  color: #9ca3af;
  font-size: 14px;
}

/* Política Page */
.politica-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.politica-article {
  background: white;
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.politica-article h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #1e3a8a;
}

.politica-article h3 {
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 15px;
  color: #1f2937;
}

.politica-article p {
  margin-bottom: 15px;
  color: #555;
  line-height: 1.8;
}

.politica-article ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.politica-article li {
  margin-bottom: 10px;
  color: #555;
}

.politica-article strong {
  color: #1f2937;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  nav a {
    margin: 0 10px;
    font-size: 14px;
  }

  .sobre .container {
    grid-template-columns: 1fr;
  }

  .produtos-grid,
  .contato-grid {
    grid-template-columns: 1fr;
  }

  footer .container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  header .container {
    flex-direction: column;
    gap: 15px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    margin: 5px 10px;
  }

  .hero h2 {
    font-size: 24px;
  }

  .produtos h3,
  .sobre h3,
  .contato h3 {
    font-size: 24px;
  }
}
