/* ==========================================================
   TETTI GRÁFICA — Landing Page (Google Ads)
   ========================================================== */

/* Paleta oficial — Manual de Identidade Visual Tetti Gráfica (CMYK/RGB/Hex extraídos do manual) */
@font-face{
  font-family: 'Artegra Sans';
  src: url('../fonts/ArtegraSans-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root{
  --blue: #3D6898;
  --blue-dark: #2A4A70;
  --purple: #803C9D;
  --purple-light: #9C57E9;
  --teal: #4FB3C1;
  --lime: #96C620;
  --lime-light: #BBDA6E;

  --ink: #1C1F2A;
  --ink-soft: #4A4F5E;
  --bg: #FFFFFF;
  --bg-soft: #F6F7FB;
  --border: #E7E8F0;

  --gradient-brand: linear-gradient(120deg, var(--purple) 0%, var(--blue) 45%, var(--teal) 100%);
  --gradient-dark: linear-gradient(135deg, #2A1B45 0%, #3B2064 35%, var(--purple) 65%, var(--blue) 100%);
  --gradient-cta: linear-gradient(120deg, var(--purple) 0%, var(--blue) 100%);

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(28,31,42,.06);
  --shadow-md: 0 12px 30px rgba(45,30,80,.12);
  --shadow-lg: 0 20px 50px rgba(45,30,80,.18);

  /* Título = Artegra Sans Black (manual) — fonte própria embutida via @font-face acima */
  --font-head: 'Artegra Sans', 'Poppins', 'Segoe UI', sans-serif;
  /* Sub-título = Lato Bold (manual) */
  --font-sub: 'Lato', 'Segoe UI', sans-serif;
  /* Texto = Source Sans Pro (manual) */
  --font-body: 'Source Sans Pro', 'Segoe UI', sans-serif;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ display:block; max-width:100%; height:auto; }
a{ color:inherit; text-decoration:none; }
ul, ol{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{ font-family: var(--font-head); font-weight:900; color: var(--ink); line-height:1.15; margin:0 0 .5em; }
p{ margin:0 0 1em; }
.container{
  width:100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); filter: brightness(1.05); }
.btn:active{ transform: translateY(0); }
.btn-lg{ padding: 17px 36px; font-size: 16.5px; }
.btn-block{ width:100%; }

.btn-cta{
  background: var(--gradient-cta);
  color:#fff;
  box-shadow: 0 10px 24px rgba(61,104,155,.35);
}
.btn-primary{
  background: var(--purple);
  color:#fff;
}
.btn-header{ padding: 12px 22px; font-size: 14.5px; box-shadow: 0 6px 16px rgba(100,52,138,.28);}
.btn-urgent{
  background: linear-gradient(120deg, var(--lime) 0%, var(--lime-light) 100%);
  color: #23330a;
  box-shadow: 0 10px 26px rgba(149,193,36,.4);
}
.btn-whatsapp{
  background: #25D366;
  color:#fff;
  box-shadow: 0 10px 24px rgba(37,211,102,.35);
}

/* ---------- Eyebrow / section heads ---------- */
.eyebrow{
  font-family: var(--font-sub);
  font-weight:700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: .6em;
}
.eyebrow-light{ color: var(--lime-light); }
.section-head{ max-width: 680px; margin: 0 auto 48px; text-align:center; }
.section-head h2{ font-size: clamp(26px,3.4vw,38px); }
.section-head p{ color: var(--ink-soft); font-size: 17px; }
.section-head-light{ max-width: 720px; margin: 0 auto 48px; text-align:center; }
.section-head-light h2{ color:#fff; font-size: clamp(26px,3.4vw,38px); }
.section-head-light p{ color: rgba(255,255,255,.82); font-size: 17px; }

.section{ padding: 88px 0; }
@media (max-width: 700px){ .section{ padding: 60px 0; } }

/* ==========================================================
   HEADER
   ========================================================== */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 10px 24px;
}
.logo-link{ display:flex; align-items:center; }
.logo-img{ height: 78px; width:auto; }
.header-actions{ display:flex; align-items:center; gap: 20px; }
.header-phone{
  display:flex; align-items:center; gap:8px;
  font-weight:600; font-size:14.5px; color: var(--blue-dark);
}
.header-phone svg{ color: var(--purple); }
@media (max-width: 640px){
  .logo-img{ height: 56px; }
  .header-phone span{ display:none; }
  .header-inner{ padding: 8px 16px; }
  .btn-header{ padding: 11px 16px; font-size: 13.5px; }
}

/* ==========================================================
   HERO
   ========================================================== */
.hero{ position: relative; overflow: hidden; padding: 72px 0 90px; }
.hero-bg{
  position:absolute; inset:0; z-index:-1;
  background:
    radial-gradient(1100px 620px at 82% -10%, rgba(78,188,201,.20), transparent 60%),
    radial-gradient(900px 560px at -10% 100%, rgba(100,52,138,.16), transparent 55%),
    linear-gradient(180deg, #FCFBFF 0%, #FFFFFF 60%);
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items:center;
}
.hero h1{ font-size: clamp(32px, 4.4vw, 52px); letter-spacing:-.01em; }
.hero h1 .highlight{
  background: var(--gradient-brand);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero-sub{ font-family: var(--font-sub); font-weight:700; font-size: 18px; color: var(--ink-soft); max-width: 560px; }

.hero-highlights{
  display:flex; flex-wrap:wrap; gap: 10px 14px;
  margin: 22px 0 30px;
}
.hero-highlights li{
  display:flex; align-items:center; gap:8px;
  background:#fff; border:1px solid var(--border);
  padding: 9px 16px; border-radius: 100px;
  font-size: 14px; font-weight:600; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.hero-highlights .ico{ font-size:15px; }

.hero-note{
  margin-top: 26px; padding: 14px 18px;
  background: var(--bg-soft); border-left: 3px solid var(--teal);
  border-radius: var(--radius-sm); font-size: 14.5px; color: var(--ink-soft);
  max-width: 560px;
}

/* Hero visual — CSS mockup composition */
.hero-visual{
  position: relative; height: 460px;
  display:flex; align-items:center; justify-content:center;
}
.mock-glow{
  position:absolute; width: 380px; height: 380px; border-radius:50%;
  background: var(--gradient-brand); opacity:.18; filter: blur(60px);
}
.mock-card{
  position:absolute;
  width: 168px; height: 168px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px;
  border: 1px solid rgba(255,255,255,.6);
}
.mock-badge{
  width: 48px; height: 48px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background: var(--gradient-brand);
  box-shadow: 0 6px 14px rgba(100,52,138,.35);
}
.mock-badge svg{ width: 24px; height: 24px; }
.mock-label{ font-family: var(--font-head); font-weight:700; font-size:15px; color: var(--ink); }

.mock-1{ top: 4%; left: 4%; transform: rotate(-9deg); background: linear-gradient(150deg,#fff,#F1E9FA); z-index:3; }
.mock-2{ top: 0%; right: 2%; transform: rotate(7deg); width:148px; height:148px; background: linear-gradient(150deg,#fff,#E7F6F8); z-index:2; }
.mock-3{ bottom: 14%; left: -2%; transform: rotate(6deg); width:136px; height:136px; background: linear-gradient(150deg,#fff,#F4F8E4); z-index:2; }
.mock-4{ bottom: 2%; right: 6%; transform: rotate(-6deg); width:150px; height:150px; background: linear-gradient(150deg,#fff,#EAF1FA); z-index:3; }
.mock-5{ top: 36%; left: 32%; transform: rotate(-2deg); width:146px; height:146px; background: linear-gradient(150deg,#fff,#F7EEF6); z-index:4; box-shadow: var(--shadow-lg), 0 0 0 8px #fff; }
.mock-6{ top: -6%; left: 36%; transform: rotate(5deg); width:116px; height:116px; background: linear-gradient(150deg,#fff,#FBEFF3); z-index:1; }
.mock-6 .mock-badge{ width:38px; height:38px; }
.mock-6 .mock-badge svg{ width:19px; height:19px; }
.mock-6 .mock-label{ font-size:12.5px; }

@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-visual{ height: 380px; order:-1; }
  .mock-card{ width:126px; height:126px; }
  .mock-1,.mock-4{ width:116px; height:116px; }
  .mock-6{ width:96px; height:96px; top:-4%; left:38%; }
}
@media (max-width: 520px){
  .hero-visual{ height: 320px; }
  .mock-card{ width:100px; height:100px; border-radius:16px; }
  .mock-badge{ width:38px; height:38px; }
  .mock-badge svg{ width:19px; height:19px; }
  .mock-label{ font-size:12px; }
  .mock-1,.mock-4{ width:92px; height:92px; }
  .mock-6{ width:78px; height:78px; top:-3%; left:40%; }
  .mock-6 .mock-badge{ width:30px; height:30px; }
  .mock-6 .mock-badge svg{ width:15px; height:15px; }
  .mock-6 .mock-label{ font-size:10px; }
}

/* ==========================================================
   TRUST BAR
   ========================================================== */
.trustbar{
  background: var(--gradient-dark);
  padding: 26px 0;
}
.trustbar-inner{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:16px;
}
.trustbar-lead{ color:#fff; font-weight:600; font-size:15.5px; margin:0; max-width:360px; }
.trustbar-list{ display:flex; flex-wrap:wrap; gap: 10px 26px; }
.trustbar-list li{ color: rgba(255,255,255,.88); font-size: 14.5px; }
.trustbar-list li strong{ color: var(--lime-light); }
@media (max-width: 760px){ .trustbar-inner{ flex-direction:column; align-items:flex-start; } }

/* ==========================================================
   PRODUCTS
   ========================================================== */
.product-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.product-card{
  background:#fff; border:1px solid var(--border); border-radius: var(--radius);
  overflow:hidden; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  display:flex; flex-direction:column;
}
.product-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-img{ aspect-ratio: 3/2; overflow:hidden; background: var(--bg-soft); }
.product-img img{ width:100%; height:100%; object-fit:cover; }
.product-body{ padding: 22px 22px 26px; display:flex; flex-direction:column; flex:1; }
.product-body h3{ font-size:20px; margin-bottom:.4em; }
.product-body p{ color: var(--ink-soft); font-size: 14.5px; flex:1; }
.product-cta{
  font-weight:700; font-size:14.5px; color: var(--purple);
  margin-top: 6px; display:inline-block;
}
.product-cta:hover{ color: var(--blue); }
.product-footnote{
  margin-top: 12px; padding-top:12px; border-top:1px dashed var(--border);
  font-size: 12.5px; color: #8B90A0; flex:none;
}

.product-card-cta{
  background: var(--gradient-cta);
  align-items:center; justify-content:center; text-align:center;
  padding: 30px;
}
.product-cta-box h3{ color:#fff; font-size:22px; }
.product-cta-box p{ color: rgba(255,255,255,.85); font-size:14.5px; }
.product-cta-box .btn{ margin-top:10px; }

@media (max-width: 900px){ .product-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .product-grid{ grid-template-columns: 1fr; } }

/* ==========================================================
   DIFERENCIAL
   ========================================================== */
.diferencial{ position:relative; color:#fff; overflow:hidden; }
.diferencial-bg{
  position:absolute; inset:0; z-index:-1;
  background: var(--gradient-dark);
}
.diferencial-bg::after{
  content:""; position:absolute; inset:0;
  background: radial-gradient(700px 400px at 90% 10%, rgba(78,188,201,.28), transparent 60%),
              radial-gradient(600px 400px at 5% 95%, rgba(149,193,36,.18), transparent 60%);
}
.diferencial-grid{
  display:grid; grid-template-columns: repeat(4,1fr); gap: 26px; margin-bottom: 44px;
}
.dif-item{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 26px 22px;
  backdrop-filter: blur(4px);
}
.dif-num{ font-family: var(--font-head); font-weight:800; font-size:28px; color: var(--lime-light); }
.dif-item h3{ color:#fff; font-size:17px; margin: 10px 0 8px; }
.dif-item p{ color: rgba(255,255,255,.78); font-size: 14px; margin:0; }
.center-cta{ text-align:center; }

@media (max-width: 900px){ .diferencial-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .diferencial-grid{ grid-template-columns: 1fr; } }

/* ==========================================================
   URGÊNCIA
   ========================================================== */
.urgencia{
  position:relative;
  background:
    linear-gradient(120deg, rgba(28,20,48,.92), rgba(45,30,80,.88)),
    url('../img/stock/maquina-tetti.jpg') center 30%/cover no-repeat;
  color:#fff;
}
.urgencia-inner{ display:flex; justify-content:center; }
.urgencia-copy{ max-width: 640px; text-align:center; }
.urgencia h2{ color:#fff; font-size: clamp(26px,3.6vw,36px); }
.urgencia-list{
  display:flex; flex-wrap:wrap; justify-content:center; gap: 10px; margin: 22px 0;
}
.urgencia-list li{
  background: rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.18);
  padding: 8px 16px; border-radius:100px; font-size:14px; font-weight:600;
}
.urgencia-text{ color: rgba(255,255,255,.85); font-size:16px; }
.urgencia .btn{ margin-top: 14px; }

/* ==========================================================
   COMO FUNCIONA
   ========================================================== */
.steps{
  display:grid; grid-template-columns: repeat(5,1fr); gap: 20px; counter-reset: step;
}
.step{
  text-align:center; padding: 26px 16px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--bg-soft);
  position:relative;
}
.step-num{
  display:inline-flex; align-items:center; justify-content:center;
  width:44px; height:44px; border-radius:50%;
  background: var(--gradient-cta); color:#fff;
  font-family: var(--font-head); font-weight:700; font-size:15px;
  margin-bottom: 14px;
}
.step h3{ font-size:15.5px; margin-bottom:6px; }
.step p{ font-size:13px; color: var(--ink-soft); margin:0; }

@media (max-width: 980px){ .steps{ grid-template-columns: repeat(3,1fr); } }
@media (max-width: 620px){
  .steps{ grid-template-columns: 1fr; gap: 12px; }
  .step{
    display:flex; align-items:center; gap:16px;
    text-align:left; padding: 16px 18px;
  }
  .step-num{ margin-bottom:0; flex-shrink:0; }
  .step h3{ margin-bottom:3px; }
}

/* ==========================================================
   ARTE
   ========================================================== */
.arte-inner{
  display:grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items:center;
}
.arte-img{ border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-md); }
.arte-img img{ width:100%; height:100%; object-fit:cover; aspect-ratio: 3/4; }
.arte-copy h2{ font-size: clamp(24px,3.2vw,32px); }
.arte-copy p{ color: var(--ink-soft); font-size:16.5px; }
.callout{
  background: linear-gradient(120deg, #FBF4FF, #F1F8FA);
  border: 1px solid #E8DBF3;
  border-left: 4px solid var(--purple);
  border-radius: var(--radius-sm);
  padding: 16px 20px; font-size: 14.5px; color: var(--ink);
}
@media (max-width: 860px){ .arte-inner{ grid-template-columns: 1fr; } }

/* ==========================================================
   DEPOIMENTOS
   ========================================================== */
.depo-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.depo-card{
  margin:0; background:#fff; border:1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm);
}
.stars{ color: var(--lime); letter-spacing:2px; margin-bottom: 12px; font-size:15px; }
.depo-card p{ font-size: 15.5px; color: var(--ink); font-style: italic; }
.depo-card footer{ display:flex; flex-direction:column; margin-top:14px; }
.depo-card footer strong{ font-size:14.5px; }
.depo-card footer span{ font-size:13px; color: var(--ink-soft); }
@media (max-width: 860px){ .depo-grid{ grid-template-columns: 1fr; } }

/* ==========================================================
   ORÇAMENTO / FORM
   ========================================================== */
.orcamento{ position:relative; color:#fff; overflow:hidden; }
.orcamento-bg{
  position:absolute; inset:0; z-index:-1;
  background: var(--gradient-dark);
}
.orcamento-bg::after{
  content:""; position:absolute; inset:0;
  background: radial-gradient(800px 500px at 100% 0%, rgba(78,188,201,.22), transparent 60%);
}
.orcamento-inner{
  display:grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: start;
}
.orcamento h2{ color:#fff; font-size: clamp(26px,3.4vw,36px); }
.orcamento-copy p{ color: rgba(255,255,255,.85); font-size:16px; }
.orcamento-price{ font-size:17px; }
.orcamento-price strong{ color: var(--lime-light); font-size:20px; }
.orcamento-bullets{ margin-top:20px; display:flex; flex-direction:column; gap:10px; }
.orcamento-bullets li{ color: rgba(255,255,255,.9); font-size:14.5px; }

.orcamento-form{
  background:#fff; border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow-lg); color: var(--ink);
}
.form-row{ margin-bottom: 18px; }
.form-row-split{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label, .form-label{
  display:block; font-weight:600; font-size:13.5px; margin-bottom:7px; color: var(--ink);
}
input[type="text"], input[type="tel"], input[type="email"], select, textarea{
  width:100%; padding: 12px 14px; border:1px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size:14.5px; color: var(--ink); background: var(--bg-soft);
}
input:focus, select:focus, textarea:focus{ outline: 2px solid var(--teal); outline-offset:1px; background:#fff; }
textarea{ resize: vertical; }

.checkbox-group, .radio-group{ display:flex; flex-wrap:wrap; gap:8px; }
.chk{
  display:flex; align-items:center; gap:6px;
  border:1px solid var(--border); border-radius:100px; padding:8px 14px;
  font-size:13.5px; font-weight:500; cursor:pointer; background: var(--bg-soft);
  margin-bottom:0 !important;
}
.chk input{ accent-color: var(--purple); width:14px; height:14px; }
.form-privacy{ font-size:12px; color:#9096A5; text-align:center; margin: 12px 0 0; }

@media (max-width: 900px){ .orcamento-inner{ grid-template-columns: 1fr; } }
@media (max-width: 560px){ .form-row-split{ grid-template-columns: 1fr; } .orcamento-form{ padding:22px; } }

/* ==========================================================
   CTA FINAL
   ========================================================== */
.cta-final{
  background: linear-gradient(135deg, #1C1433 0%, var(--purple) 55%, var(--blue) 100%);
  padding: 78px 0; text-align:center; color:#fff;
}
.cta-final-logo{ width: 190px; margin: 0 auto 22px; }
.cta-final h2{ color:#fff; font-size: clamp(26px,3.6vw,38px); max-width:680px; margin-inline:auto; }
.cta-final p{ color: rgba(255,255,255,.82); font-size:16.5px; max-width:560px; margin-inline:auto; }
.cta-final-tags{ font-weight:600; color: var(--lime-light); letter-spacing:.02em; }
.cta-final .btn{ margin-top: 10px; }
.cta-final-phone{
  display:block; margin-top:18px; font-weight:700; font-size:16px; color:#fff; opacity:.9;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer{ background: #14101F; color: rgba(255,255,255,.6); padding: 40px 0; text-align:center; }
.footer-logo{ width: 150px; margin: 0 auto 16px; opacity:.9; }
.footer-inner p{ font-size:13px; margin: 4px 0; }
.footer-phone{ color: rgba(255,255,255,.8); font-weight:600; }

/* ==========================================================
   WHATSAPP FLOAT
   ========================================================== */
.whatsapp-float{
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 26px rgba(37,211,102,.45);
  animation: wa-pulse 2.4s infinite;
  opacity: 1; transform: scale(1);
  transition: opacity .25s ease, transform .25s ease;
}
.whatsapp-float:hover{ transform: scale(1.06); }
/* Escondido quando um CTA/formulário com a mesma função já está visível na tela — evita sobrepor texto, cards e campos */
.whatsapp-float.is-hidden{
  opacity: 0; transform: scale(.7);
  pointer-events: none; animation: none;
}
@keyframes wa-pulse{
  0%{ box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  70%{ box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
  100%{ box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 600px){
  .whatsapp-float{ width:50px; height:50px; right:14px; bottom:14px; }
}

/* ==========================================================
   MISC
   ========================================================== */
::selection{ background: var(--teal); color:#fff; }
