/* ==============================
   RESET & BASE
============================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --amarelo:      #ffe600;
  --azul:         #2e3099;
  --azul-escuro:  #1e2070;
  --branco:       #ffffff;
  --cinza:        #f4f6fb;
  --linha-alt:    #eef1fa;
  --texto:        #2f3445;
  --sombra:       0 10px 30px rgba(46, 48, 153, 0.12);
  --radius:       16px;
  --font:         'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--cinza);
  color: var(--texto);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ==============================
   TOPO / HEADER
============================== */
.topo {
  background: var(--branco);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.topo__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topo__logo {
  height: 96px;
  width: auto;
}

/* ==============================
   HERO
============================== */
.hero {
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-escuro) 100%);
  color: var(--branco);
  padding: 60px 0 52px;
  text-align: center;
}

.hero .tag {
  margin-bottom: 14px;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--amarelo);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.90);
  max-width: 680px;
  margin: 0 auto;
}

.hero p strong {
  color: var(--amarelo);
}

/* ==============================
   TAG
============================== */
.tag {
  display: inline-block;
  background: var(--amarelo);
  color: var(--azul-escuro);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}

/* ==============================
   SEÇÃO DE LISTA
============================== */
.lista-section {
  padding: 56px 0 20px;
  background: var(--cinza);
}

.lista-section--alt {
  background: #eceffe;
}

.lista__cabecalho {
  text-align: center;
  margin-bottom: 28px;
}

.lista__cabecalho h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--azul);
  text-transform: uppercase;
  margin-top: 12px;
  letter-spacing: 0.03em;
}

.lista__subtitulo {
  display: block;
  text-align: center;
  font-size: 0.95rem;
  color: var(--azul-escuro);
  margin-bottom: 28px;
  font-weight: 600;
}

.lista__subtitulo strong {
  color: var(--azul);
}

/* ==============================
   TABELA DE PRODUTOS
============================== */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--sombra);
  margin-bottom: 40px;
}

.tabela {
  width: 100%;
  border-collapse: collapse;
  background: var(--branco);
  font-family: var(--font);
  min-width: 640px;
}

/* Cabeçalho da tabela */
.tabela thead tr {
  background: var(--azul-escuro);
}

.tabela thead th {
  padding: 16px 18px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--amarelo);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  white-space: nowrap;
}

.tabela thead th.col-preco {
  text-align: right;
}

/* Linhas */
.tabela tbody tr {
  border-bottom: 1px solid rgba(46, 48, 153, 0.08);
  transition: background 0.15s;
}

.tabela tbody tr.linha-par {
  background: var(--branco);
}

.tabela tbody tr.linha-impar {
  background: var(--linha-alt);
}

.tabela tbody tr:hover {
  background: rgba(255, 230, 0, 0.10);
}

/* Células */
.tabela td {
  padding: 14px 18px;
  vertical-align: middle;
}

/* Coluna: Nome do produto */
.td-nome {
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--azul-escuro);
  text-transform: uppercase;
  min-width: 180px;
  max-width: 240px;
  line-height: 1.35;
}

/* Coluna: Classificação SNC + Princípio Ativo */
.td-class {
  min-width: 180px;
  max-width: 240px;
}

.td-class strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--azul);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.td-class span {
  display: block;
  font-size: 0.82rem;
  color: #555e7a;
  font-weight: 500;
  line-height: 1.4;
}

/* Coluna: Registro MS */
.td-ms {
  font-size: 0.80rem;
  color: #6b728a;
  font-weight: 600;
  white-space: nowrap;
  min-width: 155px;
}

/* Coluna: Preço */
.td-preco {
  text-align: right;
  white-space: nowrap;
  min-width: 110px;
}

.td-preco .preco-valor {
  display: block;
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--azul);
  line-height: 1;
}

.td-preco small {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #8892b0;
  text-align: right;
  margin-top: 2px;
  text-transform: lowercase;
}

/* ==============================
   CTA FINAL
============================== */
.cta {
  padding: 32px 0 64px;
  background: var(--cinza);
}

.cta__inner {
  background: var(--azul);
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--sombra);
}

.cta__inner h2 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--branco);
  margin-bottom: 6px;
}

.cta__inner p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

/* ==============================
   BOTÕES
============================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, filter 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  text-align: center;
}

.btn--amarelo {
  background: var(--amarelo);
  color: var(--azul-escuro);
  box-shadow: 0 6px 20px rgba(255, 230, 0, 0.30);
}

.btn--amarelo:hover {
  transform: translateY(-2px);
  filter: brightness(0.97);
  box-shadow: 0 10px 28px rgba(255, 230, 0, 0.40);
}

.btn--branco {
  background: var(--branco);
  color: var(--azul-escuro);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.btn--branco:hover {
  transform: translateY(-2px);
  filter: brightness(0.97);
}

/* ==============================
   DIVISOR ENTRE SEÇÕES
============================== */
.divisor {
  width: 80px;
  height: 4px;
  background: var(--amarelo);
  border-radius: 4px;
  margin: 16px auto 0;
}

/* ==============================
   RESPONSIVO
============================== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .lista__cabecalho h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 44px 0 38px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero p {
    font-size: 0.92rem;
  }

  .lista-section {
    padding: 40px 0 12px;
  }

  .lista__cabecalho h2 {
    font-size: 1.45rem;
  }

  .cta__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }

  .cta__inner h2 {
    font-size: 1.35rem;
  }

  .td-nome {
    min-width: 140px;
    font-size: 0.82rem;
  }

  .tabela thead th {
    font-size: 0.70rem;
    padding: 12px 12px;
  }

  .tabela td {
    padding: 12px 12px;
  }

  .td-preco .preco-valor {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.4rem;
  }

  .topo__logo {
    height: 36px;
  }

  .btn {
    font-size: 0.82rem;
    padding: 12px 18px;
  }
}