:root{
  --wine:#83051d;
  --wine-dark:#5f0014;
  --wine-soft:#a40d2b;
  --gold:#d78e18;
  --gold-light:#f8c86c;
  --cream:#fff7eb;
  --cream-2:#fff1e3;
  --pink:#ffe6e8;
  --ink:#2b1916;
  --muted:#725a51;
  --line:#f0dac7;
  --shadow:0 18px 45px rgba(104,28,18,.10);
  --radius:14px;
  --max:1216px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(255,231,180,.55) 0 190px, transparent 360px),
    radial-gradient(circle at 84% 2%, rgba(255,207,214,.55) 0 200px, transparent 420px),
    linear-gradient(180deg,#fffbf5 0%,#fff 40%,#fff8f0 100%);
  overflow-x:hidden;
}

.page-noise{
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.28;
  z-index:-2;
  background-image:
    radial-gradient(circle at 2px 2px, rgba(130,5,29,.05) 1px, transparent 0),
    radial-gradient(circle at 70% 20%, rgba(216,142,24,.08), transparent 320px);
  background-size:36px 36px, auto;
}
.scroll-progress{
  position:fixed;
  left:0;top:0;height:3px;width:0%;
  z-index:100;
  background:linear-gradient(90deg,var(--gold),var(--wine));
  box-shadow:0 0 12px rgba(215,142,24,.6);
}

.feather{
  position:absolute;
  right:-27px;top:-9px;width:28px;height:28px;
  display:grid;place-items:center;
  border-radius:50%;
  color:#087c72;
  background:radial-gradient(circle,#064a8f 0 23%,#20a08c 24% 38%,#e9b22d 39% 52%, transparent 53%),
             linear-gradient(135deg,#78ad2d,#09939c);
  transform:rotate(-25deg);
  font-size:0;
  box-shadow:0 2px 8px rgba(10,94,99,.22);
}
.feather:after{content:"";width:42px;height:2px;background:#508c31;transform:translate(7px,13px) rotate(-35deg);border-radius:8px}

.hero-section{
  position:relative;
  min-height:360px;
  margin-top:-20px;
  display:grid;
  grid-template-columns:48% 52%;
  overflow:hidden;
  background:
    linear-gradient(90deg,rgba(255,247,233,.98) 0%,rgba(255,247,233,.93) 38%,rgba(255,239,226,.28) 63%,rgba(255,255,255,0) 100%),
    radial-gradient(circle at 20% 40%,rgba(252,224,159,.25),transparent 260px);
}
.hero-section svg{fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.hero-section:before{
  content:"";
  position:absolute;inset:0;
  background-image:
    linear-gradient(30deg, rgba(139,82,45,.055) 12%, transparent 12.5%, transparent 87%, rgba(139,82,45,.055) 87.5%, rgba(139,82,45,.055)),
    linear-gradient(150deg, rgba(139,82,45,.04) 12%, transparent 12.5%, transparent 87%, rgba(139,82,45,.04) 87.5%, rgba(139,82,45,.04));
  background-size:38px 66px;
  opacity:.45;
  pointer-events:none;
  mask-image:linear-gradient(90deg,#000 0%,transparent 65%);
}
.hero-ornament{position:absolute;left:17%;top:134px;width:102px;height:102px;border:1px solid rgba(215,142,24,.13);border-radius:50%;animation:slowSpin 16s linear infinite;opacity:.5}
.hero-copy{position:relative;z-index:3;padding:48px 24px 34px clamp(30px,7vw,94px);align-self:center;text-align:center;max-width:90%}
.eyebrow{margin:0 0 9px;color:var(--wine-dark);font-weight:700;font-size:20px;letter-spacing:.01em}
.hero-copy h1{margin:0;font-size:clamp(46px,6.1vw,67px);font-family:Georgia,"Times New Roman",serif; line-height:1.03;font-weight:700;text-shadow:0 2px 0 rgba(255,255,255,.55);color:var(--wine-dark);letter-spacing:-.02em}
.title-divider{height:22px;display:flex;align-items:center;justify-content:center;margin:4px 0 8px;color:var(--gold)}
.title-divider span{width:180px;height:1px;background:linear-gradient(90deg,transparent,var(--gold),transparent);position:relative}
.title-divider span:before,.title-divider span:after{content:"";position:absolute;top:50%;width:8px;height:8px;border:1px solid var(--gold);transform:translateY(-50%) rotate(45deg);background:#fff7eb}
.title-divider span:before{left:50%;margin-left:-14px}.title-divider span:after{right:50%;margin-right:-14px}
.hero-text{font-size:15.5px;line-height:1.55;max-width:370px;margin:0 auto 20px;color:#243035;font-weight:600}
.hero-buttons{display:flex;justify-content:center;gap:17px;flex-wrap:wrap}
.btn{position:relative;overflow:hidden;display:inline-flex;align-items:center;justify-content:center;gap:10px;border-radius:6px;border:0;color:#fff;padding:16px 25px;font-size:16px;font-weight:900;box-shadow:0 14px 28px rgba(95,0,20,.20);isolation:isolate;transition:transform .28s ease,box-shadow .28s ease,filter .28s ease}
.btn:before{content:"";position:absolute;inset:0;background:linear-gradient(115deg,transparent 0 38%,rgba(255,255,255,.38) 48%,transparent 58%);transform:translateX(-120%);transition:transform .7s ease;z-index:-1}
.btn:hover{transform:translateY(-4px);box-shadow:0 20px 38px rgba(95,0,20,.25);filter:saturate(1.08)}
.btn:hover:before{transform:translateX(120%)}
.btn svg{width:20px;height:20px}
.btn-primary{background:linear-gradient(135deg,var(--wine-dark),var(--wine),#a80b2d)}
.btn-whatsapp{background:linear-gradient(135deg,#119b56,#0bb25e)}
.btn-primary:hover, .btn-whatsapp:hover{color:#fff}
.btn-gold{background:linear-gradient(135deg,#ffe18d,#edab2e,#cc7f0a);color:#6a1708;box-shadow:0 14px 28px rgba(216,142,24,.24)}
.compact{padding:12px 23px;font-size:14px}
.customer-proof{margin-top:24px;display:flex;align-items:center;justify-content:center;gap:10px;color:#4f3d36;font-size:13px;flex-wrap:wrap}
.customer-proof strong{font-size:20px;color:var(--gold);letter-spacing:.01em}
.customer-proof .stars{margin-bottom: 0;}
.stars,.rating{color:#ffae00;letter-spacing:1px}
.mini-faces{display:flex;margin-right:3px}.mini-faces i{width:28px;height:28px;margin-left:-6px;border-radius:50%;border:2px solid #fff;box-shadow:0 3px 8px rgba(0,0,0,.12);background:linear-gradient(135deg,#a8654d,#ffd1ac)}
.mini-faces i:nth-child(2){background:linear-gradient(135deg,#435c73,#f5c8aa)}.mini-faces i:nth-child(3){background:linear-gradient(135deg,#9b6e55,#ffd8ba)}.mini-faces i:nth-child(4){background:linear-gradient(135deg,#475f4c,#f1b899)}.mini-faces i:nth-child(5){background:linear-gradient(135deg,#6c4c7d,#ffd6b8)}
.hero-photo{position:relative;min-height:360px;overflow:hidden}
.hero-photo:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(255,247,233,.42) 0%,transparent 24%),linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,230,232,.12));pointer-events:none}
.hero-photo img{width:100%;height:100%;object-fit:cover;object-position:center;animation:heroFloat 6s ease-in-out infinite;filter:saturate(1.05) contrast(1.02)}

.benefits{
  width:min(calc(100% - 58px),var(--max));
  margin:28px auto 31px;
  min-height:75px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:0;
  background:rgba(255,255,255,.92);
  border:1px solid var(--line);
  border-radius:10px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.benefits svg{fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.benefits article{display:flex;align-items:center;gap:16px;padding:18px 20px;position:relative;transition:.28s ease}
.benefits article:not(:last-child):after{content:"";position:absolute;right:0;top:22%;height:56%;width:1px;background:#f3dfcd}
.benefits article:hover{background:#fff8ee;transform:translateY(-3px)}
.benefits svg{width:33px;height:33px;color:var(--gold);flex:0 0 auto;transition:.35s}
.benefits article:hover svg{transform:scale(1.12) rotate(-5deg)}
.benefits b{display:block;font-size:14px;color:#2b1a17; margin-bottom: 0; line-height: normal;}
.benefits small{font-size:14px;color:#342a27}

.products-section,.testimonials{position:relative;width:min(calc(100% - 62px),var(--max));margin:0 auto;padding:30px 0 50px}
.section-heading{display:flex;align-items:center;justify-content:center;gap:15px;margin:0 0 19px;text-align:center}
.section-heading h2{font-size:32px;line-height:1.5;margin:0;font-weight:700}
.section-heading span{position:relative;width:60px;height:1px;background:linear-gradient(90deg,transparent,var(--gold),transparent)}
.section-heading span:after{content:"";position:absolute;left:50%;top:50%;width:8px;height:8px;border:1px solid var(--gold);background:#fff;transform:translate(-50%,-50%) rotate(45deg)}
.carousel-wrap{overflow:hidden;width:100%}
.product-grid{display:flex;flex-wrap:nowrap;gap:13px;transition:transform .42s cubic-bezier(.25,.8,.25,1);will-change:transform}
.product-card{flex:0 0 calc((100% - 39px) / 4);min-width:0}
.product-card{
  background:#fff;
  border:1px solid #ead4c5;
  border-radius:6px;
  padding:8px 8px 10px;
  box-shadow:0 9px 22px rgba(84,32,24,.12);
  transition:transform .34s ease, box-shadow .34s ease, border-color .34s ease;
  animation:cardIn .65s ease both;
  animation-delay:var(--delay);
}
.product-card:hover{transform:translateY(-10px);box-shadow:0 18px 38px rgba(123,5,29,.22);border-color:#e5b78f}
.img-wrap{height:300px;border-radius:4px;overflow:hidden;background:#fbe7db;margin-bottom:9px}
.img-wrap a{position:relative;display:block;width:100%;height:100%}
.img-wrap img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .5s ease, opacity .35s ease}
.img-wrap .main-image{opacity:1}
.img-wrap .hover-image{opacity:0}
.product-card:hover .img-wrap.has-hover-image .main-image{opacity:0}
.product-card:hover .img-wrap.has-hover-image .hover-image{opacity:1}
.product-card:hover .img-wrap img{transform:scale(1.12)}
.product-card h3{margin:0 0 5px;min-height:64px;color:var(--wine-dark);font-size:16px;line-height:1.35;font-weight:600}
.rating{font-size:14px;line-height:1.3}.rating small{color:#5d4d49;letter-spacing:0;margin-left:4px}
.price{font-weight:700;color:var(--wine);font-size:24px;margin:10px 0 15px}
.price ins{text-decoration: none;}
.price del{font-size:13px;color:#a0918d;margin-left:4px;font-weight:700}
.product-card button{width:100%;border:0;border-radius:4px;background:linear-gradient(180deg,#970a27,var(--wine-dark));color:#fff;padding:10px 8px;font-size:14px;font-weight:700;cursor:pointer;transition:.25s;box-shadow:0 6px 12px rgba(95,0,20,.15)}
.product-card button:hover{background:linear-gradient(180deg,#e7a73a,#d58a18);color:#5d1307;transform:translateY(-2px)}
.product-card button a{ color: #fff; font-size: 14px !important; font-weight: 700 !important; padding:0;}
.slider-arrow{position:absolute;z-index:5;width:35px;height:35px;display:grid;place-items:center;border-radius:50%;border:1px solid #ead4c5;background:#fff;color:#8a4629;font-size:30px;line-height:0.1;box-shadow:0 6px 18px rgba(83,26,16,.10);cursor:pointer;transition:.25s}
.slider-arrow:hover{background:var(--wine);color:#fff;transform:scale(1.08)}
.slider-arrow:disabled{opacity:.35;cursor:default;pointer-events:none;transform:none}
.products-section .slider-arrow{top:45%}.slider-arrow.left{left:-24px}.slider-arrow.right{right:-24px}

.video-panel{
  width:min(calc(100% - 62px),var(--max));
  margin:50px auto;
  padding:36px 20px 20px;
  background:linear-gradient(90deg,#fff9f2,#fff0e8);
  border:1px solid #f0dac7;
  border-radius:9px;
  box-shadow:0 12px 34px rgba(83,26,16,.07);
}
.video-copy{text-align:center;margin-bottom:30px}
.video-copy h2{font-size:32px;line-height:1.2;margin:0 0 10px; font-weight: 700;}
.video-copy p{font-size:14px;line-height:1.6;margin:0 auto;max-width:480px;color:#2f2925;font-weight:600}
.reel-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.reel-item{position:relative;border-radius:12px;overflow:hidden;background:#2b0d08;aspect-ratio:9/16;cursor:pointer;box-shadow:0 8px 24px rgba(95,0,20,.2)}
.reel-item video{width:100%;height:100%;object-fit:cover;display:block}
.reel-item:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 45%,rgba(0,0,0,.65));pointer-events:none}
.reel-play{position:absolute;left:50%;top:45%;z-index:2;transform:translate(-50%,-50%);width:48px;height:48px;border-radius:50%;border:0;background:rgba(0,0,0,.55);color:#fff;font-size:18px;display:grid;place-items:center;cursor:pointer;box-shadow:0 0 0 8px rgba(255,255,255,.14);animation:pulse 1.9s ease-in-out infinite;transition:.25s}
.reel-play:hover{background:var(--wine);transform:translate(-50%,-50%) scale(1.08)}
.reel-play.playing{background:rgba(0,0,0,.45)}
.reel-label{position:absolute;bottom:12px;left:0;right:0;z-index:3;text-align:center;color:#fff;font-size:14px;font-weight:700;text-shadow:0 1px 6px rgba(0,0,0,.5);padding:0 10px}

.testimonials{padding-bottom:50px; background-color: #fefbf6;}
.testimonials .carousel-wrap{overflow:hidden;width:100%; padding:10px 20px 30px;position:relative}
.testimonials .slider-arrow{top:50%}
.review-grid{display:flex;flex-wrap:nowrap;gap:34px;width:100%;transition:transform .45s cubic-bezier(.25,.8,.25,1);will-change:transform}
.testimonials .review-card{flex:0 0 calc((100% - 68px) / 3);min-width:0}
.review-card{background:#fffdf8;border:1px solid #ead8cb;border-radius:8px;padding:24px 28px 22px;min-height:145px;text-align:center;box-shadow:0 13px 15px rgba(30,26,16,.09);transition:.32s ease;position:relative;overflow:hidden}.review-card:before{content:"";position:absolute;inset:-70px auto auto -70px;width:140px;height:140px;border-radius:50%;background:rgba(215,142,24,.08)}
.review-card:hover{transform:translateY(-8px);box-shadow:0 20px 20px rgba(35,0,20,.16)}
.rating.big{font-size:16px;margin-bottom:8px}
.review-card p{font-size:16px;line-height:1.5;min-height:42px;margin:0 0 16px}
.reviewer{display:flex;align-items:center;gap:12px;justify-content:center;text-align:left; }
.reviewer span{background-color: #2b0d08; color: #fff; padding: 2px 6px; font-size: 14px; font-weight: 600; display: flex; justify-content: center; align-items: center; text-align: center; width: 42px; height: 42px; border-radius: 50%;}
.reviewer img{width:43px;height:43px;border-radius:50%;object-fit:cover;box-shadow:0 5px 12px rgba(0,0,0,.14)}
.reviewer b{display:block;font-size:15px}
.reviewer small{font-size:13px;color:#6c5d59}.dots{display:flex;justify-content:center;gap:8px;margin-top:18px}.dots span{width:8px;height:8px;border-radius:50%;background:#e8d6c7;cursor:pointer;transition:.25s}.dots span:hover{background:var(--gold)}.dots .active{background:var(--wine);transform:scale(1.35)}

.bottom-cta{min-height:109px;display:grid;grid-template-columns:210px 1fr 210px;align-items:center;text-align:center;overflow:hidden;background:radial-gradient(circle at center,rgba(192,40,58,.42),transparent 370px),linear-gradient(90deg,#5d0013 0%,#930827 50%,#5d0013 100%);color:#fff;position:relative}
.bottom-cta:before{content:"";position:absolute;inset:0;background:linear-gradient(135deg,rgba(255,255,255,.08) 25%,transparent 25%) 0 0/48px 48px;opacity:.18}.bottom-cta img{height:auto;width:100%;object-fit:cover;position:relative;z-index:1}.bottom-cta .cta-left{object-position:left center}.bottom-cta .cta-right{object-position:right center}
.bottom-cta div{position:relative;z-index:2;padding:25px 20px}
.bottom-cta h2{font-size:26px;line-height:1.5;color:#fff;margin:0 0 10px;text-shadow:0 2px 12px rgba(0,0,0,.2)}
.bottom-cta p{font-size:16px;font-weight:700;margin:0 0 20px;color:#fff7e7}


.reveal{opacity:0;transform:translateY(30px);transition:opacity .85s ease,transform .85s cubic-bezier(.2,.8,.2,1)}.reveal.is-visible{opacity:1;transform:none}.reveal.is-visible .benefits article,.reveal.is-visible .product-card{animation-play-state:running}
@keyframes heroFloat{0%,100%{transform:scale(1.02) translateY(0)}50%{transform:scale(1.035) translateY(-8px)}}
@keyframes floatY{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}
@keyframes pulse{0%,100%{box-shadow:0 0 0 8px rgba(255,255,255,.16)}50%{box-shadow:0 0 0 18px rgba(255,255,255,.06)}}
@keyframes slowSpin{to{transform:rotate(360deg)}}
@keyframes cardIn{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:none}}

@media (min-width:1300px){
  .hero-section{grid-template-columns:minmax(520px,48%) 1fr}.hero-photo img{object-position:center 42%}.hero-copy{padding-left:clamp(70px,8vw,150px)}
}
@media (max-width:1100px){
  .benefits article{padding:16px 12px;gap:10px}.benefits b{font-size:12px}.benefits small{font-size:11px}
  .product-grid{gap:10px}.product-card{flex:0 0 calc((100% - 30px) / 4)}.footer-links{grid-template-columns:repeat(3,1fr);padding-left:0;padding-right:0}
}
@media (max-width:900px){
  .hero-section{grid-template-columns:1fr;min-height:auto}.hero-copy{max-width:none;padding:44px 25px 26px}.hero-photo{min-height:310px}.hero-photo:after{background:linear-gradient(180deg,rgba(255,247,233,.55),rgba(255,255,255,0) 30%)}
  .benefits{grid-template-columns:repeat(2,1fr);width:calc(100% - 34px)}
  .benefits article:nth-child(even):after{display:none}.benefits article:last-child{grid-column:1/-1;justify-content:center}
  .products-section,.testimonials,.video-panel,.footer-benefits,.footer-links,.copyright{width:calc(100% - 34px)}.product-card{flex:0 0 calc((100% - 13px) / 2)}.img-wrap{height:150px}.product-card h3{min-height:auto}.testimonials .slider-arrow{display:grid;left:0}.testimonials .slider-arrow.right{left:auto;right:0}.testimonials .review-card{flex:0 0 100%}.products-section .slider-arrow{display:grid}.products-section .slider-arrow.left{left:4px}.products-section .slider-arrow.right{right:4px}
  .video-panel{padding:25px}.reel-grid{grid-template-columns:repeat(2,1fr)}.review-grid{gap:34px}.bottom-cta{grid-template-columns:150px 1fr}.bottom-cta .cta-right{display:none}.footer-benefits{grid-template-columns:repeat(2,1fr);row-gap:18px}.footer-links{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:560px){
  .hero-section .hero-photo{ order:1; }
  .hero-section .hero-copy{ order:2; padding:25px; }
  .hero-copy h1{font-size:39px}.eyebrow{font-size:17px}.hero-text{font-size:14px}.hero-buttons{gap:10px}.btn{width:100%;max-width:280px}.customer-proof{font-size:12px}.hero-photo{min-height:260px}
  .benefits{grid-template-columns:1fr 1fr;}
  .benefits article:nth-child(2){display: none;}
  .benefits article:not(:last-child):after{display:none}.benefits article:last-child{grid-column:auto;justify-content:flex-start}
  .section-heading h2{font-size:27px}.section-heading span{display:none}.product-grid{gap:12px}.product-card{flex:0 0 calc((100% - 12px) / 2)}.img-wrap{height:135px}.product-card h3{font-size:12px}.price{font-size:16px}
  .video-copy h2{font-size:26px}.reel-grid{gap:10px}.bottom-cta{grid-template-columns:1fr}.bottom-cta img{display:none}.bottom-cta{padding:20px}.bottom-cta h2{font-size:22px}.footer-benefits,.footer-links{grid-template-columns:1fr}.copyright{height:auto;padding:15px 0;gap:10px;flex-direction:column;align-items:flex-start}.newsletter form{max-width:none}
  .products-section, .testimonials{padding:20px 0;}
  .video-panel{margin: 20px auto; padding: 20px 10px 15px;}
}
@media (max-width:380px){.product-card{flex:0 0 100%}.hero-copy h1{font-size:34px}}
