/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #1a1a1a;
  overflow-x: hidden;
}

/* ===========================
   NAVEGAÇÃO
=========================== */
nav {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
}

.nav-logo svg {
  color: #e85d04;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: #555;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #e85d04;
}

/* ===========================
   BOTÕES
=========================== */
.btn-orange {
  background: #e85d04;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-orange:hover {
  background: #c74d00;
}

.btn-white {
  background: #fff;
  color: #e85d04;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-white:hover {
  background: #f5f5f5;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline-white:hover {
  border-color: #fff;
}

/* ===========================
   HERO
=========================== */
.hero {
  background: #e85d04;
  padding: 72px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 480px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
}

.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: background 0.2s;
}

.hero-card:hover {
  background: rgba(255, 255, 255, 0.22);
}

.hero-card svg {
  color: #fff;
  opacity: 0.9;
}

.hero-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.hero-card-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

/* ===========================
   SEÇÕES — GERAL
=========================== */
.section {
  padding: 72px 48px;
}

.section-center {
  text-align: center;
  margin-bottom: 48px;
}

.section-center h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.section-center p {
  color: #666;
  font-size: 15px;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #e85d04;
  margin-bottom: 10px;
}

/* ===========================
   PRODUTOS
=========================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.prod-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.prod-emoji {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.prod-title {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.prod-list {
  list-style: none;
  margin-bottom: 16px;
}

.prod-list li {
  font-size: 13px;
  color: #555;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.prod-list li::before {
  content: '•';
  color: #e85d04;
  font-weight: 700;
}

.prod-link {
  color: #e85d04;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.prod-link:hover {
  text-decoration: underline;
}

/* ===========================
   SERVIÇOS
=========================== */
.services-bg {
  background: #f7f7f7;
  padding: 72px 48px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

.serv-card {
  flex: 0 1 280px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.serv-icon {
  width: 52px;
  height: 52px;
  background: #fff5f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #e85d04;
}

.serv-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.serv-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* ===========================
   CONTATO
=========================== */
.contact-section {
  padding: 72px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.contact-section > div > p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #fff5f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e85d04;
}

.contact-item-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.contact-item-text {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* Card WhatsApp */
.form-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.form-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.form-card-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 320px;
}

.whatsapp-icon-wrap {
  width: 100px;
  height: 100px;
  background: #e8f9ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.btn-whatsapp {
  width: 100%;
  background: #25d366;
  color: #fff;
  border: none;
  padding: 16px 28px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s;
  margin-bottom: 14px;
}

.btn-whatsapp:hover {
  background: #1da851;
}

.whatsapp-note {
  font-size: 13px;
  color: #999;
}

/* ===========================
   FOOTER
=========================== */
footer {
  background: #1a1a2e;
  padding: 56px 48px 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.footer-logo svg {
  color: #e85d04;
}

.footer-desc {
  font-size: 13px;
  color: #8888aa;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  color: #8888aa;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: #e85d04;
}

.payment-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.badge {
  background: #2a2a3e;
  color: #aaa;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid #333;
}

.footer-bottom {
  border-top: 1px solid #2a2a3e;
  padding-top: 24px;
  text-align: center;
  color: #555;
  font-size: 13px;
}

/* ===========================
   TOAST
=========================== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1a1a1a;
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-check {
  width: 20px;
  height: 20px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
/* ===========================
   SERVIÇOS — FIX ALINHAMENTO
=========================== */

/* ===========================
   RESPONSIVIDADE
=========================== */

/* Tablet grande (até 1024px) */
@media (max-width: 1024px) {
  nav {
    padding: 0 24px;
  }

  .hero {
    padding: 56px 24px;
    gap: 32px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .section {
    padding: 56px 24px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-bg {
    padding: 56px 24px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(200px, 300px));
  }

  .contact-section {
    padding: 56px 24px;
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  footer {
    padding: 48px 24px 24px;
  }
}

/* Tablet (até 768px) */
@media (max-width: 768px) {
  /* Nav */
  nav {
    padding: 0 16px;
  }

  .nav-links {
    display: none;
  }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 20px;
    min-height: auto;
    text-align: center;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-cards {
    grid-template-columns: 1fr 1fr;
  }

  /* Produtos */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Serviços */
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Contato */
  .contact-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 20px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile (até 480px) */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-cards {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card {
    padding: 16px 14px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .section-center h2 {
    font-size: 26px;
  }

  .contact-section h2 {
    font-size: 28px;
  }

  .form-card {
    padding: 28px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 40px 16px 20px;
  }
}