* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #ffffff;
  --white: #ffffff;
  --header-dark: #1b1b1b;
  --header-border: #2a2a2a;
  --text: #241913;
  --muted: #6d5d55;
  --brown: #6a3d29;
  --section-soft: #f7f1eb;
  --whatsapp: #bb5f6d;
  --whatsapp-hover: #a95260;
  --red: #ee2f4f;
  --green: #69a857;
  --green-hover: #5d984d;
  --shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1200px, 94%);
  margin: 0 auto;
}

/* HEADER */
header {
  background: rgba(27, 27, 27, 0.98);
  border-bottom: 1px solid var(--header-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 95px;
  width: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  flex: 1;
}

.nav-links a {
  text-decoration: none;
  color: #f4ede7;
  font-weight: 500;
  font-size: 1rem;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(187, 95, 109, 0.28);
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--whatsapp);
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(187, 95, 109, 0.22);
}

.btn-primary:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #fff;
  color: var(--brown);
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid #ddd0c4;
}

.btn-secondary:hover {
  background: #f8f3ee;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 46px;
  padding: 60px 0 35px;
}

.hero-left h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.03;
  color: var(--brown);
  margin-bottom: 18px;
  max-width: 680px;
}

.hero-left p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 610px;
  margin-bottom: 28px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-right {
  background: #fff;
  border: 4px solid var(--red);
  border-radius: 28px;
  padding: 10px;
  box-shadow: 0 12px 24px rgba(217, 30, 66, 0.12);
}

.hero-right img {
  width: 100%;
  max-width: 100%;
  height: auto;
  transform: scale(1.04);
  transform-origin: center;
  border-radius: 20px;
}

/* SEÇÕES */
.section-block {
  margin-top: 55px;
}

.section-title {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  color: #7f2436;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

/* CARDS */
.card {
  position: relative;
  background: var(--white);
  border: 1px solid #efefef;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  transition: 0.25s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.10);
}

.card-accent {
  position: absolute;
  top: 18px;
  bottom: 86px;
  left: 0;
  width: 4px;
  background: var(--red);
  border-radius: 0 6px 6px 0;
}

.promo-side {
  position: absolute;
  right: -30px;
  top: 155px;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 9px 12px;
  border-radius: 10px 10px 0 0;
  transform: rotate(-90deg);
  z-index: 3;
  box-shadow: 0 8px 16px rgba(238, 47, 79, 0.22);
}

.card img {
  width: 100%;
  height: 255px;
  object-fit: contain;
  background: #fff;
  padding: 22px 20px 10px;
  flex-shrink: 0;
}

.card-content {
  display: flex;
  flex-direction: column;
  padding: 8px 20px 18px;
  flex: 1;
}

.card h3 {
  font-size: 1.06rem;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 10px;
  font-weight: 600;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 18px;
  flex-grow: 1;
}

.card-info {
  font-size: 0.82rem;
  color: #8a6f63;
  margin-bottom: 10px;
  line-height: 1.4;
}

.price-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
}

.old-price {
  font-size: 0.96rem;
  color: #b7a49a;
  text-decoration: line-through;
}

.new-price {
  font-size: 2rem;
  font-weight: 800;
  color: #2a1b14;
}

.buy-btn {
  margin-top: auto;
  width: 100%;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.96rem;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  letter-spacing: 0.3px;
}

.buy-btn:hover {
  background: var(--green-hover);
}

.buy-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* SOBRE */
.sobre {
  margin: 85px auto 0;
}

.sobre-box {
  background: var(--section-soft);
  border: 1px solid #e7d9cc;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.sobre-box p {
  font-size: 1.08rem;
  line-height: 1.95;
  color: #33261f;
}

/* CONTATO */
.contato {
  margin: 85px auto 80px;
}

.contact-box {
  background: var(--section-soft);
  border: 1px solid #e7d9cc;
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-box p {
  font-size: 1.02rem;
  color: #33261f;
  margin-bottom: 10px;
}

.contact-box p:last-child {
  margin-bottom: 0;
}

/* FOOTER */
footer {
  background: #171717;
  color: #f5efea;
  text-align: center;
  padding: 24px 18px;
  font-size: 0.95rem;
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nav-links {
    gap: 18px;
  }

  .logo img {
    height: 78px;
  }
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 8px 0;
  }

  .logo {
    justify-content: center;
    width: 100%;
  }

  .logo img {
    height: 60px;
  }

  .nav-links {
    justify-content: center;
    gap: 8px 12px;
    width: 100%;
  }

  .nav-links a {
    font-size: 0.85rem;
  }

  .btn-whatsapp {
    width: 100%;
    max-width: 320px;
    padding: 7,5px 15px;
    font-size: 0.98rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 22px;
  }

  .hero-left {
    text-align: center;
    order: 0;
  }

  .hero-right {
    order: 1;
  }

  .hero-left h1 {
    margin: 0 auto 16px;
  }

  .hero-left p {
    margin: 0 auto 22px;
  }

  .hero-btns {
    justify-content: center;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .container {
    width: 92%;
  }

  header {
    border-bottom: none;
  }

  .nav {
    gap: 10px;
    padding: 10px 0 14px;
  }

  .logo img {
    height: 54px;
  }

  .nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    max-width: 320px;
    margin: 0 auto;
  }

  .nav-links a {
    font-size: 0.94rem;
  }

  .btn-primary,
  .btn-secondary,
  .btn-whatsapp {
    width: 100%;
    max-width: 100%;
  }

  .btn-whatsapp {
    padding: 12px 18px;
    font-size: 0.98rem;
  }

  .hero {
    gap: 18px;
    padding-top: 18px;
  }

  .hero-right {
    padding: 6px;
    border-width: 3px;
    border-radius: 20px;
  }

  .hero-right img {
    transform: none;
    border-radius: 14px;
  }

  .hero-left h1 {
    font-size: 2rem;
    line-height: 1.04;
    text-align: center;
  }

  .hero-left p {
    text-align: center;
    font-size: 0.98rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .card img {
    height: 235px;
  }

  .promo-side {
    top: 165px;
  }

  .section-title {
    text-align: center;
  }

  .sobre-box,
  .contact-box {
    padding: 22px;
  }

  .sobre-box p {
    font-size: 1rem;
    line-height: 1.75;
  }
}

@media (max-width: 560px) {
  .nav {
    padding: 6px 0 !important;
    gap: 6px !important;
  }

  .logo img {
    height: 42px !important;
  }

  .nav-links {
    gap: 6px 10px !important;
  }

  .nav-links a {
    font-size: 0.85rem !important;
  }

  .btn-whatsapp {
    padding: 8px 14px !important;
    font-size: 0.9rem !important;
    max-width: 260px;
  }
}

/* ===== AJUSTE NAVBAR DESKTOP (BARRA MAIS FINA) ===== */
@media (min-width: 768px) {

  .nav {
    padding: 8px 0 !important; /* diminui altura da barra */
  }

  .logo img {
    height: 55px !important; /* diminui logo */
  }

  .nav-links {
    gap: 16px !important; /* menos espaço entre links */
  }

  .nav-links a {
    font-size: 0.9rem !important; /* texto menor */
  }

  .btn-whatsapp {
    padding: 8px 18px !important;
    font-size: 0.9rem !important;
  }

}