*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: #f5f5f5;
  color: #1a1a1a;
}

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #111;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 680px;
  padding: 32px 24px 36px;
  justify-content: space-between;
}

.hero-center-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 5vw, 42px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  max-width: 700px;
}

.hero-logo-wrap {
  background: #A13E42;
  padding: 14px 32px 12px;
  border-radius: 6px;
  display: inline-block;
}

.hero-logo-wrap img {
  width: clamp(160px, 20vw, 260px);
  height: auto;
  display: block;
}

.hero-cta-box {
  background: #D4A843;
  border-radius: 8px;
  padding: 18px 28px;
  width: 100%;
  max-width: 480px;
}

.hero-cta-box p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.25;
  margin: 0 0 16px;
}

.btn-scroll {
  display: block;
  background: #1a1a2e;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(12px, 1.2vw, 13px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 13px 28px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-scroll:hover {
  background: #A13E42;
  transform: translateY(-1px);
}

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about {
  background: #fff;
  border-bottom: 3px solid #D4A843;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 32px;
}

.about h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.about p {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.8;
  color: #333;
}

.about p strong {
  font-weight: 700;
  color: #1a1a1a;
}

.about-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.about-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid #D4A843;
  display: block;
  flex-shrink: 0;
}

/* ══════════════════════════════
   PRODUCTS
══════════════════════════════ */
.products {
  background: #fff;
}

.products-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 48px;
}

/* Fileira horizontal com scroll */
.products-grid {
  display: flex;
  flex-direction: row;
  gap: 20px;
  overflow-x: auto;
  padding: 32px 0 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.products-grid::-webkit-scrollbar {
  height: 6px;
}

.products-grid::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 3px;
}

.products-grid::-webkit-scrollbar-thumb {
  background: #A13E42;
  border-radius: 3px;
}

.product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 24px;
  flex: 0 0 300px;
  min-width: 300px;
  scroll-snap-align: start;
  background: #fff;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}

.product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border-color: #D4A843;
}

.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #D4A843;
  color: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.product-cover {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.product-cover img {
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
}

.product-info {
  flex: 1;
  min-width: 0;
  width: 100%;
  text-align: center;
}

.product-type {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #A13E42;
  margin-bottom: 8px;
}

.product-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.3;
  margin-bottom: 10px;
}

.product-info p {
  font-size: clamp(12px, 1.3vw, 15px);
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

.product-price-label {
  font-size: clamp(12px, 1.2vw, 14px);
  color: #444;
  font-weight: 600;
  margin-bottom: 6px;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.price-from {
  font-size: clamp(12px, 1.2vw, 15px);
  color: #aaa;
  text-decoration: line-through;
}

.price-to {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 900;
  color: #A13E42;
}

.btn-buy {
  display: inline-block;
  background: #A13E42;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 13px 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-buy:hover {
  background: #8a3035;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(161, 62, 66, 0.4);
}

/* ══════════════════════════════
   AGRADECIMENTOS
══════════════════════════════ */
.thanks {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/7.jpeg') no-repeat center center;
  background-size: cover;
  padding: 60px 24px;
  overflow: hidden;
}

.thanks-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 32px;
  z-index: 2;
}

.thanks-photo {
  display: none; /* Escondido no mobile para manter foco no texto */
}

.thanks h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  color: #D4A843;
  text-align: center;
  margin-bottom: 32px;
}

.thanks-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #D4A843;
  border-radius: 4px;
  padding: 40px 32px;
}

.thanks-card p {
  font-size: clamp(14px, 1.4vw, 16px);
  color: #fff;
  line-height: 1.8;
  margin-bottom: 20px;
}

.thanks-card p:last-of-type {
  margin-bottom: 0;
}

.thanks-card .signature {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(16px, 1.6vw, 20px);
  color: #D4A843;
  margin-top: 32px;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: #161628;
  padding: 28px 32px;
  text-align: center;
}

.footer-logo {
  width: clamp(120px, 15vw, 180px);
  margin: 0 auto 12px;
  opacity: 0.85;
}

.footer p {
  font-size: clamp(11px, 1vw, 13px);
  color: rgba(255, 255, 255, 0.45);
}

.footer a {
  color: #D4A843;
}

.footer-socials {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 10px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: transform 0.2s, opacity 0.2s;
  flex-shrink: 0;
}

.social-btn:hover {
  transform: translateY(-3px);
  opacity: 0.88;
}

.social-btn--instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn--whatsapp {
  background: #25d366;
}

/* ══════════════════════════════
   RESPONSIVE — TABLET (≥ 640px)
══════════════════════════════ */
@media (min-width: 640px) {
  .hero-content {
    padding: 48px 40px 52px;
    min-height: 520px;
  }

  .hero-cta-box {
    padding: 22px 36px;
  }

  .about-inner {
    padding: 56px 48px;
  }

  .products-inner {
    padding: 0 48px;
  }

  .product-item {
    padding: 36px 0;
    gap: 32px;
  }

  .btn-buy {
    padding: 14px 36px;
  }
}

/* ══════════════════════════════
   RESPONSIVE — DESKTOP (≥ 1024px)
══════════════════════════════ */
@media (min-width: 1024px) {

  /* Hero: split layout — content left, full photo right */
  .hero {
    display: flex;
    align-items: stretch;
    background: #111;
    overflow: visible;
  }

  .hero-bg {
    position: static;
    inset: auto;
    flex: 0 0 50%;
    width: 50%;
    height: auto;
    object-fit: fill;
    filter: brightness(0.8);
    order: 2;
    align-self: auto;
  }

  .hero-content {
    flex: 1;
    order: 1;
    position: relative;
    z-index: 2;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    height: auto;
    min-height: 600px;
    padding: 72px 56px;
    max-width: none;
    margin: 0;
    text-align: left;
  }

  .hero-headline {
    text-align: left;
    flex: none;
  }

  .hero-center-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex-shrink: 0;
  }

  .hero-cta-box {
    text-align: left;
    max-width: 400px;
  }

  /* About: 2 columns */
  .about-inner {
    padding: 72px 60px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    max-width: 1100px;
  }

  .about-left {
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }

  .about-photo {
    width: 100%;
    height: 220px;
    border-radius: 8px;
    object-position: center top;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }

  .about h2 {
    margin-bottom: 0;
  }

  .about-body {
    grid-column: 2;
    margin-top: 0;
  }

  /* Products: 5 cards visíveis em fileira única */
  .products-inner {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px 60px;
  }

  .products-grid {
    overflow-x: visible;
    gap: 16px;
    padding: 48px 0 40px;
    flex-wrap: nowrap;
  }

  .product-item {
    flex: 1 1 0;
    min-width: 0;
    padding: 24px 16px;
    gap: 12px;
  }

  .product-cover {
    margin-bottom: 8px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-cover img {
    width: 100%;
    height: auto;
    display: block;
  }

  .product-info h3 {
    font-size: 20px;
  }

  .product-info p {
    font-size: 14px;
    line-height: 1.6;
  }

  .price-to {
    font-size: 26px;
  }

  .btn-buy {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 14px;
    font-size: 13px;
  }

  /* Thanks */
  .thanks {
    display: flex;
    align-items: stretch;
    background: #0f0f1a;
    background-image: none;
    padding: 0;
  }

  .thanks-photo {
    display: block;
    flex: 0 0 45%;
    width: 45%;
    height: auto;
    object-fit: cover;
    order: 1;
  }

  .thanks-inner {
    flex: 1;
    padding: 60px 80px;
    order: 2;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: none;
  }

  /* Footer */
  .footer {
    padding: 32px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 24px;
  }

  .footer-logo {
    margin: 0;
  }

  .footer-links {
    text-align: right;
  }

  .footer-socials {
    justify-content: flex-end;
  }
}

/* ══════════════════════════════
   RESPONSIVE — LARGE (≥ 1280px)
══════════════════════════════ */
@media (min-width: 1280px) {
  .hero-content {
    padding: 90px 80px;
    min-height: 640px;
    max-width: none;
  }

  .about-inner {
    padding: 80px 80px;
    max-width: 1200px;
  }

  .products-inner {
    padding: 0 0 60px;
    max-width: 1200px;
  }

  .products-grid {
    padding: 48px 40px 40px;
    scroll-padding-left: 40px;
  }
}


/* ══════════════════════════════
   RESPONSIVE — SMALL MOBILE (< 400px)
══════════════════════════════ */
@media (max-width: 400px) {
  .hero-content {
    padding: 28px 16px 32px;
    min-height: 380px;
    gap: 20px;
  }

  .product-cover {
    width: 110px;
    min-width: 110px;
  }

  .btn-buy {
    display: block;
    width: 100%;
    font-size: 10px;
    padding: 11px 10px;
  }
}
