/* ===== FenixResolve — Design System ===== */
:root {
  --navy-deep: #0b1220;
  --navy: #131c2e;
  --petrol: #1e3a5f;
  --petrol-2: #2c4a73;
  --orange: #d85a30;
  --orange-2: #b8471f;
  --amber: #ef9f27;
  --amber-2: #f2a93b;
  --off: #f4f4f2;
  --off-2: #eef1ee;
  --ink: #1a2130;
  --ink-soft: #52596b;
  --line: #e2e4e0;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebc59;

  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 16px 40px -14px rgba(11, 18, 32, 0.35);
  --shadow-sm: 0 6px 18px -8px rgba(11, 18, 32, 0.25);
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--off);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 90px 0; position: relative; }
@media (max-width: 640px) { section { padding: 60px 0; } }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; color: var(--navy); line-height: 1.18; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--amber); border-radius: 2px; }
.eyebrow.light { color: var(--amber-2); }
.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--ink-soft); margin-top: 14px; font-size: 1.05rem; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 100px; font-weight: 700; font-size: 0.96rem;
  border: none; cursor: pointer; transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
  color: #fff; box-shadow: 0 10px 26px -8px rgba(37, 211, 102, 0.55);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -8px rgba(37, 211, 102, 0.65); }
.btn-ghost-light {
  background: rgba(255,255,255,0.08); color: #fff; border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--navy); border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 10px 0; transition: all 0.3s ease; background: transparent;
}
.site-header.scrolled {
  background: rgba(11, 18, 32, 0.92); backdrop-filter: blur(10px);
  box-shadow: 0 2px 24px -8px rgba(0,0,0,0.25); padding: 6px 0;
}
.site-header.scrolled .brand img { width: 58px; height: 58px; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: #fff; }
.brand img { width: 80px; height: 80px; object-fit: contain; transition: width 0.3s ease, height 0.3s ease; }
.nav-desktop { display: flex; align-items: center; gap: 32px; }
.nav-desktop a { font-weight: 600; font-size: 0.92rem; color: rgba(255,255,255,0.88); position: relative; }
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--amber); transition: width 0.25s ease;
}
.nav-desktop a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; width: 26px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 100%; height: 2.5px; background: #fff; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
  background: var(--navy-deep); z-index: 600; padding: 100px 32px 40px;
  transform: translateX(100%); transition: transform 0.35s ease; box-shadow: -12px 0 40px rgba(0,0,0,0.3);
}
.nav-mobile.is-open { transform: translateX(0); }
.nav-mobile ul { display: flex; flex-direction: column; gap: 26px; }
.nav-mobile a { font-family: var(--font-head); font-size: 1.25rem; color: #fff; font-weight: 600; }
.nav-close { position: absolute; top: 24px; right: 24px; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: #fff; }
.overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 550; opacity: 0; transition: opacity 0.3s ease;
}
.overlay.is-open { display: block; opacity: 1; }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .nav-mobile { display: block; }
  .header-actions .btn-text-label { display: none; }
}
@media (max-width: 480px) {
  .brand img { width: 54px; height: 54px; }
  .site-header.scrolled .brand img { width: 44px; height: 44px; }
  .brand { font-size: 0.98rem; gap: 8px; }
  .site-header { padding: 8px 0; }
  .header-actions { gap: 10px; }
  .btn-whatsapp { padding: 12px 16px; }
}

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s cubic-bezier(.2,.8,.2,1), transform 0.75s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0) translateX(0) scale(1); }
.reveal-left { opacity: 0; transform: translateX(-60px) rotate(-2deg); transition: opacity 0.8s cubic-bezier(.2,.8,.2,1), transform 0.8s cubic-bezier(.2,.8,.2,1); }
.reveal-left.is-visible { opacity: 1; transform: translateX(0) rotate(0); }
.reveal-right { opacity: 0; transform: translateX(60px) rotate(2deg); transition: opacity 0.8s cubic-bezier(.2,.8,.2,1), transform 0.8s cubic-bezier(.2,.8,.2,1); }
.reveal-right.is-visible { opacity: 1; transform: translateX(0) rotate(0); }
.reveal-scale { opacity: 0; transform: scale(0.85) translateY(20px); transition: opacity 0.7s cubic-bezier(.2,.8,.2,1), transform 0.7s cubic-bezier(.2,.8,.2,1); }
.reveal-scale.is-visible { opacity: 1; transform: scale(1) translateY(0); }

.parallax-slow { will-change: transform; }

/* ===== Hero ===== */
.hero {
  padding: 150px 0 100px;
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(239,159,39,0.16), transparent 60%),
    radial-gradient(1000px 600px at 10% 90%, rgba(44,74,115,0.5), transparent 55%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 45%, var(--petrol) 100%);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: 0.12; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(700px 500px at 75% 20%, black, transparent 70%);
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 40px; }
.hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.3rem); color: #fff; margin-bottom: 18px; }
.hero p.lead { font-size: 1.1rem; color: rgba(255,255,255,0.82); max-width: 520px; margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 30px; }
.hero-areas { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-areas span {
  font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 14px; border-radius: 100px;
}

.hero-media { position: relative; display: flex; justify-content: center; align-items: flex-end; min-height: 520px; }
.hero-media .glow {
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(239,159,39,0.35), transparent 70%);
  filter: blur(10px);
}
.hero-media img.portrait { position: relative; z-index: 2; width: 380px; max-width: 92%; filter: drop-shadow(0 24px 34px rgba(0,0,0,0.45)); }
.hero-badge {
  position: absolute; z-index: 3; top: 8px; right: -10px;
  width: 190px; aspect-ratio: 1; border-radius: 50%;
  background: linear-gradient(150deg, var(--amber-2), var(--amber) 60%, var(--orange) 130%);
  display: flex; align-items: center; justify-content: center; text-align: center;
  box-shadow: 0 18px 34px -10px rgba(216,90,48,0.55);
  transform: rotate(-8deg);
}
.hero-badge .inner { padding: 20px; }
.hero-badge .tag { display: block; font-family: var(--font-head); font-weight: 800; font-size: 0.98rem; color: var(--navy-deep); line-height: 1.25; text-transform: uppercase; letter-spacing: 0.02em; }
.hero-badge .sub { display: block; margin-top: 6px; font-size: 0.76rem; font-weight: 600; color: rgba(11,18,32,0.8); line-height: 1.3; }
.hero-badge .sub b { color: var(--navy-deep); }

@media (max-width: 900px) {
  .hero { padding-top: 120px; }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-areas { justify-content: center; }
  .hero-media { min-height: 400px; margin-top: 10px; }
  .hero-media img.portrait { width: 280px; }
  .hero-badge { width: 150px; top: -10px; right: 0; }
  .hero-badge .tag { font-size: 0.82rem; }
  .hero-badge .sub { font-size: 0.66rem; }
}

/* ===== Section dividers (wave) ===== */
.divider { display: block; width: 100%; line-height: 0; }
.divider svg { width: 100%; height: 60px; display: block; }

/* ===== Serviços ===== */
.services { background: var(--off); position: relative; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0; overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.service-card .photo { height: 140px; }
.service-card .photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-card .body { padding: 0 24px 28px; }
.service-card .icon-wrap {
  width: 54px; height: 54px; border-radius: 15px;
  background: linear-gradient(135deg, var(--petrol-2), var(--petrol));
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2; margin: -27px 0 16px 22px;
  border: 4px solid #fff;
}
.service-card .icon-wrap svg { width: 26px; height: 26px; color: #fff; }
.service-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.service-card ul { display: flex; flex-direction: column; gap: 7px; }
.service-card li { font-size: 0.88rem; color: var(--ink-soft); padding-left: 16px; position: relative; }
.service-card li::before { content: "•"; color: var(--orange); position: absolute; left: 0; font-weight: 700; }

.service-card.highlight {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--petrol) 100%);
  border-color: transparent; position: relative;
}
.service-card.highlight .icon-wrap { background: linear-gradient(135deg, var(--amber-2), var(--orange)); border-color: var(--navy-deep); }
.service-card.highlight h3 { color: #fff; }
.service-card.highlight li { color: rgba(255,255,255,0.78); }
.service-card.highlight li::before { color: var(--amber-2); }
.service-card.highlight .ribbon {
  position: absolute; top: 14px; right: 14px; z-index: 3; font-size: 0.66rem; font-weight: 800;
  color: var(--navy-deep); background: var(--amber-2); padding: 4px 10px; border-radius: 100px;
  letter-spacing: 0.04em; text-transform: uppercase;
}

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

/* ===== Nao faço band ===== */
.limits {
  background: linear-gradient(135deg, var(--petrol-2) 0%, var(--petrol) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.limits::before {
  content: ""; position: absolute; inset: 0; opacity: 0.5;
  background: radial-gradient(600px 300px at 90% 0%, rgba(239,159,39,0.25), transparent 60%);
}
.limits .container { position: relative; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: center; }
.limits h2 { color: #fff; }
.limits .section-head p { color: rgba(255,255,255,0.78); }
.limits-list { display: flex; flex-direction: column; gap: 16px; }
.limits-list li {
  display: flex; gap: 14px; align-items: flex-start; font-size: 0.98rem; color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  padding: 16px 18px; border-radius: var(--radius-sm);
}
.limits-list svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--amber-2); margin-top: 2px; }

@media (max-width: 860px) { .limits .container { grid-template-columns: 1fr; } }

/* ===== Preço band ===== */
.pricing { background: var(--off-2); }
.pricing .container { display: grid; grid-template-columns: 1fr 0.85fr; gap: 40px; align-items: center; }
.pricing-card {
  background: #fff; border: 1px dashed var(--amber); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow-sm);
}
.pricing-card h2 { margin-bottom: 14px; }
.pricing-card p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 26px; }
.pricing-3d { display: flex; justify-content: center; }
.pricing-3d img { width: 100%; max-width: 360px; }

@media (max-width: 860px) {
  .pricing .container { grid-template-columns: 1fr; }
  .pricing-3d { order: -1; }
  .pricing-3d img { max-width: 240px; }
}

/* ===== Por que confiar ===== */
.trust { background: var(--navy-deep); color: #fff; position: relative; overflow: hidden; }
.trust::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 10% 100%, rgba(216,90,48,0.25), transparent 60%),
              radial-gradient(700px 400px at 95% 0%, rgba(239,159,39,0.2), transparent 60%);
}
.trust .container { position: relative; }
.trust h2 { color: #fff; }
.trust .section-head p { color: rgba(255,255,255,0.75); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.trust-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm); padding: 26px 22px;
}
.trust-card .icon-wrap {
  width: 50px; height: 50px; border-radius: 14px; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--amber-2), var(--orange));
  display: flex; align-items: center; justify-content: center;
}
.trust-card .icon-wrap svg { width: 25px; height: 25px; color: #fff; }
.trust-card p { font-size: 0.92rem; color: rgba(255,255,255,0.85); }

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

/* ===== Parceiros (discreet) ===== */
.partners { background: var(--off-2); padding: 56px 0; }
.partners .container { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.partners .label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
.partner-card {
  display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line);
  border-radius: 100px; padding: 10px 22px 10px 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.partner-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--orange); }
.partner-card img { height: 34px; width: auto; }
.partner-card .pname { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; color: var(--ink); }
.partner-card .prole { font-size: 0.72rem; color: var(--ink-soft); }

/* ===== CTA final ===== */
.cta-final {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%);
  color: #fff; text-align: center;
}
.cta-final h2 { color: #fff; margin-bottom: 14px; }
.cta-final p { color: rgba(255,255,255,0.9); max-width: 520px; margin: 0 auto 30px; font-size: 1.05rem; }
.cta-final .btn-whatsapp { background: #fff; color: var(--whatsapp-dark); box-shadow: 0 14px 30px -10px rgba(0,0,0,0.35); }
.cta-final .btn-whatsapp:hover { transform: translateY(-2px); }

/* ===== Footer ===== */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.72); padding: 56px 0 26px; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-size: 1.1rem; color: #fff; }
.footer-brand img { width: 36px; height: 36px; object-fit: contain; }
.footer-info { font-size: 0.88rem; display: flex; flex-direction: column; gap: 6px; }
.footer-info a:hover { color: var(--amber-2); }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.8rem; }

/* ===== WhatsApp float ===== */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 400;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--whatsapp); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3); animation: pulse 2.4s infinite;
}
.wa-float svg { width: 30px; height: 30px; color: #fff; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
