:root {
  --primary: #D81B60;
  --primary-dark: #880E4F;
  --accent: #F9A825;
  --dark: #1A1A1A;
  --dark-warm: #2A1A22;
  --cream: #FBF7F2;
  --gold: #FFCA28;
  --text-light: #F5F0EB;
  --text-dark: #2A2420;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem 3rem;
  position: relative;
  background: linear-gradient(170deg, #FDF6F0 0%, #FEF0F5 35%, #FBF7F2 70%, #FFF8E7 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(249, 168, 37, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(216, 27, 96, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 202, 40, 0.08) 0%, transparent 70%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-logo-wrap {
  width: 220px;
  height: 220px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 0 60px rgba(255, 202, 40, 0.25), 0 0 120px rgba(216, 27, 96, 0.18);
  animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  font-weight: 800;
  animation: fadeUp 0.8s ease-out 0.2s both;
}

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

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #6b5e4f;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 0.8s ease-out 0.4s both;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  background: var(--primary);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 24px rgba(216, 27, 96, 0.35);
  animation: fadeUp 0.8s ease-out 0.6s both;
}

.btn-whatsapp:hover {
  background: #E91E63;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(216, 27, 96, 0.45);
}

.btn-whatsapp svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.btn-accent {
  background: var(--accent);
  box-shadow: 0 4px 24px rgba(249, 168, 37, 0.35);
}

.btn-accent:hover {
  background: #FBC02D;
  box-shadow: 0 8px 32px rgba(249, 168, 37, 0.45);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s ease-in-out infinite 1.5s;
}

.hero-scroll-hint svg {
  width: 28px;
  height: 28px;
  color: rgba(216, 27, 96, 0.25);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== DESTAQUES ===== */
.destaques {
  background: var(--cream);
  padding: 5rem 1.5rem;
  position: relative;
}

.destaques::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--accent));
}

.section-label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.destaques h2 {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-weight: 800;
}

.cards-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: #b0a090;
  font-weight: 500;
  animation: fadeUp 0.8s ease-out 0.8s both;
}

.cards-scroll-hint svg {
  width: 16px;
  height: 16px;
  animation: swipeHint 1.8s ease-in-out infinite;
}

@keyframes swipeHint {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

.cards-grid {
  display: flex;
  gap: 1.5rem;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 1.5rem 1rem;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.cards-grid::-webkit-scrollbar {
  display: none;
}

.cards-grid.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.cards-scroll-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.cards-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(216, 27, 96, 0.2);
  background: #fff;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
  opacity: 0.9;
}

.cards-scroll-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(216, 27, 96, 0.25);
  opacity: 1;
}

.cards-scroll-btn svg {
  width: 20px;
  height: 20px;
}

.cards-scroll-left {
  left: -8px;
}

.cards-scroll-right {
  right: -8px;
}

@media (max-width: 768px) {
  .cards-scroll-btn {
    display: none;
  }
  .cards-grid {
    padding: 0.5rem 1rem 1rem;
  }
}

.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(42, 31, 16, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  flex: 0 0 300px;
  scroll-snap-align: start;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(42, 31, 16, 0.14);
}

.card-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 30px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.card-body p {
  font-size: 0.95rem;
  color: #6b5e4f;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.btn-card {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-card:hover {
  background: #E91E63;
  transform: translateY(-1px);
}

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

/* ===== LOCALIZAÇÃO ===== */
.localizacao {
  background: #fff;
  padding: 5rem 1.5rem;
}

.loc-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.loc-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.loc-text p {
  font-size: 1.05rem;
  color: #6b5e4f;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.address-block {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-radius: 14px;
  border-left: 4px solid var(--primary);
  margin-bottom: 2rem;
}

.address-block svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.address-block span {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
  font-weight: 500;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--cream);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.loc-map {
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 8px 32px rgba(136, 14, 79, 0.18);
}

.loc-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-proof {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.proof-item .star {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(170deg, #FDF6F0 0%, #FEF0F5 35%, #FBF7F2 70%, #FFF8E7 100%);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(249, 168, 37, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(216, 27, 96, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 202, 40, 0.08) 0%, transparent 70%);
  z-index: 1;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 900;
  line-height: 1.15;
}

.final-cta p {
  font-size: 1.1rem;
  color: #6b5e4f;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.final-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 2rem auto 0;
  border: 2px solid rgba(216, 27, 96, 0.2);
  opacity: 0.85;
}

.final-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== FORM (hidden in WhatsApp flow but required) ===== */
.contact-form-section {
  background: var(--dark-warm);
  padding: 3rem 1.5rem;
  text-align: center;
}

.contact-form-section h3 {
  color: var(--text-light);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.contact-form-section p {
  color: rgba(245, 239, 230, 0.6);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.contact-form {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-form input {
  padding: 0.9rem 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.3s ease;
}

.contact-form input::placeholder {
  color: rgba(245, 239, 230, 0.4);
}

.contact-form input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form button {
  padding: 1rem;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #FBC02D;
  transform: translateY(-1px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(245, 239, 230, 0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-logo-wrap {
    width: 160px;
    height: 160px;
    margin-bottom: 1.5rem;
  }

  .loc-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .loc-map {
    aspect-ratio: 16/9;
  }

  .cards-grid {
    padding: 0.5rem 1rem 1rem;
  }
  .product-card {
    flex: 0 0 280px;
  }

  .trust-badges {
    flex-direction: column;
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
