/* =========================
   Talienge - Preto & Dourado
   ========================= */

:root{
  --bg: #f4f6fb;
  --bg2: #eef2f8;

  --card: #ffffff;
  --text: #0b1220;
  --muted: rgba(11, 18, 32, 0.72);

  --border: rgba(11, 18, 32, 0.10);
  --shadow: 0 16px 45px rgba(11, 18, 32, 0.10);
  --shadow2: 0 18px 60px rgba(11, 18, 32, 0.14);

  --brand1: #0b0f16;
  --brand2: #111827;
  --gold: #caa44b;
  --gold2: #e0c36d;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at top, #ffffff 0%, var(--bg) 40%, var(--bg2) 100%);
  color: var(--text);
}

.container{
  width: min(1120px, 92%);
  margin: 0 auto;
}

.container.mini{
  width: min(1120px, 92%);
  padding: 18px 0;
}

/* HEADER */
header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:12px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color: var(--text);
  font-weight:900;
}

.logo-img{
  width:44px;
  height:44px;
  border-radius:14px;
  object-fit:cover;
  border:1px solid rgba(0,0,0,0.12);
  box-shadow:0 10px 20px rgba(0,0,0,0.10);
  background:#fff;
}

.menu{
  display:flex;
  gap:16px;
  align-items:center;
}

.menu a{
  color: var(--text);
  text-decoration:none;
  opacity:0.85;
  font-weight:800;
  padding:8px 10px;
  border-radius:12px;
  transition:0.2s ease;
}

.menu a:hover{
  opacity:1;
  background: rgba(0,0,0,0.05);
  box-shadow: 0 0 0 2px rgba(202,164,75,0.18) inset;
}

.actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.menu-btn{
  display:none;
  background: rgba(0,0,0,0.04);
  border:1px solid rgba(0,0,0,0.12);
  color: var(--text);
  font-size:18px;
  padding:10px 12px;
  border-radius:12px;
  cursor:pointer;
  transition:0.2s ease;
}

.menu-btn:hover{
  background: rgba(0,0,0,0.08);
  transform: translateY(-1px);
}

/* BOTÕES */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 16px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,0.12);
  color: var(--text);
  text-decoration:none;
  font-weight:900;
  transition:0.2s ease;
  background:#fff;
  cursor:pointer;
}

.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
}

.btn.primary{
  background: linear-gradient(120deg, var(--brand1), var(--brand2));
  color:#fff;
  border:none;
  position: relative;
  overflow: hidden;
}

.btn.primary::after{
  content:"";
  display:inline-block;
  width:8px;height:8px;
  border-radius:999px;
  margin-left:10px;
  background: var(--gold);
  opacity:0.95;
}

.btn.primary::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle, rgba(202,164,75,0.28), transparent 60%);
  transform: translateX(-40%);
  transition: 0.35s ease;
}

.btn.primary:hover::before{
  transform: translateX(20%);
}

/* HERO */
.hero{
  padding:48px 0 20px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap:18px;
  align-items:start;
}

.kicker{
  display:inline-block;
  margin-bottom:10px;
  font-weight:900;
  font-size:13px;
  letter-spacing:0.5px;
  color: rgba(202,164,75,0.95);
}

h1{
  font-size:42px;
  line-height:1.12;
  letter-spacing:-0.5px;
}

.sub{
  margin-top:12px;
  opacity:0.9;
  max-width:680px;
  line-height:1.65;
  color: var(--muted);
}

.cta{
  display:flex;
  gap:12px;
  margin-top:18px;
  flex-wrap:wrap;
}

/* SEÇÕES */
.section-title{
  margin:52px 0 18px;
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:14px;
}

.section-title h2{
  font-size:28px;
  letter-spacing:-0.3px;
}

.section-title p{ opacity:0.78; }

/* CARDS */
.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius:18px;
  padding:18px;
  box-shadow: var(--shadow);
}

.card.side{
  position: sticky;
  top: 100px;
  border: 1px solid rgba(202,164,75,0.18);
}

.card.side h3::after{
  content:"";
  display:block;
  width:52px;
  height:3px;
  border-radius:999px;
  margin-top:8px;
  background: linear-gradient(120deg, var(--gold), var(--gold2));
  opacity:0.95;
}

.bullets{
  margin-top:14px;
  display:grid;
  gap:12px;
}

.bullet{
  padding:12px;
  border-radius:16px;
  background: rgba(0,0,0,0.03);
  border:1px solid rgba(0,0,0,0.07);
}

/* GRID */
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

/* TAG DOURADA */
.tag{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  background: rgba(202,164,75,0.10);
  border:1px solid rgba(202,164,75,0.28);
  color: rgba(17,24,39,0.92);
}

/* ✅ BADGE DOURADO (novo) */
.badge-gold{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  color: rgba(17,24,39,0.95);
  background: linear-gradient(120deg, rgba(202,164,75,0.22), rgba(224,195,109,0.18));
  border: 1px solid rgba(202,164,75,0.35);
}

/* ✅ topo de cards com selo */
.service-head{
  display:flex;
  justify-content:flex-end;
  margin-bottom:8px;
}

.feature-top{
  display:flex;
  justify-content:flex-start;
  margin-bottom:10px;
}

.service{
  transition:0.22s ease;
}

.service:hover{
  transform: translateY(-3px);
  border-color: rgba(202,164,75,0.35);
  box-shadow: var(--shadow2);
}

/* GALERIA */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:10px;
  margin-top:10px;
}

.gallery-grid img{
  width:100%;
  height:170px;
  object-fit:cover;
  border-radius:18px;
  border:1px solid rgba(0,0,0,0.10);
  cursor:pointer;
  transition:0.2s ease;
  background:#fff;
}

.gallery-grid img:hover{
  transform: scale(1.02);
  border-color: rgba(202,164,75,0.45);
  box-shadow: 0 0 0 3px rgba(202,164,75,0.14);
}

/* CONTATO */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:12px;
}

.contact-text{
  opacity:0.88;
  line-height:1.6;
  margin:10px 0;
  color: var(--muted);
}

.contact-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}

.contact-hours{
  opacity:0.75;
  margin-top:14px;
  font-size:13px;
  color: var(--muted);
}

form{ margin-top:10px; }

form input, form textarea{
  width:100%;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,0.12);
  background:#fff;
  color: var(--text);
  outline:none;
  margin-bottom:10px;
  transition:0.18s ease;
}

form input:focus, form textarea:focus{
  border-color: rgba(202,164,75,0.70);
  box-shadow: 0 0 0 3px rgba(202,164,75,0.18);
}

form textarea{
  min-height:115px;
  resize:vertical;
}

/* FOOTER */
footer{
  margin-top:38px;
  border-top:1px solid rgba(0,0,0,0.08);
}

footer .mini{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  opacity:0.85;
  color: rgba(11,18,32,0.70);
}

/* REVEAL */
.reveal{
  opacity:0;
  transform: translateY(18px);
  transition:0.65s ease;
}

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

/* LIGHTBOX */
#lightbox{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,0.85);
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  z-index:9999;
}

#lightbox.active{ display:flex; }

#lightbox img{
  max-width:95%;
  max-height:90vh;
  border-radius:16px;
}

/* WhatsApp flutuante */
.whats-float-text{
  position:fixed;
  right:18px;
  bottom:18px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:18px;
  text-decoration:none;
  font-weight:900;
  background: linear-gradient(120deg, var(--brand1), var(--brand2));
  color:#fff;
  box-shadow: 0 18px 60px rgba(0,0,0,0.22);
  transition:0.2s ease;
  z-index:999;
  border: 1px solid rgba(202,164,75,0.28);
}

.whats-float-text:hover{
  transform: translateY(-2px) scale(1.02);
}

.zap-ico{
  width:40px;
  height:40px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(202,164,75,0.16);
}

.zap-ico svg{
  width:22px;
  height:22px;
  display:block;
  color: #ffffff;
}

.zap-text{
  font-size:14px;
  letter-spacing:0.2px;
}

/* RESPONSIVO */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .split{ grid-template-columns: 1fr; }
  h1{ font-size:34px; }

  .menu{
    display:none;
    position:absolute;
    top:76px;
    right:12px;
    background:#fff;
    border:1px solid rgba(0,0,0,0.12);
    border-radius:16px;
    padding:12px;
    width:220px;
    flex-direction:column;
    gap:10px;
    box-shadow: var(--shadow);
  }

  .menu.active{ display:flex; }
  .menu-btn{ display:inline-flex; }
  .card.side{ position:relative; top:unset; }
}

/* =========================
   TALIENG DOURADO (EFEITO)
   ========================= */
.brand-title{
  background: linear-gradient(120deg, #8d6a1f, #caa44b, #f1d98d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 1000;
  letter-spacing: 2px;
}

.brand-subtitle{
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* =========================
   MARCA D’ÁGUA (INTERMEDIÁRIA + ASSINATURA)
   ========================= */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  background-image: url("logo.png");
  background-repeat: no-repeat;
  background-position: center 62%;
  background-size: 520px;
  opacity: 0.085;
  pointer-events: none;
  z-index: -1;
  filter: grayscale(100%) sepia(48%) saturate(360%) hue-rotate(8deg);
}

@media (max-width: 980px){
  body::before{
    background-size: 300px;
    background-position: center 58%;
    opacity: 0.065;
  }
}

/* =========================
   WHATSAPP FLUTUANTE (PREMIUM)
   ========================= */
.whats-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: #0b1220;
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  border: 1px solid rgba(202,164,75,.35);
  box-shadow: 0 18px 55px rgba(0,0,0,.22);
  transition: .2s;
}

.whats-float:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
}

.whats-icon{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #8d6a1f, #caa44b, #f1d98a);
  color: #0b1220;
  font-size: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.whats-text{
  letter-spacing: .5px;
}

@media (max-width: 980px){
  .whats-text{ display:none; }
  .whats-float{
    padding: 10px;
    right: 14px;
    bottom: 14px;
  }
  .whats-icon{
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}
