/* =========================================================
   CONFEITALIZ — Design tokens
   ========================================================= */
:root{
  --cream: #F8F1EA;
  --white: #FFFFFF;
  --rose-gold: #D6AD9D;
  --dusky-rose: #E4A1A1;
  --mocha: #6F4E37;
  --taupy: #8D6E61;
  --gold: #C9A227;
  --ink: #333333;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;

  --container: 1180px;
  --gap-section: clamp(4.5rem, 9vw, 8.5rem);
  --radius-lg: 22px;
  --radius-md: 14px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin:0; padding:0; }
button{ font-family: inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family: var(--font-display); margin:0; font-weight:600; color: var(--mocha); }

.container{ width:100%; max-width: var(--container); margin:0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
}

:focus-visible{ outline: 2px solid var(--gold); outline-offset: 3px; }

/* Type helpers */
.eyebrow{
  font-family: var(--font-body);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 .9rem;
}
.eyebrow-light{ color: var(--rose-gold); }
.center{ text-align:center; }
.section-title{ font-size: clamp(2rem, 3.2vw, 2.85rem); line-height:1.15; }
.section-lead{
  max-width: 560px; margin: 1rem auto 0;
  color: var(--taupy); font-weight:300; font-size:1.02rem; line-height:1.7;
}
.products .section-title, .products .eyebrow, .products .section-lead,
.gallery .section-title, .gallery .eyebrow, .gallery .section-lead,
.how .section-title, .how .eyebrow,
.testimonials .section-title, .testimonials .eyebrow,
.faq .section-title, .faq .eyebrow{ margin-left:auto; margin-right:auto; }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  font-size: .88rem; font-weight:500; letter-spacing:.02em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-whatsapp{
  background: var(--mocha); color: var(--white);
}
.btn-whatsapp:hover{ background:#5c3f2c; transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(111,78,55,.55); }
.btn-outline-light{
  border-color: rgba(255,255,255,.75); color: var(--white);
}
.btn-outline-light:hover{ background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-cta{
  background: var(--gold); color: var(--mocha); font-weight:600; padding: 1.1rem 2.4rem; font-size:.95rem;
}
.btn-cta:hover{ background:#e0bb3a; transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(201,162,39,.55); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position: fixed; inset: 0 0 auto 0; z-index: 500;
  background: transparent;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 1.4rem 0;
}
.site-header.scrolled{
  background: rgba(248,241,234,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px -18px rgba(111,78,55,.35);
  padding: .85rem 0;
}
.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1.5rem;
    min-height:90px;
}
.logo{
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img{
    height: 220px;
    width: auto;
    display: block;
}


.site-header:not(.scrolled) .logo-text,
.site-header:not(.scrolled) .logo-mark circle,
.site-header:not(.scrolled) .logo-mark path{ color:#fff; }
.site-header:not(.scrolled) .logo-text{ color:#fff; }

.main-nav ul{ display:flex; gap: 2.1rem; }
.nav-link{
  font-size: .88rem; font-weight:400; position:relative; padding: .3rem 0;
  color: var(--mocha);
  transition: color .3s var(--ease);
}
.site-header:not(.scrolled) .nav-link{ color: #fff; }
.nav-link::after{
  content:''; position:absolute; left:0; right:100%; bottom:-2px; height:1px; background: var(--gold);
  transition: right .35s var(--ease);
}
.nav-link:hover::after{ right:0; }
.nav-link:hover{ color: var(--gold); }

.header-cta{ flex-shrink:0; }
.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:38px; height:38px; background:none; border:none; padding:0;
}
.nav-toggle span{
  display:block; height:1.5px; width:100%; background: var(--mocha);
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.site-header:not(.scrolled) .nav-toggle span{ background:#fff; }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative; height: 100vh; height: 100dvh; display:flex; align-items:flex-end;
  overflow:hidden; color:#fff;
}
.hero-media{ position:absolute; inset:0; }
.hero-media picture,
.hero-media img{
    width:100%;
    height:100%;
    display:block;
}

.hero-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}
.hero-veil{
  position:absolute; inset:0;
  /* ~50% dark overlay for strong, consistent contrast, with a slightly deeper base
     so the CTA row and nav always read clearly against the photograph */
  background: rgba(28, 18, 13, .5);
}
.hero-veil::after{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(28,18,13,.08) 0%, rgba(28,18,13,.12) 40%, rgba(20,13,9,.55) 100%);
}
.hero-content{
    position: relative;
    z-index: 2;
    padding-bottom: clamp(5rem, 10vw, 8rem);
    max-width: 720px;
}
.hero-title{
    font-size: clamp(4.5rem, 8vw, 7rem);
    color:#fff;
    line-height:.9;
    font-weight:700;
    margin-bottom:.8rem;
    letter-spacing:-2px;
}
.hero-title span{
    display: block;
    margin-top: .2rem;
    font-size: .75em;
    font-style: italic;
    font-weight: 500;
    color: var(--rose-gold);
    line-height: 1;
    letter-spacing: 1px;
}
.hero-subtitle{
    max-width:650px;
    font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    line-height:1.8;
    color:rgba(255,255,255,.92);
    margin:2rem 0 2.8rem;
}
.hero-actions{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.scroll-cue{
  position:absolute; right: clamp(1.25rem,4vw,2.5rem); bottom: 2.2rem; z-index:2;
  width: 1px; height: 64px; display:flex; align-items:flex-end;
}
.scroll-cue-line{
  width:1px; height:100%; background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.9));
  position:relative; display:block; animation: cueMove 2.2s ease-in-out infinite;
  transform-origin: bottom;
}
@keyframes cueMove{ 0%,100%{ opacity:.4 } 50%{ opacity:1 } }

/* =========================================================
   SOBRE
   ========================================================= */
.about{ padding: var(--gap-section) 0 4rem; position:relative; }
.about-grid{
  display:grid; grid-template-columns: .85fr 1fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items:center;
}
.about-media{ position:relative; }
.about-media img{
  border-radius: var(--radius-lg); width:100%; aspect-ratio: 4/5; object-fit:cover; object-position: center top;
  box-shadow: 0 40px 60px -30px rgba(111,78,55,.4);
}
.about-seal{
  position:absolute; bottom: -30px; left: -30px;
  background: var(--cream); border-radius:50%; padding: 6px;
  box-shadow: 0 10px 30px -12px rgba(111,78,55,.4);
}
.about-copy p{ font-weight:300; line-height:1.85; color:#4a4038; font-size:1.02rem; }
.about-stats{ display:flex; gap: clamp(1.5rem,4vw,3rem); margin-top: 2.4rem; }
.about-stats div{ display:flex; flex-direction:column; gap:.2rem; }
.about-stats strong{ font-family: var(--font-display); font-size:1.6rem; color: var(--gold); }
.about-stats span{ font-size:.78rem; color: var(--taupy); letter-spacing:.02em; }

.divider{ display:flex; justify-content:center; padding: 3rem 0 0; opacity:.75; }

/* =========================================================
   PRODUCTS
   ========================================================= */
.products{ padding: 3rem 0 var(--gap-section); }
.product-grid{
  margin-top: 3.5rem;
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem;
}
.product-card{
  background: var(--white); border-radius: var(--radius-lg); overflow:hidden;
  box-shadow: 0 18px 40px -28px rgba(111,78,55,.35);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  display:flex; flex-direction:column;
}
.product-card:hover{ transform: translateY(-8px); box-shadow: 0 30px 50px -25px rgba(111,78,55,.45); }
.product-media{ position:relative; aspect-ratio: 1/1; overflow:hidden; }
.product-media img{ width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.product-card:hover .product-media img{ transform: scale(1.07); }
.product-body{ padding: 1.4rem 1.4rem 1.6rem; display:flex; flex-direction:column; gap:.6rem; flex:1; }
.product-body h3{ font-size: 1.12rem; color: var(--mocha); }
.product-body p{ font-size:.86rem; color: var(--taupy); font-weight:300; line-height:1.6; flex:1; margin:0; }
.product-link{
  margin-top:.6rem; display:inline-flex; align-items:center; gap:.4rem;
  font-size:.8rem; font-weight:500; color: var(--gold); border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), gap .3s var(--ease);
  align-self:flex-start;
}
.product-link:hover{ border-color: var(--gold); gap:.6rem; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery{ padding: 3rem 0 var(--gap-section); background: var(--white); }
.gallery-grid{
  margin-top: 3.5rem;
  display:grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 1rem;
}
.gallery-item{
  position:relative; border-radius: var(--radius-md); overflow:hidden; cursor:pointer;
  background: var(--cream);
}
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.gallery-item:hover img{ transform: scale(1.09); }
.gallery-item::after{
  content:''; position:absolute; inset:0; background: rgba(51,35,26,0); transition: background .35s var(--ease);
}
.gallery-item:hover::after{ background: rgba(51,35,26,.18); }
.gallery-item.tall{ grid-row: span 2; }
.gallery-item.wide{ grid-column: span 2; }

.lightbox{
  position: fixed; inset:0; z-index: 900; display:none; align-items:center; justify-content:center;
  background: rgba(24,16,12,.92); padding: 2rem;
}
.lightbox.active{ display:flex; }
.lightbox img{ max-width: min(90vw, 900px); max-height: 85vh; border-radius: 6px; box-shadow: 0 30px 60px rgba(0,0,0,.5); }
.lightbox-close, .lightbox-nav{
  position:absolute; background: rgba(255,255,255,.08); color:#fff; border: 1px solid rgba(255,255,255,.25);
  width: 46px; height:46px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size: 1.4rem; transition: background .3s var(--ease);
}
.lightbox-close:hover, .lightbox-nav:hover{ background: rgba(255,255,255,.2); }
.lightbox-close{ top: 1.5rem; right: 1.5rem; }
.lightbox-nav.prev{ left: 1.5rem; top:50%; transform: translateY(-50%); }
.lightbox-nav.next{ right: 1.5rem; top:50%; transform: translateY(-50%); }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how{ padding: 3rem 0 var(--gap-section); }
.how-steps{
  margin-top: 3.5rem;
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
}

.how-step{
  text-align:center; padding: 2.6rem 1.8rem; background: var(--white); border-radius: var(--radius-lg);
  box-shadow: 0 18px 40px -30px rgba(111,78,55,.3);
}
.how-index{
  font-family: var(--font-display); font-style: italic; font-size: 2.4rem; color: var(--rose-gold);
  display:block; margin-bottom: .6rem;
}
.how-step h3{ font-size: 1.15rem; margin-bottom:.7rem; }
.how-step p{ font-size:.9rem; color: var(--taupy); font-weight:300; line-height:1.7; margin:0; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials{ padding: 3rem 0 var(--gap-section); background: var(--mocha); color: #fff; }
.testimonials .eyebrow{ color: var(--rose-gold); }
.testimonials .section-title{ color:#fff; }
.testimonial-carousel{ margin-top: 3.5rem; max-width: 720px; margin-left:auto; margin-right:auto; }
.testimonial-track{ position:relative; min-height: 210px; }
.testimonial-slide{
  position:absolute; inset:0; opacity:0; pointer-events:none; transition: opacity .6s var(--ease);
  text-align:center; padding: 0 1rem;
}
.testimonial-slide.active{ opacity:1; pointer-events:auto; }
.stars{ color: var(--gold); font-size: 1rem; letter-spacing: .2em; margin-bottom: 1.2rem; }
.testimonial-slide p{ font-family: var(--font-display); font-style: italic; font-size: 1.3rem; line-height:1.6; font-weight:400; color:#f3e9df; }
.testimonial-slide span{ display:block; margin-top:1.3rem; font-size:.82rem; letter-spacing:.05em; color: var(--rose-gold); }
.testimonial-dots{ display:flex; justify-content:center; gap:.55rem; margin-top: 2rem; }
.testimonial-dots button{
  width:8px; height:8px; border-radius:50%; background: rgba(255,255,255,.3); border:none; padding:0;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.testimonial-dots button.active{ background: var(--gold); transform: scale(1.25); }

/* =========================================================
   FAQ
   ========================================================= */
.faq{ padding: 3rem 0 var(--gap-section); }
.faq-container{ max-width: 780px; }
.accordion{ margin-top: 3rem; display:flex; flex-direction:column; gap: .9rem; }
.accordion-item{
  background: var(--white); border-radius: var(--radius-md); overflow:hidden;
  box-shadow: 0 12px 30px -24px rgba(111,78,55,.35);
}
.accordion-question{
  width:100%; background:none; border:none; text-align:left; padding: 1.25rem 1.5rem;
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  font-family: var(--font-body); font-size: .98rem; font-weight:500; color: var(--mocha);
}
.accordion-question .plus{
  flex-shrink:0; width:22px; height:22px; position:relative;
}
.accordion-question .plus::before, .accordion-question .plus::after{
  content:''; position:absolute; background: var(--gold); top:50%; left:50%; transform:translate(-50%,-50%);
}
.accordion-question .plus::before{ width:14px; height:1.4px; }
.accordion-question .plus::after{ width:1.4px; height:14px; transition: transform .35s var(--ease); }
.accordion-item.open .accordion-question .plus::after{ transform: translate(-50%,-50%) rotate(90deg); scale: 0 1; }
.accordion-answer{
  max-height:0; overflow:hidden; transition: max-height .45s var(--ease);
}
.accordion-answer p{ margin:0; padding: 0 1.5rem 1.4rem; font-size: .9rem; font-weight:300; color: var(--taupy); line-height:1.7; }

/* =========================================================
   CTA FINAL
   ========================================================= */
.cta-final{
  position:relative; padding: var(--gap-section) 0; text-align:center; overflow:hidden;
  background: var(--mocha);
}
.cta-final::before{
  content:''; position:absolute; inset:0;
  background: radial-gradient(60% 90% at 50% 0%, rgba(214,173,157,.25), transparent 70%);
}
.cta-inner{ position:relative; }
.cta-title{ color:#fff; font-size: clamp(2.2rem, 4.2vw, 3.4rem); line-height:1.15; margin: .5rem 0 1.5rem; }
.cta-text{ max-width: 520px; margin: 0 auto 2.4rem; color: rgba(255,255,255,.78); font-weight:300; line-height:1.75; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background: #2c1e16; color: rgba(255,255,255,.7); padding: 4.5rem 0 0; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.logo-footer .logo-text{ color:#fff; }
.footer-brand p{ margin-top:1rem; font-size:.88rem; font-weight:300; line-height:1.7; max-width: 320px; }
.footer-col h4{ color:#fff; font-size:.82rem; text-transform:uppercase; letter-spacing:.15em; font-weight:500; margin-bottom:1rem; }
.footer-col p{ font-size:.88rem; font-weight:300; line-height:1.8; margin: 0 0 .3rem; }
.footer-col a:hover{ color: var(--gold); }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.08); padding: 1.6rem clamp(1.25rem, 4vw, 2.5rem);
  text-align:center; font-size: .78rem; color: rgba(255,255,255,.45);
}

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.float-whatsapp{
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 400;
  width: 58px; height:58px; border-radius:50%; background: #25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 14px 30px -10px rgba(37,211,102,.6);
  transition: transform .35s var(--ease);
}
.float-whatsapp:hover{ transform: scale(1.08); }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal{ opacity:0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view{ opacity:1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px){
  .product-grid{ grid-template-columns: repeat(3,1fr); }
  .gallery-grid{ grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 900px){
  .main-nav{
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 340px); height:100vh;
    background: var(--cream); box-shadow: -20px 0 50px -20px rgba(0,0,0,.25);
    transform: translateX(100%); transition: transform .45s var(--ease);
    padding: 6.5rem 2.2rem 2rem; z-index: 480;
  }
  .main-nav.open{ transform: translateX(0); }
  .main-nav ul{ flex-direction:column; gap: 1.6rem; }
  .nav-link{ color: var(--mocha) !important; font-size: 1.05rem; }
  .header-cta{ display:none; }
  .nav-toggle{ display:flex; }
  .nav-toggle.active span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2){ opacity:0; }
  .nav-toggle.active span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

  .about-grid{ grid-template-columns:1fr; }
  .about-media{ max-width: 420px; margin: 0 auto; }

  .product-grid{ grid-template-columns: repeat(2,1fr); }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); grid-auto-rows: 180px; }
  .how-steps{ grid-template-columns:1fr; gap:1.5rem; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .footer-brand{ grid-column: 1 / -1; }
}

@media (max-width: 560px){
  .hero{ align-items:flex-end; }
  .hero-actions{ flex-direction:column; align-items:stretch; }
  .hero-actions .btn{
    padding: 16px 34px;
    font-size: 1rem;
}
  .product-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); grid-auto-rows: 140px; }
  .about-stats{ gap: 1.4rem; flex-wrap:wrap; }
  .lightbox-nav{ width:38px; height:38px; font-size:1.1rem; }
  .cta-final, .products, .gallery, .how, .testimonials, .faq, .about{ padding-top: 3.5rem; padding-bottom: 3.5rem; }
}
/* ===========================
   HERO RESPONSIVO
=========================== */
@media (max-width: 768px){

  .hero{
    min-height: 100vh;
    padding: 120px 0 60px;
    text-align: center;
  }

  .hero-content{
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }

  .hero-title{
    font-size: clamp(2.8rem, 10vw, 4rem);
    line-height: .95;
  }

  .hero-title span{
    font-size: .75em;
  }

  .hero-subtitle{
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.5rem auto 2rem;
  }

  .hero-actions{
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .hero-actions .btn{
    width: 100%;
    justify-content: center;
  }
}