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

:root {
  --cream:       #FAF7F2;
  --cream-dark:  #F2EDE5;
  --charcoal:    #1E1C1A;
  --charcoal-mid:#3A3630;
  --terra:       #C4623A;
  --terra-dark:  #A34E2C;
  --gold:        #C9A96E;
  --gold-light:  #E8D5A8;
  --olive:       #506030;
  --olive-light: #B8C4AF;
  --white:       #FFFFFF;
  --text-muted:  #7A7468;
  --border:      #E2DAD0;
  --wa-green:    #25D366;
  --wa-dark:     #128C7E;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ——— ANNOUNCEMENT BAR ——— */
.announcement-bar {
  background: var(--charcoal);
  color: var(--gold-light);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.announcement-bar span { color: var(--terra); font-weight: 600; }

/* ——— NAVIGATION ——— */
nav {
  border-bottom: 1px solid var(--border);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(250, 247, 242, 0.95);
}
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.logo-tagline {
  font-size: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--terra);
  text-transform: uppercase;
}

/* ——— HERO ——— */
.hero {
  background-image: url('../imagens/almofada-hola.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
/* overlay escuro para garantir legibilidade do texto */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 14, 0.72);
  pointer-events: none;
}
/* gradientes decorativos por cima do overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(196, 98, 58, 0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 20%, rgba(201, 169, 110, 0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-badge {
  display: inline-block;
  background: rgba(196, 98, 58, 0.2);
  border: 1px solid var(--terra);
  color: var(--gold-light);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
}
.hero-cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-note {
  margin-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
}

/* ——— BUTTONS ——— */
.btn-primary {
  background: var(--wa-green);
  color: #fff;
  padding: 16px 36px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.02em;
}
.btn-primary:hover { background: var(--wa-dark); transform: translateY(-2px); }
.btn-primary--xl { font-size: 16px; padding: 18px 44px; }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 16px 36px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa-green);
  color: #fff;
  padding: 11px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-wa:hover { background: var(--wa-dark); }
.btn-wa--md { padding: 14px 28px; font-size: 14px; }

.btn-white {
  background: var(--white);
  color: var(--terra);
  padding: 16px 40px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

/* ——— TRUST BAR ——— */
.trust-bar {
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border);
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--charcoal-mid);
  letter-spacing: 0.03em;
}
.trust-icon { font-size: 20px; }

/* ——— SECTIONS ——— */
section { padding: 90px 20px; }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}
.section-label--light  { color: rgba(255,255,255,0.5); }
.section-label--faded  { color: rgba(255,255,255,0.4); }
.section-label--olive  { color: var(--olive); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--terra); }
.section-title--light { color: var(--white); }
.section-title em.olive { color: var(--olive); }

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
  font-weight: 300;
}
.text-center { text-align: center; }
.section-subtitle.centered { margin: 0 auto; }

/* ——— INTRO ——— */
.intro { background: var(--white); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
.intro-text p {
  font-size: 16px;
  color: var(--charcoal-mid);
  line-height: 1.85;
  margin-bottom: 20px;
  font-weight: 300;
}
.intro-text strong { color: var(--terra); font-weight: 600; }
.intro-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.intro-visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
}
.intro-visual img:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }

/* ——— PRODUCTS ——— */
.products { background: var(--cream); }
.products-header { text-align: center; margin-bottom: 60px; }
.urgency-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--terra);
  color: #fff;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 36px;
  letter-spacing: 0.03em;
}
.urgency-bar .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(30, 28, 26, 0.12);
}
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--terra);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  z-index: 2;
}
.product-badge.gold { background: var(--gold); color: var(--charcoal); }
.product-img-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.img-anchor-bottom { object-position: center bottom; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-body { padding: 24px; }
.product-category {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: 8px;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.2;
}
.product-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 300;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--charcoal);
}
.product-price small {
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--text-muted);
  margin-right: 4px;
}

/* ——— VALUES ——— */
.values { background: var(--charcoal); color: var(--white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 40px;
  margin-top: 60px;
}
.value-item { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 28px; }
.value-icon { font-size: 32px; margin-bottom: 16px; }
.value-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 12px;
}
.value-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-weight: 300;
}

/* ——— TESTIMONIALS ——— */
.testimonials { background: var(--cream-dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
}
.stars { color: var(--gold); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 20px;
}
.testimonial-author { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.testimonial-author span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--terra);
  letter-spacing: 0.05em;
}

/* ——— URGENCY SECTION ——— */
.urgency-section {
  background: var(--terra);
  color: var(--white);
  text-align: center;
  padding: 70px 20px;
}
.urgency-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
  font-weight: 300;
}

/* ——— DESIGNERS ——— */
.designers { background: var(--white); }
.designers-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.designers-text .section-label { color: var(--olive); }
.designers-text .section-title em { color: var(--olive); }
.designers-text p {
  font-size: 16px;
  color: var(--charcoal-mid);
  line-height: 1.85;
  margin-bottom: 20px;
  font-weight: 300;
}
.designers-perks {
  list-style: none;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.designers-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--charcoal-mid);
}
.perk-check {
  width: 22px;
  height: 22px;
  background: var(--olive);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  flex-shrink: 0;
}
.designers-visual {
  background: var(--cream-dark);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.designers-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ——— FAQ ——— */
.faq { background: var(--cream); }
.faq-list { max-width: 760px; margin: 52px auto 0; }
details { border-bottom: 1px solid var(--border); }
summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
  list-style: none;
  gap: 16px;
}
summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--terra);
  flex-shrink: 0;
  transition: transform 0.2s;
}
details[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ——— FINAL CTA ——— */
.final-cta {
  background: var(--charcoal);
  text-align: center;
  padding: 110px 20px;
}
.final-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
}

/* ——— FOOTER ——— */
footer {
  background: #111;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 36px 20px;
  font-size: 13px;
  letter-spacing: 0.03em;
}
footer p + p { margin-top: 8px; }
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  /* anula estilos herdados do seletor global nav */
  background: transparent;
  position: static;
  backdrop-filter: none;
  border-bottom: none;
  padding-left: 0;
  padding-right: 0;
  z-index: auto;
}
.footer-legal-sep { color: rgba(255,255,255,0.2); }
.footer-link {
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.03em;
  padding: 0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--gold); }

/* ——— MODAIS LEGAIS ——— */
.legal-modal {
  max-width: 760px;
  width: 90vw;
  max-height: 88vh;
  padding: 0;
  border: none;
  border-radius: 4px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.35);
  overflow: hidden;
}
.legal-modal::backdrop {
  background: rgba(30,28,26,0.75);
  backdrop-filter: blur(4px);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 1;
}
.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--charcoal);
}
.modal-close {
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.2s, border-color 0.2s;
}
.modal-close:hover { color: var(--charcoal); border-color: var(--charcoal); }
.modal-body {
  padding: 32px;
  overflow-y: auto;
  max-height: calc(88vh - 76px);
  background: var(--white);
}
.modal-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 28px 0 10px;
}
.modal-body h3:first-child { margin-top: 0; }
.modal-body p {
  font-size: 14px;
  color: var(--charcoal-mid);
  line-height: 1.85;
  margin-bottom: 12px;
}
.modal-body ul {
  margin: 8px 0 14px 20px;
}
.modal-body li {
  font-size: 14px;
  color: var(--charcoal-mid);
  line-height: 1.8;
  margin-bottom: 6px;
}
.modal-body strong { color: var(--charcoal); font-weight: 600; }
.modal-body a { color: var(--terra); text-decoration: underline; }
.modal-last-update {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-style: italic;
}

/* ——— COOKIE BANNER ——— */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 997;
  background: #17150F;
  color: var(--white);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.25);
  transform: translateY(110%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-text {
  flex: 1;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  min-width: 260px;
}
.cookie-link {
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  padding: 0;
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.btn-cookie-reject {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75);
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-cookie-reject:hover { border-color: var(--white); color: var(--white); }
.btn-cookie-accept {
  background: var(--terra);
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-cookie-accept:hover { background: var(--terra-dark); }

@media (max-width: 640px) {
  .cookie-banner { padding: 20px; }
  .cookie-actions { width: 100%; }
  .btn-cookie-reject, .btn-cookie-accept { flex: 1; text-align: center; }
  .modal-body { padding: 20px; }
  .modal-header { padding: 18px 20px; }
}

/* ——— WHATSAPP FLOATING ——— */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: var(--wa-green);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-bounce 3s ease infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.6);
  animation: none;
}
@keyframes wa-bounce {
  0%, 80%, 100% { transform: scale(1); }
  88%            { transform: scale(1.1); }
  94%            { transform: scale(1.05); }
}
.wa-float-tooltip {
  position: absolute;
  right: 70px;
  background: var(--charcoal);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.wa-float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: 0;
  border-left-color: var(--charcoal);
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }

/* ——— RESPONSIVE ——— */
@media (max-width: 900px) {
  .intro-grid, .designers-inner { grid-template-columns: 1fr; gap: 40px; }
  .designers-visual { aspect-ratio: 16/9; }
  nav { padding: 12px 20px; }
}
@media (max-width: 640px) {
  section { padding: 60px 16px; }
  .trust-bar { gap: 20px; padding: 18px 16px; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .intro-visual { grid-template-columns: 1fr; }
  .intro-visual img:first-child { aspect-ratio: 16/9; }
  .wa-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
  .logo img { height: 36px; }
}
