:root {
  --azul-monaco: #20283c;
  --azul-escuro: #0a2540;
  --azul-secundario: #1a2236;
  --texto-principal: #ffffff;
  --texto-suave: #cbd5e1;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: var(--azul-monaco);
  color: var(--texto-principal);
}

/* HEADER */
header {
  background: var(--azul-escuro);
  padding: 20px;
  text-align: center;
}

/* SEÇÕES – PADRÃO CENTRALIZADO */
section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

section > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

/* TÍTULOS */
h2 {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
}

h3 {
  margin-bottom: 10px;
}

/* TEXTO */
p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--texto-suave);
}

/* ===== SOBRE NÓS (LISTA BONITA) ===== */
.texto-lista {
  list-style: none;
  margin-top: 30px;
}

.texto-lista li {
  position: relative;
  padding-left: 22px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--texto-suave);
  margin-bottom: 20px;
}

.texto-lista li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 22px;
  color: #ffffff;
}

/* ===== CARDS PADRÃO ===== */
.cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.card {
  background: #ffffff;
  color: #0f172a;
  width: 260px;
  padding: 18px;
  border-radius: 12px;
  text-align: center;
}

.card img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* ===== ÁLCOOL ===== */
.alcool {
  background: var(--azul-secundario);
}

/* ===== TIPOS DE PRODUTO ===== */
.tipos-produto {
  background: #f8fafc;
  color: #0f172a;
}

.tipos-produto.fundo-escuro {
  background: var(--azul-secundario);
  color: #ffffff;
}

.tipos-descricao {
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: 18px;
  line-height: 1.6;
}

.tipos-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.tipo-card {
  background: #ffffff;
  color: #0f172a;
  width: 320px;
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  text-align: left;
}

.tipo-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--azul-escuro);
}

.tipo-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
}

/* ===== LOCALIZAÇÃO ===== */
.localizacao {
  background: #0f172a;
  text-align: center;
}

.localizacao h2 {
  color: #ffffff;
}

.localizacao .endereco {
  color: var(--texto-suave);
  margin-bottom: 30px;
}

.mapa-container {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.mapa-container iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* ===== BOTÃO DE COTAÇÃO ===== */
.cotacao-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 70px 0 40px;
}

.cotacao-container img {
  max-width: 420px;
  width: 90%;
}

/* FOOTER */
footer {
  background: var(--azul-escuro);
  padding: 15px;
  text-align: center;
  color: var(--texto-suave);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  h2 {
    font-size: 26px;
  }

  section {
    padding: 60px 0;
  }

  .tipo-card {
    width: 100%;
    max-width: 420px;
  }

  .mapa-container iframe {
    height: 320px;
  }
}

/* ===== CORREÇÃO – NOSSA EMPRESA E EQUIPE ===== */

.tipos-produto .tipo-card {
  overflow: hidden; /* impede imagem de vazar */
}

.tipos-produto .tipo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  display: block;
}

/* ===== DESCRIÇÃO PORTFÓLIO DE PRODUTOS ===== */

.descricao-produtos {
  max-width: 900px;
  margin: 20px auto 50px;
  text-align: center;
  font-size: 17px;
  line-height: 1.7;
  color: #e5e7eb;
}

.descricao-produtos p {
  margin-bottom: 25px;
}

.lista-produtos {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
}

.lista-produtos li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.6;
}

.lista-produtos li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #22c55e;
  font-size: 18px;
}

.produtos {
  margin-bottom: 60px;
}

.produtos {
  display: block;
  clear: both;
  padding-bottom: 120px;
}
.cards {
  align-items: stretch;
}
.tipos-produto {
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

/* ===== CORREÇÃO DE TEXTO ESCURO EM FUNDOS CLAROS ===== */

/* Cards de produtos */
.card p,
.card h3,
.card h4 {
  color: #000000;
}

/* Tipos de thinner / álcool / logística */
.tipo-card p,
.tipo-card h3 {
  color: #000000;
}

/* ===== CORREÇÃO TEXTO TIPOS DE THINNER ===== */

.tipos-descricao {
  color: #000000;
}
.tipos-descricao {
  color: #000000;
  font-weight: 500;
}

/* Texto padrão da descrição (fundo claro) */
.tipos-descricao {
  color: #000000;
}

/* Quando a seção tiver fundo escuro */
.tipos-produto.fundo-escuro .tipos-descricao {
  color: #ffffff;
}

.descricao-alcool {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 17px;
  line-height: 1.7;
  color: #ffffff;
}

/* ===== LOGÍSTICA ===== */

.logistica {
  text-align: center;
}

.logistica > * {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.logistica {
  margin-top: 100px;
}

/* ===== CONTATO ===== */

.contato {
  text-align: center;
  padding: 100px 20px;
  background: var(--azul-secundario);
}

.contato h2 {
  font-size: 34px;
  margin-bottom: 25px;
  color: #ffffff;
  letter-spacing: 2px;
}

.texto-contato {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: #ffffff;
}

section {
  padding: 100px 20px;
}
.contato {
  text-align: center;
  padding: 120px 20px;   /* aumenta espaço interno */
  margin: 100px 0;       /* espaço acima e abaixo da seção */
  background: var(--azul-secundario);
}

/* ===== CONTATO ===== */

.contato {
  text-align: center;
  padding: 120px 20px;
  margin: 100px 0;
  background: var(--azul-secundario);
}

.contato h2 {
  font-size: 34px;
  margin-bottom: 30px;
  color: #ffffff;
  letter-spacing: 2px;
}

.texto-contato {
  max-width: 800px;
  margin: 0 auto 40px auto; /* espaço embaixo */
  font-size: 18px;
  line-height: 1.8;
  color: #ffffff;
}

.info-contato {
  max-width: 700px;
  margin: 0 auto;
  color: #ffffff;
  line-height: 1.8;
}

.info-contato p {
  margin-bottom: 25px;
}

.contato {
  max-width: 1200px; /* define largura máxima */
  margin: 100px auto; /* centraliza horizontalmente */
  padding: 120px 20px;
  background: var(--azul-secundario);
  text-align: center;
  box-sizing: border-box; /* garante que o padding não aumente a largura */
}

/* ===== INFORMAÇÕES EMPRESA ===== */

.infos-empresa {
  background: #000; /* pode trocar se quiser */
  padding: 80px 20px;
  color: #ffffff;
}

.container-infos {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.coluna {
  flex: 1;
  min-width: 250px;
}

.coluna h3 {
  margin-bottom: 20px;
  font-size: 22px;
  letter-spacing: 1px;
}

.coluna p {
  line-height: 1.8;
  font-size: 15px;
}

.coluna ul {
  list-style: none;
  padding: 0;
}

.coluna ul li {
  margin-bottom: 12px;
}

.coluna ul li a {
  text-decoration: none;
  color: #ffffff;
  transition: 0.3s;
}

.coluna ul li a:hover {
  opacity: 0.7;
}

.redes-sociais a {
  display: inline-block;
  padding: 8px 15px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  text-decoration: none;
  color: #ffffff;
  transition: 0.3s;
}

.redes-sociais a:hover {
  background: #ffffff;
  color: #000;
}

.info-contato p {
  margin: 5px 0;
}
