:root{
  --white:#FFFFFF;
  --dark:#1C1C1C;
  --accent:#863a18;
  --text:#0F0F0F;
  --muted:#B5B5B5;
  --section:#F5F5F5;

  --radius:16px;
  --radius-sm:12px;
  --shadow: 0 14px 40px rgba(15,15,15,.12);
  --shadow-soft: 0 10px 30px rgba(15,15,15,.08);
  --ring: 0 0 0 4px rgba(134,58,24,.18);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Arial, sans-serif;
  color:var(--text);
  background:var(--white);
}

.container{max-width:1160px;margin:0 auto;padding:0 20px}
.section{padding:72px 0}
.section-muted{background:var(--section)}
.section-head{max-width:720px;margin:0 0 28px}
.section-head h2{margin:0 0 10px;font-size:32px;letter-spacing:-.02em}
.section-head p{margin:0;color:#3b3b3b;line-height:1.6}

/* =========================
   TOPBAR / BRAND (FIX LOGO)
   ========================= */
.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(28,28,28,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.10);
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;

  /* IMPORTANT: prevents logo or text from "pushing" layout */
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0; /* allows text to truncate if needed */
}

/* This is the KEY: it locks the logo size */
.brand-logo{
  height:38px;      /* desktop height */
  width:auto;
  max-width:200px;  /* prevents huge logos */
  object-fit:contain;
  display:block;
}

/* Optional: if logo has huge empty whitespace, this helps visually */
.brand-text{
  min-width:0;
}
.brand-text strong{ color: #FFFFFF; }
  display:block;
  font-size:14px;
  line-height:1.1;
}
.brand-text span{ color: rgba(255,255,255,.70); }
  display:block;
  font-size:12px;
  color:#FFFFFF;
  line-height:1.2;
}

/* If you still want the tiny accent mark elsewhere, keep it.
   (No longer used in HTML, but safe to keep.) */
.brand-mark{
  width:14px;height:14px;border-radius:4px;background:var(--accent);
  box-shadow: 0 10px 20px rgba(134,58,24,.25);
}

.topbar-actions{
  display:flex;
  align-items:center;
  gap:14px;
  flex-shrink:0; /* stops actions from shrinking weirdly */
}

.link-muted{color:rgba(255,255,255,.82);text-decoration:none;font-size:14px}
.link-muted:hover{color: #FFFFFF; }
.btn-outline{
  border:1px solid rgba(255,255,255,.22);
  padding:10px 14px;border-radius:12px;
  color:#FFFFFF;text-decoration:none;font-size:14px;
}
.btn-outline:hover{border-color:rgba(15,15,15,.28)}

/* Buttons */
.btn-primary{
  background:var(--accent);
  color:#FFFFFF;
  text-decoration:none;
  border:none;
  border-radius:14px;
  padding:14px 18px;
  font-weight:700;
  letter-spacing:.01em;
  cursor:pointer;
  box-shadow: 0 12px 26px rgba(134,58,24,.26);
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
.btn-primary:hover{filter:brightness(1.03); transform: translateY(-1px)}
.btn-primary:active{transform: translateY(0); box-shadow: 0 10px 20px rgba(134,58,24,.22)}
.btn-ghost{
  background:transparent;
  color:#FFFFFF;
  border:1px solid rgba(255,255,255,.22);
  padding:14px 18px;border-radius:14px;
  text-decoration:none;font-weight:700;
}
.btn-ghost:hover{border-color:rgba(255,255,255,.35)}
.btn-block{width:100%}

/* Hero */
.hero{
  background: radial-gradient(1200px 600px at 20% 0%, rgba(134,58,24,.18), transparent 60%),
              radial-gradient(1000px 500px at 80% 20%, rgba(255,255,255,.08), transparent 65%),
              var(--dark);
  color:var(--white);
  padding:64px 0;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:28px;
  align-items:center;
}
.pill{
  display:inline-flex;align-items:center;gap:10px;
  padding:10px 12px;border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  margin-bottom:18px;
}
.pill-dot{width:8px;height:8px;border-radius:99px;background:var(--accent)}
.hero h1{margin:0 0 12px;font-size:44px;letter-spacing:-.03em;line-height:1.05}
.subhead{margin:0 0 22px;color:rgba(255,255,255,.78);line-height:1.7;max-width:560px}
.hero-ctas{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:22px}

.trust-row{
  display:flex; gap:18px; flex-wrap:wrap;
  padding-top:10px;
}
.trust-item{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  padding:12px 14px;
  min-width:150px;
}
.trust-kpi{display:block;font-weight:800}
.trust-label{display:block;color:rgba(255,255,255,.75);font-size:12px;margin-top:2px}

/* Media frame */
.hero-media{display:flex;flex-direction:column;gap:10px}
.media-frame{
  background:#101010;
  border-radius: var(--radius);
  padding:14px;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.08);
}
.media-frame video{
  display:block;
  width:100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background:#0b0b0b;
}
.media-caption{
  display:flex;align-items:center;gap:10px;
  color:rgba(255,255,255,.72);
  font-size:13px;
}
.media-caption .dot{width:8px;height:8px;border-radius:99px;background:rgba(255,255,255,.28)}

/* Carousel */
.carousel{
  position:relative;
  display:grid;
  grid-template-columns: 44px 1fr 44px;
  gap:10px;
  align-items:center;
}
.car-btn{
  width:44px;height:44px;border-radius:14px;
  border:1px solid rgba(15,15,15,.12);
  background:var(--white);
  cursor:pointer;
  box-shadow: var(--shadow-soft);
}
.car-btn:hover{border-color:rgba(15,15,15,.22)}
.car-btn span{font-size:22px;line-height:1}

.carousel-track{
  display:flex; gap:16px;
  overflow:auto; scroll-snap-type:x mandatory;
  padding:6px 2px 10px;
}
.carousel-track::-webkit-scrollbar{height:10px}
.carousel-track::-webkit-scrollbar-thumb{
  background:rgba(15,15,15,.18); border-radius:999px;
}
.service-card{
  min-width: 320px;
  background:var(--white);
  border:1px solid rgba(15,15,15,.08);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  scroll-snap-align:start;
}
.service-image{
  width:100%;
  height:190px;
  object-fit:cover;
  display:block;
  background:#ececec;
}
.service-body{padding:16px 16px 18px}
.service-body h3{margin:0 0 8px;font-size:18px}
.service-body p{margin:0 0 12px;color:#3b3b3b;line-height:1.6}
.service-link{color:var(--accent);text-decoration:none;font-weight:700}
.service-link:hover{text-decoration:underline}

/* Authority */
.authority-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.authority-card{
  background:var(--white);
  border:1px solid rgba(15,15,15,.08);
  border-radius: var(--radius);
  padding:18px;
  display:flex; gap:12px;
  box-shadow: var(--shadow-soft);
}
.authority-card h3{margin:0 0 6px;font-size:16px}
.authority-card p{margin:0;color:#3b3b3b;line-height:1.6;font-size:14px}
.icon{
  width:42px;height:42px;border-radius:14px;
  background:rgba(134,58,24,.10);
  display:grid;place-items:center;
  border:1px solid rgba(134,58,24,.18);
}
.icon svg{width:22px;height:22px;fill:var(--accent)}

/* Form */
.form-shell{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:16px;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(15,15,15,.10);
  box-shadow: var(--shadow);
}
.form-side{
  background: linear-gradient(180deg, #ffffff, #f7f7f7);
  padding:26px;
}
.form-side h3{margin:0 0 10px;font-size:20px}
.form-bullets{margin:0;padding-left:18px;color:#3b3b3b;line-height:1.9}
.mini-proof{margin-top:18px;display:grid;gap:10px}
.mini-proof-box{
  border-radius: 14px;
  background: rgba(15,15,15,.04);
  border:1px solid rgba(15,15,15,.06);
  padding:12px 12px;
}
.mini-title{display:block;font-weight:800;font-size:12px;color:#222}
.mini-sub{display:block;font-size:12px;color:#555;margin-top:3px}

.lead-form{
  background:var(--white);
  padding:26px;
}
.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.field{display:flex;flex-direction:column;gap:6px}
label{font-size:12px;color:#3b3b3b;font-weight:700}
input, select{
  width:100%;
  border-radius: 14px;
  border:1px solid rgba(15,15,15,.14);
  padding:12px 12px;
  font-size:14px;
  outline:none;
  background:var(--white);
  transition: box-shadow .12s ease, border-color .12s ease;
}
input:focus, select:focus{
  border-color: rgba(134,58,24,.45);
  box-shadow: var(--ring);
}
.error{min-height:16px;color:#b10000;font-size:12px}
.is-invalid{
  border-color: rgba(177,0,0,.55) !important;
  box-shadow: 0 0 0 4px rgba(177,0,0,.12) !important;
}
.btn-block{margin-top:8px}
.form-note{
  margin:10px 0 0;
  font-size:12px;
  color:#666;
  line-height:1.6;
}
.form-result{
  margin-top:10px;
  font-size:13px;
  color:#1f1f1f;
}

/* Final CTA */
.final{
  background: var(--dark);
  color: var(--white);
  padding:56px 0;
}
.final-inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;flex-wrap:wrap;
}
.final h2{margin:0 0 8px;font-size:32px;letter-spacing:-.02em}
.final p{margin:0;color:rgba(255,255,255,.75);line-height:1.7;max-width:520px}

.whatsapp-button{
  background: var(--accent);
  color: var(--white);
  text-decoration:none;
  padding:14px 18px;
  border-radius:14px;
  font-weight:800;
  box-shadow: 0 12px 26px rgba(134,58,24,.26);
}

.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:86px;
  z-index:60;
  background:var(--accent);
  color:var(--white);
  text-decoration:none;
  padding:12px 14px;
  border-radius:999px;
  font-weight:800;
  box-shadow: 0 14px 30px rgba(134,58,24,.26);
}

/* IMPORTANT: always disabled (you asked to remove it) */
.mobile-sticky{
  display:none !important;
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr;gap:18px}
  .authority-grid{grid-template-columns: 1fr}
  .form-shell{grid-template-columns: 1fr}
  .grid{grid-template-columns: 1fr}
  .whatsapp-float{bottom:26px} /* closer since sticky CTA is removed */
  .topbar-actions{display:none}

  .brand-logo{
    height:30px;     /* mobile height */
    max-width:150px;
  }
}

@media (max-width: 520px){
  .hero h1{font-size:36px}
  .section{padding:58px 0}
  .carousel{grid-template-columns: 1fr}
  .car-btn{display:none}
  .service-card{min-width: 82%}
}
