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

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1f2933;
  background-color: #f5f7fa;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e5e7eb;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-weight: 600;
  font-size: 1rem;
  color: #0e3554;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #0e3554;
  color: #ffffff;
}

.btn-primary:hover {
  background: #0b2740;
  transform: translateY(-1px);
}

.btn-outline {
  border-color: #0e3554;
  color: #0e3554;
  background: transparent;
}

.btn-outline:hover {
  background: #0e3554;
  color: #ffffff;
}

.btn-ghost {
  background: transparent;
  color: #0e3554;
  border-color: #d0d7e2;
}

.btn-ghost:hover {
  background: #e5edf7;
}

/* Hero */
.hero {
  position: relative;
  min-height: 70vh;
  background: radial-gradient(circle at top left, #0fa6a0 0, #0e3554 45%, #050b16 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
}

.hero-content {
  padding: 80px 16px;
}

.hero-text {
  max-width: 560px;
}

.hero-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin-bottom: 16px;
  font-weight: 600;
}

.hero p {
  font-size: 0.98rem;
  margin-bottom: 20px;
  color: #e5f1ff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-footnote {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* Seções gerais */
.section {
  padding: 64px 0;
}

.section-alt {
  background: #ffffff;
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #0e3554;
}

.section-subtitle {
  font-size: 0.96rem;
  margin-bottom: 32px;
  color: #6b7280;
}

/* Grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* Cards */
.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
  border: 1px solid #e5e7eb;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #0e3554;
}

.card p,
.card li {
  font-size: 0.92rem;
  color: #4b5563;
}

.card ul {
  list-style: none;
  display: grid;
  gap: 6px;
}

/* CTA final */
.cta-section {
  background: linear-gradient(135deg, #0e3554, #0fa6a0);
  color: #ffffff;
  text-align: center;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-section h2 {
  color: #ffffff;
  margin-bottom: 12px;
}

.cta-section p {
  color: #e8f3ff;
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background: #0b1b2a;
  color: #d1d5db;
  padding: 18px 0;
  font-size: 0.8rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.footer-contact span {
  display: block;
}

/* Responsivo */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 8px;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
