﻿:root{
  --bg:#120805;
  --panel:#1f0f09;
  --panel2:#2d160d;
  --gold:#ffb52e;
  --orange:#ff6b1a;
  --cream:#fff3dc;
  --muted:#d9bfa4;
  --white:#ffffff;
  --shadow:0 22px 70px rgba(0,0,0,.35);
  --radius:26px;
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,107,26,.22), transparent 34%),
    radial-gradient(circle at top right, rgba(255,181,46,.18), transparent 30%),
    var(--bg);
  color:var(--cream);
  line-height:1.6;
}

a{
  color:inherit;
  text-decoration:none;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 7%;
  background:rgba(18,8,5,.84);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.brand{
  display:flex;
  gap:12px;
  align-items:center;
}

.logo{
  width:48px;
  height:48px;
  border-radius:16px;
  background:linear-gradient(135deg,var(--gold),var(--orange));
  color:#180700;
  display:grid;
  place-items:center;
  font-weight:900;
  box-shadow:0 12px 30px rgba(255,107,26,.28);
}

.brand span{
  display:block;
  font-size:13px;
  color:var(--muted);
}

.nav{
  display:flex;
  gap:22px;
  color:var(--muted);
  font-size:15px;
}

.nav a:hover{
  color:var(--gold);
}

.hero{
  min-height:86vh;
  padding:80px 7% 60px;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:50px;
  align-items:center;
}

.badge,.eyebrow{
  display:inline-block;
  color:var(--gold);
  background:rgba(255,181,46,.12);
  border:1px solid rgba(255,181,46,.25);
  padding:8px 14px;
  border-radius:999px;
  font-size:14px;
  margin-bottom:18px;
}

.hero h1{
  font-size:clamp(38px,6vw,76px);
  line-height:1.02;
  max-width:900px;
  letter-spacing:-2px;
}

.hero p{
  margin-top:22px;
  max-width:650px;
  color:var(--muted);
  font-size:19px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:32px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 22px;
  border-radius:16px;
  font-weight:800;
  transition:.2s ease;
}

.btn-primary{
  background:linear-gradient(135deg,var(--gold),var(--orange));
  color:#180700;
  box-shadow:0 18px 40px rgba(255,107,26,.25);
}

.btn-secondary{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
}

.btn:hover{
  transform:translateY(-2px);
}

.hero-info{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:32px;
}

.hero-info div{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.09);
  border-radius:18px;
  padding:16px;
}

.hero-info strong,
.hero-info span{
  display:block;
}

.hero-info span{
  color:var(--muted);
  font-size:14px;
}

.hero-card{
  background:
    linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,.04)),
    var(--panel);
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius);
  padding:34px;
  box-shadow:var(--shadow);
  text-align:center;
}

.plate{
  width:230px;
  height:230px;
  margin:0 auto 24px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:radial-gradient(circle,var(--gold),var(--orange));
  box-shadow:0 28px 70px rgba(255,107,26,.38);
}

.plate span{
  font-size:96px;
}

.hero-card h2{
  font-size:30px;
}

.hero-card p{
  color:var(--muted);
  margin:12px 0;
}

.hero-card strong{
  font-size:32px;
  color:var(--gold);
}

.section{
  padding:80px 7%;
}

.section-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 42px;
}

.section h2,
.promo h2{
  font-size:clamp(30px,4vw,50px);
  line-height:1.1;
}

.section-head p,
.promo p,
.contact p{
  color:var(--muted);
  margin-top:12px;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.product-card{
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.1);
  border-radius:22px;
  padding:24px;
  box-shadow:0 18px 50px rgba(0,0,0,.22);
}

.product-card .tag{
  display:inline-block;
  color:#180700;
  background:var(--gold);
  border-radius:999px;
  padding:5px 10px;
  font-size:12px;
  font-weight:900;
  margin-bottom:14px;
}

.product-card h3{
  font-size:23px;
  margin-bottom:8px;
}

.product-card p{
  color:var(--muted);
  min-height:76px;
}

.product-card strong{
  display:block;
  color:var(--gold);
  font-size:25px;
  margin:18px 0;
}

.product-card a{
  width:100%;
}

.promo{
  margin:30px 7%;
  padding:42px;
  border-radius:var(--radius);
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:center;
  background:linear-gradient(135deg,rgba(255,181,46,.22),rgba(255,107,26,.18));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow);
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:center;
}

.map-card{
  min-height:220px;
  border-radius:var(--radius);
  background:linear-gradient(135deg,var(--panel),var(--panel2));
  border:1px solid rgba(255,255,255,.12);
  display:grid;
  place-items:center;
  text-align:center;
  padding:32px;
}

.map-card strong,
.map-card span{
  display:block;
}

.map-card span{
  color:var(--muted);
}

.contact{
  text-align:center;
  max-width:820px;
  margin:0 auto;
}

.footer{
  padding:28px 7%;
  color:var(--muted);
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
}

.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:60;
  background:#25D366;
  color:#061b0d;
  font-weight:900;
  padding:15px 18px;
  border-radius:999px;
  box-shadow:0 18px 40px rgba(0,0,0,.35);
}

@media(max-width:900px){
  .topbar{
    align-items:flex-start;
    gap:14px;
  }

  .nav{
    display:none;
  }

  .hero{
    grid-template-columns:1fr;
    padding-top:54px;
  }

  .hero-info,
  .product-grid,
  .split{
    grid-template-columns:1fr;
  }

  .promo{
    flex-direction:column;
    align-items:flex-start;
  }

  .plate{
    width:180px;
    height:180px;
  }

  .plate span{
    font-size:76px;
  }
}

.trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.trust-row span{
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.10);
  color:var(--cream);
  padding:9px 12px;
  border-radius:999px;
  font-size:14px;
}

.hero-card-btn{
  margin-top:20px;
}

.benefits{
  padding-top:40px;
}

.benefit-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.benefit-card{
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.1);
  border-radius:22px;
  padding:28px;
  text-align:center;
  box-shadow:0 18px 50px rgba(0,0,0,.20);
}

.benefit-card span{
  display:grid;
  place-items:center;
  width:68px;
  height:68px;
  margin:0 auto 18px;
  border-radius:22px;
  background:rgba(255,181,46,.14);
  font-size:32px;
}

.benefit-card h3{
  font-size:23px;
  margin-bottom:10px;
}

.benefit-card p{
  color:var(--muted);
}

@media(max-width:900px){
  .benefit-grid{
    grid-template-columns:1fr;
  }

  .trust-row span{
    font-size:13px;
  }
}

.photo-plate{
  width:100%;
  max-width:360px;
  height:260px;
  border-radius:28px;
  overflow:hidden;
  background:none;
  box-shadow:0 28px 70px rgba(255,107,26,.28);
}

.photo-plate img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.photo-plate{
  width:100%;
  max-width:380px;
  height:260px;
  margin:0 auto 24px;
  border-radius:28px;
  overflow:hidden;
  background:none !important;
  box-shadow:0 28px 70px rgba(255,107,26,.28);
}

.photo-plate img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
