/* ===== RESET BÁSICO ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background-color: #f4f4f2;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  color: #2b2b2b;
  line-height: 1.6;
}

/* ===== CORES ===== */
:root {
  --vermelho: #7a1e1e;
  --vermelho-escuro: #5a1515;
  --cinza: #3a3a3a;
  --cinza-claro: #dcdcdc;
  --branco: #ffffff;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid #ccc;
  background-color: rgba(244, 244, 242, 0.9);
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  backdrop-filter: blur(5px);
}

.header-simple {
  max-width: 1200px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.header-title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--vermelho);
}

/* ===== HERO ===== */
.hero {
  max-width: 1200px;
  margin: auto;
  padding: 85px 20px 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: center;
}

.hero-content {
  padding-right: 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(122, 30, 30, 0.1);
  color: var(--vermelho);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  color: #1f1f1f;
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero h1 span {
  color: var(--vermelho);
}

.hero p {
  margin: 12px 0 20px;
  font-size: 17px;
  color: #555;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--vermelho);
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 2px 0 var(--vermelho-escuro);
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--vermelho-escuro);
  transform: translateY(-2px);
  box-shadow: 0 4px 0 var(--vermelho-escuro);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ===== SEÇÕES ===== */
section {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
}

.section-header {
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 0 20px;
  text-align: center;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 10px;
  color: #1f1f1f;
}

.section-header p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SOBRE ===== */
.sobre {
  max-width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.sobre-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.sobre-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: var(--vermelho);
  margin-bottom: 12px;
}

.sobre-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.sobre-content .btn {
  margin-top: 14px;
}

/* ===== MERCADOS ===== */
.mercados-tags {
  max-width: 1200px;
  margin: 25px auto 0;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.mercado-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.85);
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  color: var(--cinza);
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.mercado-tag:hover {
  border-color: var(--vermelho);
  color: var(--vermelho);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.mercado-tag svg {
  width: 22px;
  height: 22px;
  color: var(--vermelho);
}

/* ===== PRODUTOS ===== */
#produtos {
  max-width: 100%;
}

/* ===== CARDS / BENEFÍCIOS ===== */
.grid-3 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: rgba(255,255,255,0.85);
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(122, 30, 30, 0.1);
  border-radius: 50%;
  color: var(--vermelho);
}

.card-icon svg {
  width: 32px;
  height: 32px;
}

.card h3 {
  color: var(--vermelho);
  margin-bottom: 8px;
  font-size: 18px;
}

.card p {
  font-size: 15px;
  color: #666;
}

/* ===== POR QUE ESCOLHER ===== */
.porque {
  max-width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  border-top: 1px solid #ddd;
}

.porque-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.porque-item {
  text-align: center;
}

.porque-item img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 8px;
  border-radius: 8px;
}

.porque-item h3 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: #1f1f1f;
  margin-bottom: 4px;
}

.porque-item h3 span {
  color: var(--vermelho);
}

.porque-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

/* ===== CONTATO ===== */
.contato {
  max-width: 100%;
  background-color: rgba(239, 239, 236, 0.8);
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  border-top: 1px solid #ccc;
  text-align: center;
}

.contato-info {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cinza);
  font-size: 16px;
}

.contato-item svg {
  width: 24px;
  height: 24px;
  color: var(--vermelho);
}

/* ===== FOOTER ===== */
footer {
  background-color: #1f1f1f;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  color: #999;
  padding: 30px 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo img {
  height: 50px;
  border-radius: 8px;
}

.footer-info {
  text-align: right;
  font-size: 13px;
}

.footer-info p {
  margin: 2px 0;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 75px;
    gap: 10px;
  }

  .hero-content {
    padding-right: 0;
    order: 1;
  }

  .hero-image {
    order: 0;
    margin-bottom: 5px;
  }

  .hero-image img {
    max-width: 350px;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 40px;
  }

  .grid-3,
  .porque-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-title {
    font-size: 16px;
  }

  .header-logo {
    height: 35px;
  }

  .grid-3,
  .porque-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .porque-item img {
    width: 120px;
    height: 120px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-image img {
    max-width: 280px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .contato-info {
    flex-direction: column;
    gap: 20px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-info {
    text-align: center;
  }
}

/* ===== CORNER ICON ===== */
.corner-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  z-index: 999;
}

.corner-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.corner-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== ANIMAÇÕES ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
