/* =============================================================
   Samix Telecom — Premium stylesheet
   Mobile first · BEM-like naming · CSS custom properties
   Fonts: League Spartan (titulos) · Manrope (textos)
   ============================================================= */

:root {
  /* Primarias */
  --color-navy: #071E33;
  --color-navy-light: #173F60;
  --color-gold: #BF9860;
  --color-gold-dark: #A88552;

  /* Neutras */
  --color-white: #F7F5F2;
  --color-off-white: #F1EFEC;
  --color-text: #1F2B38;
  --color-text-light: #5E6772;
  --color-border: #D7D7D7;

  /* Derivadas */
  --color-navy-700: #0B2A47;
  --color-navy-glass: rgba(7, 30, 51, 0.72);
  --color-gold-soft: rgba(191, 152, 96, 0.14);
  --shadow-sm: 0 2px 10px rgba(7, 30, 51, 0.06);
  --shadow-md: 0 14px 40px rgba(7, 30, 51, 0.10);
  --shadow-lg: 0 30px 70px rgba(7, 30, 51, 0.16);
  --radius: 4px;
  --radius-lg: 14px;
  --radius-xl: 22px;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 78px;

  --font-display: "League Spartan", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--color-gold); outline-offset: 3px; border-radius: var(--radius); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--color-navy);
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 9vw, 120px); position: relative; }
.section--navy { background: var(--color-navy); color: var(--color-white); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--color-white); }
.section--offwhite { background: var(--color-off-white); }
.section__head { max-width: 760px; margin-bottom: clamp(34px, 5vw, 60px); }
.section__head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700;
  font-size: 1.1rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--color-gold-dark);
}
.eyebrow::before { content: ""; width: 0px; height: 2px; background: var(--color-gold); }
.section--navy .eyebrow { color: var(--color-gold); }

.section__title { font-size: clamp(1.9rem, 4.4vw, 3rem); margin-block: 14px 16px; }
.section__lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--color-text-light); }
.section--navy .section__lead { color: rgba(247, 245, 242, 0.78); }
.text-gold { color: var(--color-gold); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--color-navy);
  --btn-fg: var(--color-white);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.96rem;
  padding: 14px 26px; border-radius: var(--radius);
  background: var(--btn-bg); color: var(--btn-fg);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s ease, color .3s ease;
  will-change: transform; line-height: 1.1; text-align: center;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--gold { --btn-bg: var(--color-gold); --btn-fg: var(--color-navy); }
.btn--gold:hover { --btn-bg: var(--color-gold-dark); }
.btn--white { --btn-bg: var(--color-white); --btn-fg: var(--color-navy); }
.btn--ghost {
  background: transparent; color: var(--color-navy);
  box-shadow: inset 0 0 0 1.5px var(--color-border);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--color-gold); color: var(--color-gold-dark); }
.section--navy .btn--ghost { color: var(--color-white); box-shadow: inset 0 0 0 1.5px rgba(247,245,242,0.4); }
.section--navy .btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--color-gold); color: var(--color-gold); }
.btn--block { width: 100%; }
.btn--sm { padding: 11px 18px; font-size: 0.88rem; }

/* ---------- Preloader ---------- */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--color-navy);
  display: grid; place-items: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__mark { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.preloader__logo {
  display: flex; align-items: center; gap: 14px;
  animation: floatLogo 2.2s ease-in-out infinite;
}
.preloader__logo img { width: 56px; height: 56px; }
.preloader__word {
  font-family: var(--font-display); font-weight: 700; font-size: 2.2rem;
  color: var(--color-white); letter-spacing: -0.02em;
}
.preloader__word span { color: #3FA9F5; }
.preloader__bar { width: 140px; height: 3px; border-radius: 4px; background: rgba(247,245,242,0.16); overflow: hidden; }
.preloader__bar::after { content: ""; display: block; height: 100%; width: 40%; background: var(--color-gold); border-radius: 4px; animation: loadBar 1.5s var(--ease) infinite; }
@keyframes floatLogo { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes loadBar { 0% { transform: translateX(-120%); } 100% { transform: translateX(360%); } }
.page-fade { animation: pageIn .5s ease; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
  padding-block: 16px;
}
.header__inner { display: flex; align-items: center; gap: 22px; }
.header.is-scrolled { background: rgba(7, 30, 51, 0.93); backdrop-filter: blur(14px); box-shadow: 0 10px 30px rgba(7,30,51,0.25); padding-block: 9px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand img { width: 40px; height: 40px; }
.brand__word { font-family: var(--font-display); font-weight: 700; font-size: 1.55rem; color: var(--color-white); letter-spacing: -0.02em; }
.brand__word span { color: #3FA9F5; }
/* Header sobre fundo claro nas paginas internas (sem hero escuro) */
.header--solid { position: sticky; background: rgba(7,30,51,0.96); backdrop-filter: blur(14px); box-shadow: 0 8px 26px rgba(7,30,51,0.18); }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 6px; }
.nav__list a {
  display: inline-block; padding: 9px 13px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.92rem; color: rgba(247,245,242,0.86);
  position: relative; transition: color .25s ease;
}
.nav__list a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 2px;
  background: var(--color-gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav__list a:hover { color: #fff; }
.nav__list a:hover::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: var(--radius); flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--color-white); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile nav ---------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 950; background: var(--color-navy);
  display: flex; flex-direction: column; padding: 90px var(--gutter) 40px;
  transform: translateX(100%); transition: transform .45s var(--ease); overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__close { position: absolute; top: 22px; right: var(--gutter); width: 44px; height: 44px; color: #fff; font-size: 1.6rem; }
.mobile-nav__list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav__list a { color: var(--color-white); font-family: var(--font-display); font-weight: 200; font-size: 1.1rem; padding: 11px 0; border-bottom: 1px solid rgba(247,245,242,0.08); transition: color .25s, padding-left .25s; }
.mobile-nav__list a:hover { color: var(--color-gold); padding-left: 8px; }
.mobile-nav__cta { margin-top: 28px; display: grid; gap: 12px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: var(--header-h); background: var(--color-navy); overflow: hidden; }
.hero__track { position: absolute; inset: 0; }
.hero__slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1s var(--ease), visibility 1s; }
.hero__slide.is-active { opacity: 1; visibility: visible; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.08); transition: transform 7s ease; }
.hero__slide.is-active .hero__bg { transform: scale(1); }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(7,30,51,0.95) 0%, rgba(7,30,51,0.82) 42%, rgba(7,30,51,0.45) 100%); }
.hero__inner { position: relative; z-index: 3; width: 100%; }
.hero__content { max-width: 720px; }
.hero__eyebrow { color: var(--color-gold); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.76rem; display: inline-flex; gap: 10px; align-items: center; margin-bottom: 18px; }
.hero__eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--color-gold); }
.hero__title { color: #fff; font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1.04; }
.hero__sub { color: rgba(247,245,242,0.82); font-size: clamp(1.02rem, 1.7vw, 1.22rem); max-width: 600px; margin-block: 20px 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__slide .hero__content > * { opacity: 0; transform: translateY(24px); }
.hero__slide.is-active .hero__content > * { animation: heroUp .8s var(--ease) forwards; }
.hero__slide.is-active .hero__eyebrow { animation-delay: .15s; }
.hero__slide.is-active .hero__title { animation-delay: .28s; }
.hero__slide.is-active .hero__sub { animation-delay: .42s; }
.hero__slide.is-active .hero__actions { animation-delay: .56s; }
@keyframes heroUp { to { opacity: 1; transform: translateY(0); } }

.hero__arrows { position: absolute; z-index: 5; right: var(--gutter); bottom: 96px; display: flex; gap: 12px; }
.hero__arrow { width: 50px; height: 50px; border-radius: var(--radius); display: grid; place-items: center; color: #fff; background: rgba(247,245,242,0.08); box-shadow: inset 0 0 0 1.5px rgba(247,245,242,0.22); transition: background .3s, transform .3s; }
.hero__arrow:hover { background: var(--color-gold); color: var(--color-navy); transform: translateY(-3px); }
.hero__status { position: absolute; z-index: 5; left: var(--gutter); right: var(--gutter); bottom: 40px; display: flex; align-items: center; gap: 18px; }
.hero__dots { display: flex; gap: 10px; flex: none; }
.hero__dot { width: 30px; height: 4px; border-radius: 4px; background: rgba(247,245,242,0.22); overflow: hidden; cursor: pointer; }
.hero__dot span { display: block; height: 100%; width: 0; background: var(--color-gold); }
.hero__dot.is-active span { animation: dotFill 6s linear forwards; }
@keyframes dotFill { from { width: 0; } to { width: 100%; } }
.hero__count { font-family: var(--font-display); font-weight: 600; color: rgba(247,245,242,0.7); font-size: 0.92rem; letter-spacing: 0.05em; margin-left: auto; }
.hero__count b { color: var(--color-gold); }

/* ---------- Stat strip ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(247,245,242,0.10); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: var(--color-navy-700); padding: 26px 22px; text-align: center; transition: background .3s ease; }
.stat:hover { background: var(--color-navy-light); }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--color-gold); line-height: 1; }
.stat__label { color: rgba(247,245,242,0.8); font-size: 0.9rem; margin-top: 8px; font-weight: 500; }

/* ---------- About / authority cards ---------- */
.about { display: grid; gap: clamp(34px, 5vw, 64px); grid-template-columns: 1fr; align-items: start; }
.about__intro p { color: var(--color-text-light); margin-bottom: 16px; font-size: 1.05rem; }
.about__intro p strong { color: var(--color-text); }
.auth-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.auth-card {
  background: var(--color-white); border-radius: var(--radius-lg); padding: 22px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(215,215,215,0.6);
  display: flex; gap: 16px; align-items: flex-start;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.auth-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--color-gold); }
.auth-card__icon { flex: none; width: 46px; height: 46px; border-radius: var(--radius); display: grid; place-items: center; background: var(--color-gold-soft); color: var(--color-gold-dark); }
.auth-card__icon svg { width: 24px; height: 24px; }
.auth-card__num { font-family: var(--font-display); font-weight: 700; color: var(--color-navy); font-size: 1.15rem; }
.auth-card__title { font-size: 1.02rem; font-family: var(--font-display); font-weight: 600; margin-bottom: 3px; }
.auth-card__text { color: var(--color-text-light); font-size: 0.93rem; line-height: 1.55; }
.section--navy .auth-card { background: var(--color-navy-700); border-color: rgba(247,245,242,0.10); }
.section--navy .auth-card__title { color: #fff; }
.section--navy .auth-card__text { color: rgba(247,245,242,0.72); }

/* ---------- Method / steps ---------- */
.steps { display: grid; gap: 18px; grid-template-columns: 1fr; counter-reset: step; }
.step {
  position: relative; background: var(--color-white); border-radius: var(--radius-lg);
  padding: 28px 26px 26px; box-shadow: var(--shadow-sm); border: 1px solid rgba(215,215,215,0.6);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step__num { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; color: var(--color-gold); line-height: 1; opacity: .9; }
.step__title { font-size: 1.15rem; margin-block: 12px 8px; font-family: var(--font-display); }
.step__text { color: var(--color-text-light); font-size: 0.96rem; }
.step::after { content: ""; position: absolute; top: 30px; right: 26px; width: 30px; height: 30px; border-radius: var(--radius); background: var(--color-gold-soft); }

/* ---------- Solutions grid ---------- */
.solutions { display: grid; gap: 20px; grid-template-columns: 1fr; }
.solution {
  position: relative; background: var(--color-white); border-radius: var(--radius-lg);
  padding: 30px 26px; box-shadow: var(--shadow-sm); border: 1px solid rgba(215,215,215,0.55);
  overflow: hidden; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
  display: flex; flex-direction: column;
}
.solution::before { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 4px; background: var(--color-gold); transform: scaleY(0); transform-origin: top; transition: transform .45s var(--ease); }
.solution:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: transparent; }
.solution:hover::before { transform: scaleY(1); }
.solution__icon { width: 54px; height: 54px; border-radius: var(--radius); display: grid; place-items: center; background: var(--color-navy); color: var(--color-gold); margin-bottom: 18px; transition: background .4s, transform .4s; }
.solution__icon svg { width: 28px; height: 28px; }
.solution:hover .solution__icon { background: var(--color-gold); color: var(--color-navy); transform: rotate(-4deg); }
.solution__title { font-size: 1.28rem; margin-bottom: 10px; font-family: var(--font-display); }
.solution__text { color: var(--color-text-light); font-size: 0.97rem; margin-bottom: 16px; flex: 1; }
.solution__list { display: grid; gap: 8px; margin-bottom: 22px; }
.solution__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--color-text); }
.solution__list li svg { flex: none; width: 17px; height: 17px; color: var(--color-gold-dark); margin-top: 3px; }
.solution__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }

/* ---------- Feature / tech grid ---------- */
.features { display: grid; gap: 14px; grid-template-columns: 1fr; }
.feature { display: flex; gap: 14px; align-items: flex-start; background: var(--color-navy-700); border-radius: var(--radius-lg); padding: 20px; border: 1px solid rgba(247,245,242,0.08); transition: transform .35s var(--ease), border-color .35s; }
.feature:hover { transform: translateY(-4px); border-color: var(--color-gold); }
.feature__icon { flex: none; width: 42px; height: 42px; border-radius: var(--radius); display: grid; place-items: center; background: var(--color-gold-soft); color: var(--color-gold); }
.feature__icon svg { width: 22px; height: 22px; }
.feature__title { color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; margin-bottom: 3px; }
.feature__text { color: rgba(247,245,242,0.72); font-size: 0.9rem; line-height: 1.5; }

/* ---------- Benefits ---------- */
.benefits { display: grid; gap: 12px; grid-template-columns: 1fr; }
.benefit { display: flex; gap: 13px; align-items: center; background: var(--color-white); border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow-sm); border: 1px solid rgba(215,215,215,0.55); transition: transform .3s var(--ease), box-shadow .3s; }
.benefit:hover { transform: translateX(5px); box-shadow: var(--shadow-md); }
.benefit__icon { flex: none; width: 36px; height: 36px; border-radius: var(--radius); display: grid; place-items: center; background: var(--color-gold-soft); color: var(--color-gold-dark); }
.benefit__icon svg { width: 20px; height: 20px; }
.benefit p { font-weight: 600; font-size: 0.95rem; color: var(--color-text); }

/* ---------- Testimonials ---------- */
.quotes { display: grid; gap: 20px; grid-template-columns: 1fr; }
.quote { background: var(--color-navy-700); border-radius: var(--radius-xl); padding: 32px 28px; border: 1px solid rgba(247,245,242,0.08); position: relative; transition: transform .45s var(--ease), border-color .45s; }
.quote:hover { transform: translateY(-6px); border-color: var(--color-gold); }
.quote__mark { font-family: var(--font-display); font-size: 3.4rem; color: var(--color-gold); line-height: 0.6; height: 30px; }
.quote__text { color: rgba(247,245,242,0.88); font-size: 1.02rem; margin-block: 14px 22px; }
.quote__author { display: flex; align-items: center; gap: 14px; }
.quote__avatar { width: 48px; height: 48px; border-radius: var(--radius); background: var(--color-gold); color: var(--color-navy); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; flex: none; }
.quote__name { color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; }
.quote__role { color: rgba(247,245,242,0.62); font-size: 0.86rem; }

/* ---------- Horizontal scroll (blog) ---------- */
.hscroll { position: relative; }
.hscroll__track { display: grid; grid-auto-flow: column; grid-auto-columns: 84%; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; scrollbar-width: none; }
.hscroll__track::-webkit-scrollbar { display: none; }
.hscroll__track > * { scroll-snap-align: start; }
.hscroll__status { display: flex; align-items: center; gap: 16px; margin-top: 22px; }
.hscroll__bar { flex: 1; height: 4px; background: rgba(7,30,51,0.12); border-radius: 4px; overflow: hidden; }
.section--navy .hscroll__bar { background: rgba(247,245,242,0.16); }
.hscroll__fill { height: 100%; width: 25%; background: var(--color-gold); border-radius: 4px; transition: width .2s ease, margin-left .2s ease; }
.hscroll__arrows { display: flex; gap: 10px; flex: none; }
.hscroll__arrow { width: 44px; height: 44px; border-radius: var(--radius); display: grid; place-items: center; background: var(--color-navy); color: #fff; transition: background .3s, transform .3s; }
.hscroll__arrow:hover { background: var(--color-gold); color: var(--color-navy); transform: translateY(-2px); }
.section--navy .hscroll__arrow { background: rgba(247,245,242,0.1); box-shadow: inset 0 0 0 1.5px rgba(247,245,242,0.25); }
.section--navy .hscroll__arrow:hover { background: var(--color-gold); color: var(--color-navy); }

.post-card { background: var(--color-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid rgba(215,215,215,0.5); display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.post-card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.06); }
.post-card__body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.post-card__cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-gold-dark); margin-bottom: 10px; }
.post-card__title { font-size: 1.16rem; font-family: var(--font-display); line-height: 1.18; margin-bottom: 10px; }
.post-card__excerpt { color: var(--color-text-light); font-size: 0.92rem; flex: 1; margin-bottom: 16px; }
.post-card__link { color: var(--color-navy); font-weight: 700; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 7px; transition: gap .3s, color .3s; }
.post-card__link:hover { gap: 12px; color: var(--color-gold-dark); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 880px; margin-inline: auto; }
.faq__item { background: var(--color-white); border-radius: var(--radius-lg); border: 1px solid rgba(215,215,215,0.6); overflow: hidden; transition: box-shadow .35s, border-color .35s; }
.faq__item.is-open { box-shadow: var(--shadow-md); border-color: var(--color-gold); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--color-navy); }
.faq__icon { flex: none; width: 28px; height: 28px; border-radius: var(--radius); background: var(--color-gold-soft); color: var(--color-gold-dark); display: grid; place-items: center; transition: transform .35s var(--ease), background .3s, color .3s; }
.faq__item.is-open .faq__icon { transform: rotate(45deg); background: var(--color-gold); color: var(--color-navy); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a-inner { padding: 0 22px 22px; color: var(--color-text-light); font-size: 0.97rem; }

/* ---------- Consultoria CTA ---------- */
.cta-band { position: relative; background: var(--color-navy); border-radius: var(--radius-xl); padding: clamp(40px, 6vw, 72px); overflow: hidden; text-align: center; box-shadow: var(--shadow-lg); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(191,152,96,0.22), transparent 55%); }
.cta-band__inner { position: relative; z-index: 2; max-width: 720px; margin-inline: auto; }
.cta-band__title { color: #fff; font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: 16px; }
.cta-band__text { color: rgba(247,245,242,0.82); font-size: 1.06rem; margin-bottom: 28px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Contact / social ---------- */
.contact-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
.contact-card { display: flex; gap: 16px; align-items: center; background: var(--color-navy-700); border-radius: var(--radius-lg); padding: 22px; border: 1px solid rgba(247,245,242,0.08); transition: transform .4s var(--ease), border-color .4s; }
.contact-card:hover { transform: translateY(-5px); border-color: var(--color-gold); }
.contact-card__icon { flex: none; width: 50px; height: 50px; border-radius: var(--radius); display: grid; place-items: center; background: var(--color-gold-soft); color: var(--color-gold); }
.contact-card__icon svg { width: 26px; height: 26px; }
.contact-card__label { color: rgba(247,245,242,0.6); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.contact-card__value { color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; word-break: break-word; }

/* ---------- Location ---------- */
.location { display: grid; gap: 26px; grid-template-columns: 1fr; align-items: center; }
.location__card { background: var(--color-white); border-radius: var(--radius-xl); padding: clamp(30px, 5vw, 48px); box-shadow: var(--shadow-md); border: 1px solid rgba(215,215,215,0.5); }
.location__socials { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.social-btn { display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px; border-radius: var(--radius); background: var(--color-off-white); font-weight: 700; font-size: 0.9rem; color: var(--color-navy); box-shadow: inset 0 0 0 1.5px transparent; transition: box-shadow .3s, transform .3s, background .3s; }
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1.5px var(--color-gold); background: #fff; }

/* ---------- Footer ---------- */
.footer { background: var(--color-navy); color: rgba(247,245,242,0.74); padding-top: clamp(50px, 7vw, 80px); }
.footer__grid { display: grid; gap: 36px; grid-template-columns: 1fr; padding-bottom: 44px; }
.footer__brand .brand { margin-bottom: 16px; }
.footer__about { font-size: 0.94rem; max-width: 360px; }
.footer__col h4 { color: #fff; font-size: 1.02rem; margin-bottom: 16px; font-family: var(--font-display); }
.footer__col ul { display: grid; gap: 10px; }
.footer__col a { font-size: 0.92rem; transition: color .25s, padding-left .25s; display: inline-block; }
.footer__col a:hover { color: var(--color-gold); padding-left: 5px; }
.footer__socials { display: flex; gap: 10px; margin-top: 18px; }
.footer__socials a { width: 40px; height: 40px; border-radius: var(--radius); display: grid; place-items: center; background: rgba(247,245,242,0.07); color: #fff; transition: background .3s, transform .3s; }
.footer__socials a:hover { background: var(--color-gold); color: var(--color-navy); transform: translateY(-3px); }
.footer__socials svg { width: 19px; height: 19px; }
.footer__bottom { border-top: 1px solid rgba(247,245,242,0.1); padding-block: 22px; display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; font-size: 0.86rem; }
.footer__bottom a { color: rgba(247,245,242,0.74); transition: color .25s; }
.footer__bottom a:hover { color: var(--color-gold); }
.footer__credit a { color: var(--color-gold); font-weight: 700; }

/* ---------- Floating elements ---------- */
.float-whatsapp { position: fixed; right: 20px; bottom: 22px; z-index: 700; display: inline-flex; align-items: center; gap: 10px; padding: 13px 20px 13px 16px; border-radius: 50px; background: #25D366; color: #fff; font-weight: 700; font-size: 0.92rem; box-shadow: 0 14px 34px rgba(37,211,102,0.4); transition: transform .35s var(--ease), box-shadow .35s; }
.float-whatsapp svg { width: 24px; height: 24px; flex: none; }
.float-whatsapp:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 20px 44px rgba(37,211,102,0.5); }
.float-whatsapp__pulse { position: absolute; inset: 0; border-radius: 50px; box-shadow: 0 0 0 0 rgba(37,211,102,0.6); animation: pulse 2.4s infinite; }
@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); } }

.to-top { position: fixed; right: 22px; bottom: 92px; z-index: 690; width: 48px; height: 48px; border-radius: var(--radius); background: var(--color-navy); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .35s, visibility .35s, transform .35s, background .3s; }
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--color-gold); color: var(--color-navy); }
.to-top svg { width: 22px; height: 22px; }

/* ---------- Consultoria popup ---------- */
.modal { position: fixed; inset: 0; z-index: 980; display: grid; place-items: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity .4s ease, visibility .4s; }
.modal.is-open { opacity: 1; visibility: visible; }
.modal__overlay { position: absolute; inset: 0; background: rgba(7,30,51,0.7); backdrop-filter: blur(4px); }
.modal__box { position: relative; z-index: 2; background: var(--color-white); border-radius: var(--radius-xl); max-width: 460px; width: 100%; padding: 38px 34px; box-shadow: var(--shadow-lg); text-align: center; transform: translateY(20px) scale(.97); transition: transform .45s var(--ease); border-top: 4px solid var(--color-gold); }
.modal.is-open .modal__box { transform: translateY(0) scale(1); }
.modal__close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: var(--radius); display: grid; place-items: center; color: var(--color-text-light); font-size: 1.4rem; transition: background .25s, color .25s; }
.modal__close:hover { background: var(--color-off-white); color: var(--color-navy); }
.modal__icon { width: 64px; height: 64px; border-radius: 50%; background: var(--color-gold-soft); color: var(--color-gold-dark); display: grid; place-items: center; margin: 0 auto 18px; }
.modal__icon svg { width: 32px; height: 32px; }
.modal__title { font-size: 1.5rem; margin-bottom: 12px; }
.modal__text { color: var(--color-text-light); margin-bottom: 24px; font-size: 1rem; }
.modal__actions { display: grid; gap: 10px; }

/* ---------- Cookie consent ---------- */
.cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 960; background: var(--color-navy); color: rgba(247,245,242,0.86); border-radius: var(--radius-lg); padding: 20px 22px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 16px; max-width: 560px; transform: translateY(140%); transition: transform .5s var(--ease); border: 1px solid rgba(191,152,96,0.3); }
.cookie.is-visible { transform: translateY(0); }
.cookie__text { font-size: 0.9rem; line-height: 1.55; }
.cookie__text a { color: var(--color-gold); font-weight: 700; }
.cookie__actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- Reveal on scroll ---------- */
.reveal { transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(34px); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

/* ---------- Inner page hero ---------- */
.page-hero { background: var(--color-navy); color: #fff; padding-top: calc(var(--header-h) + 40px); padding-bottom: 60px; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; right: -10%; top: -30%; width: 540px; height: 540px; border-radius: 50%; background: radial-gradient(circle, rgba(191,152,96,0.18), transparent 65%); }
.page-hero__inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero__title { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); margin-block: 14px 16px; }
.page-hero__sub { color: rgba(247,245,242,0.8); font-size: 1.1rem; max-width: 600px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: 0.84rem; color: rgba(247,245,242,0.6); margin-bottom: 6px; }
.breadcrumb a { color: rgba(247,245,242,0.6); transition: color .25s; }
.breadcrumb a:hover { color: var(--color-gold); }

/* ---------- Article (blog/legal) ---------- */
.article { display: grid; gap: 40px; grid-template-columns: 1fr; }
.article__body { max-width: 760px; }
.article__cover { border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 34px; box-shadow: var(--shadow-md); }
.article__body h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-block: 36px 14px; }
.article__body h3 { font-size: clamp(1.2rem, 2.4vw, 1.45rem); margin-block: 26px 10px; }
.article__body p { color: var(--color-text); margin-bottom: 16px; font-size: 1.04rem; }
.article__body ul { display: grid; gap: 10px; margin: 8px 0 22px; }
.article__body ul li { display: flex; gap: 11px; align-items: flex-start; color: var(--color-text); }
.article__body ul li svg { flex: none; width: 19px; height: 19px; color: var(--color-gold-dark); margin-top: 4px; }
.article__lead { font-size: 1.18rem !important; color: var(--color-text-light) !important; font-weight: 500; }
.article__cta { background: var(--color-off-white); border-radius: var(--radius-lg); padding: 30px; margin: 36px 0; border: 1px solid rgba(215,215,215,0.6); text-align: center; }
.article__cta h3 { margin-bottom: 12px; }
.article__cta p { color: var(--color-text-light); margin-bottom: 20px; }
.article__meta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 22px; font-size: 0.86rem; color: var(--color-text-light); }
.article__tag { background: var(--color-gold-soft); color: var(--color-gold-dark); padding: 5px 12px; border-radius: var(--radius); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; }
.aside-card { background: var(--color-white); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); border: 1px solid rgba(215,215,215,0.6); position: sticky; top: 100px; }
.aside-card h4 { margin-bottom: 16px; }
.aside-card ul { display: grid; gap: 14px; }
.aside-card a { display: block; color: var(--color-text); font-weight: 600; font-size: 0.95rem; transition: color .25s; }
.aside-card a:hover { color: var(--color-gold-dark); }
.aside-card a span { display: block; font-size: 0.78rem; color: var(--color-gold-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }

/* Legal page typography */
.legal h2 { font-size: 1.4rem; margin-block: 32px 12px; }
.legal h3 { font-size: 1.12rem; margin-block: 22px 8px; }
.legal p { margin-bottom: 14px; color: var(--color-text); }
.legal ul { display: grid; gap: 9px; margin: 6px 0 20px; }
.legal ul li { display: flex; gap: 11px; align-items: flex-start; }
.legal ul li svg { flex: none; width: 18px; height: 18px; color: var(--color-gold-dark); margin-top: 4px; }
.legal__updated { color: var(--color-text-light); font-size: 0.9rem; margin-bottom: 8px; }

/* ---------- Highlight block ---------- */
.highlight { background: linear-gradient(120deg, var(--color-navy), var(--color-navy-light)); border-radius: var(--radius-xl); padding: clamp(34px, 5vw, 56px); color: #fff; display: grid; gap: 28px; grid-template-columns: 1fr; align-items: center; overflow: hidden; position: relative; }
.highlight::before { content: ""; position: absolute; right: -60px; bottom: -60px; width: 260px; height: 260px; border-radius: 50%; background: rgba(191,152,96,0.16); }
.highlight__body { position: relative; z-index: 2; }
.highlight__title { color: #fff; font-size: clamp(1.5rem, 3.4vw, 2.2rem); margin-bottom: 14px; }
.highlight__text { color: rgba(247,245,242,0.82); margin-bottom: 22px; }
.highlight__list { position: relative; z-index: 2; display: grid; gap: 12px; }
.highlight__list li { display: flex; gap: 12px; align-items: flex-start; color: rgba(247,245,242,0.92); font-size: 0.96rem; }
.highlight__list li svg { flex: none; width: 20px; height: 20px; color: var(--color-gold); margin-top: 3px; }

/* ============================================================
   RESPONSIVE — tablet & desktop
   ============================================================ */
@media (min-width: 600px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
  .auth-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .hscroll__track { grid-auto-columns: 48%; }
  .cookie { flex-direction: row; align-items: center; }
  .cookie__actions { flex: none; }
}

@media (min-width: 900px) {
  :root { --header-h: 84px; }
  .nav-toggle { display: none; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps .step:nth-child(4), .steps .step:nth-child(5) { grid-column: span 1; }
  .solutions { grid-template-columns: repeat(3, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: repeat(3, 1fr); }
  .about { grid-template-columns: 1fr 1fr; }
  .auth-grid { grid-template-columns: 1fr; }
  .hscroll__track { grid-auto-columns: 31%; }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .highlight { grid-template-columns: 1.3fr 1fr; }
  .article { grid-template-columns: 1fr 320px; }
  .location { grid-template-columns: 1.2fr 1fr; }
}

@media (max-width: 899px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .header__actions .btn { display: none; }
  .header__actions .nav-toggle { display: flex; }
}

@media (min-width: 1100px) {
  .features { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(5, 1fr); }
}

/* Mobile fine-tuning */
@media (max-width: 480px) {
  .float-whatsapp span { display: none; }
  .float-whatsapp { padding: 14px; }
  .hero__arrows { bottom: 110px; }
  .hero__count { display: none; }
}

/* ============================================================
   AJUSTES DE LAYOUT — header nav, hero mobile (R1)
   ============================================================ */
:root { --maxw: 1240px; --gutter: clamp(18px, 4vw, 44px); }

/* Nav horizontal apenas a partir de 1200px; abaixo disso, menu mobile */
@media (max-width: 1199px) {
  .nav { display: none; }
  .nav-toggle { display: flex !important; }
  .header__actions .btn { display: none; }
}
@media (min-width: 1200px) {
  .nav-toggle { display: none; }
  .header__actions .btn { display: inline-flex; }
  .nav__list { gap: 2px; }
  .nav__list a { padding: 8px 11px; font-size: 0.86rem; white-space: nowrap; }
  .nav__list a::after { left: 11px; right: 11px; }
}
.brand { flex: none; }
.brand__word { white-space: nowrap; }

/* Hero: centralizar o conteudo dentro do slide (os slides sao absolute,
   entao o padding/align do .hero nao os afeta). Offset para o header fixo. */
.hero__slide { display: flex; align-items: center; padding-top: var(--header-h); }
.hero__inner { width: 100%; }

/* Mobile/tablet: conteudo alinhado ao topo, com folga do header e do rodape do hero */
@media (max-width: 899px) {
  .hero__slide { align-items: flex-start; padding-top: calc(var(--header-h) + 26px); padding-bottom: 150px; }
}

/* Seta do link de post (evita SVG sem dimensao) */
.post-card__link svg { width: 17px; height: 17px; flex: none; }

/* ============================================================
   REVISAO R2 — tipografia, cores de texto, botoes, feedbacks,
   steps, preloader, contato. Ajustes pontuais.
   ============================================================ */

/* 1) Titulos em League Spartan, sem negrito (mais sofisticacao) */
h1, h2, h3, h4, h5,
.hero__title, .section__title, .page-hero__title, .cta-band__title, .highlight__title,
.feature__title, .step__title, .solution__title, .post-card__title, .modal__title,
.footer__col h4, .auth-card__title, .quote__name, .faq__q {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.hero__title { font-family: var(--font-display); }

/* 2) Paragrafos em Manrope; preto no claro, branco no escuro */
p { font-family: var(--font-body); }

/* fundo claro -> texto preto */
.section__lead, .about__intro, .step__text, .solution__text, .auth-card__text,
.benefit p, .post-card__excerpt, .faq__a-inner, .article__lead, .article__body p,
.legal p, .aside-card p, .modal__text, .section p {
  color: #000000;
}
/* fundo escuro -> texto branco (sobrepoe as regras claras acima) */
.section--navy p, .section--navy .section__lead, .hero__sub, .page-hero__sub,
.cta-band__text, .highlight__text, .highlight p, .footer, .footer p, .footer__about,
.section--navy .feature__text {
  color: #ffffff;
}

/* 3) Botao ghost legivel: branco no escuro, preto no claro */
.btn--ghost { color: #000000; box-shadow: inset 0 0 0 1.5px var(--color-border); }
.btn--ghost:hover { color: var(--color-gold-dark); box-shadow: inset 0 0 0 1.5px var(--color-gold); }
.hero .btn--ghost, .page-hero .btn--ghost, .section--navy .btn--ghost,
.cta-band .btn--ghost, .highlight .btn--ghost {
  color: #ffffff; box-shadow: inset 0 0 0 1.5px rgba(247,245,242,0.45);
}
.hero .btn--ghost:hover, .page-hero .btn--ghost:hover, .section--navy .btn--ghost:hover,
.cta-band .btn--ghost:hover, .highlight .btn--ghost:hover {
  color: var(--color-gold); box-shadow: inset 0 0 0 1.5px var(--color-gold);
}

/* 4) Steps: remover o quadrado decorativo (amarelo claro) */
.step::after { display: none !important; }

/* 5) Feedbacks: cards brancos com texto preto */
.section--navy .quote, .quote { background: #ffffff; border-color: rgba(7,30,51,0.10); }
.quote__text { color: #000000; }
.quote__name { color: #000000; }
.quote__role { color: #000000; }
.quote__mark { color: var(--color-gold); }
.quote__avatar { background: var(--color-navy); color: #ffffff; }

/* 6) Hscroll: snap mais suave (corrige travamentos no scroll) */
.hscroll__track { scroll-snap-type: x proximity; scroll-behavior: smooth; }

/* ============================================================
   REVISAO R3 — Formulario de contato + Secao de endereco
   ============================================================ */

/* ---------- Formulario ---------- */
.form-grid { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 48px); align-items: start; }
.form-intro__text { color: #000000; font-size: 1.05rem; margin-block: 14px 22px; max-width: 520px; }
.form-points { display: grid; gap: 12px; margin-bottom: 26px; }
.form-points li { display: flex; align-items: flex-start; gap: 11px; color: #000000; font-weight: 500; }
.form-points li svg { width: 20px; height: 20px; flex: none; color: var(--color-gold-dark); margin-top: 2px; }

.contact-form {
  background: #ffffff; border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-md); border: 1px solid rgba(215,215,215,0.6);
  display: grid; gap: 16px;
}
.field { display: grid; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
.field label { font-family: var(--font-body); font-weight: 600; font-size: 0.85rem; color: var(--color-navy); letter-spacing: 0.01em; }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 0.98rem; color: #000000;
  background: var(--color-off-white); border: 1.5px solid var(--color-border);
  border-radius: var(--radius); padding: 12px 14px; transition: border-color .25s, box-shadow .25s, background .25s;
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: var(--color-text-light); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--color-gold); background: #ffffff;
  box-shadow: 0 0 0 3px var(--color-gold-soft);
}
.field--error input, .field--error textarea { border-color: #c0392b; background: #fff; }
.form-note { font-size: 0.85rem; color: var(--color-text-light); margin-top: 2px; text-align: center; }
.form-note--error { color: #c0392b; font-weight: 600; }

@media (min-width: 600px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .form-grid { grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 5vw, 72px); }
  .form-intro { position: sticky; top: 110px; }
}

/* ---------- Endereco / Escritorio ---------- */
.office { background: #ffffff; padding-block: clamp(56px, 8vw, 104px); }
.office-grid { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 52px); align-items: center; }
.office__title { color: #0c0c0c; font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-block: 14px 16px; max-width: 16ch; }
.office__desc { color: #000000; font-size: 1.05rem; max-width: 520px; margin-bottom: 26px; }
.office .eyebrow { color: var(--color-gold-dark); }

.office-address { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 26px; }
.office-address__icon {
  flex: none; width: 44px; height: 44px; border-radius: var(--radius);
  display: grid; place-items: center; background: var(--color-gold-soft); color: var(--color-gold-dark);
}
.office-address__icon svg { width: 22px; height: 22px; }
.office-address strong { display: block; font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; color: #0c0c0c; margin-bottom: 4px; }
.office-address span { display: block; color: #000000; font-size: 0.98rem; line-height: 1.5; }

.office-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.office-btn {
  display: inline-flex; align-items: center; gap: 9px; padding: 12px 20px;
  border-radius: var(--radius); font-family: var(--font-body); font-weight: 700; font-size: 0.92rem;
  transition: transform .3s var(--ease), box-shadow .3s, background .3s, color .3s;
}
.office-btn svg { width: 18px; height: 18px; flex: none; }
.office-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.office-btn--maps { background: var(--color-navy); color: #ffffff; }
.office-btn--maps:hover { background: var(--color-navy-light); }
.office-btn--waze { background: var(--color-gold); color: var(--color-navy); }
.office-btn--waze:hover { background: var(--color-gold-dark); }

.office-map {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  border: 1px solid rgba(215,215,215,0.6); min-height: 320px; background: var(--color-off-white);
}
.office-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

@media (min-width: 900px) {
  .office-grid { grid-template-columns: 1fr 1fr; }
  .office-map { min-height: 380px; }
  .office-map iframe { min-height: 400px; }
}

/* ============================================================
   REVISAO R4 — marca dagua, hovers premium, form fixo,
   alinhamentos, menu mobile a direita, whatsapp so icone
   ============================================================ */

/* --- Quem Somos: marca dagua discreta --- */
.section--watermark { position: relative; overflow: hidden; }
.section-watermark {
  position: absolute; top: 50%; right: -40px; transform: translateY(-50%);
  width: clamp(280px, 36vw, 500px); pointer-events: none; z-index: 0; opacity: 0.06;
}
.section-watermark img { width: 100%; height: auto; display: block; filter: saturate(0.55); }
.section--watermark .container { position: relative; z-index: 1; }
@media (max-width: 760px) {
  .section-watermark { right: -22%; top: 9%; transform: none; width: 64%; opacity: 0.05; }
}

/* --- Como funciona: steps premium (icone + numero) --- */
.step { counter-increment: step; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s ease; }
.step__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.step__icon {
  width: 50px; height: 50px; border-radius: var(--radius); display: grid; place-items: center;
  background: var(--color-gold-soft); color: var(--color-gold-dark);
  transition: transform .4s var(--ease), background .35s ease, color .35s ease;
}
.step__icon svg { width: 25px; height: 25px; }
.step__num { font-family: var(--font-display); font-weight: 400; font-size: 2rem; line-height: 1; color: var(--color-border); transition: color .35s ease; }
.step__num::before { content: counter(step, decimal-leading-zero); }
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--color-gold); }
.step:hover .step__icon { background: var(--color-gold); color: #ffffff; transform: scale(1.08) rotate(-4deg); }
.step:hover .step__num { color: var(--color-gold); }
.step:hover .step__title { color: var(--color-gold-dark); }

/* --- Estrutura: features premium hover --- */
.feature { transition: transform .4s var(--ease), border-color .4s ease, background .4s ease, box-shadow .4s ease; }
.feature__icon { transition: transform .4s var(--ease), background .35s ease, color .35s ease; }
.feature:hover { transform: translateY(-6px); border-color: var(--color-gold); background: rgba(247,245,242,0.05); box-shadow: 0 18px 44px rgba(0,0,0,0.30); }
.feature:hover .feature__icon { background: var(--color-gold); color: var(--color-navy); transform: scale(1.1) rotate(-4deg); }
.feature:hover .feature__title { color: var(--color-gold); }

/* --- Resultados: benefits premium hover --- */
.benefit { transition: transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease, background .35s ease; }
.benefit__icon { transition: transform .4s var(--ease), background .35s ease, color .35s ease; }
.benefit:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--color-gold); background: #ffffff; }
.benefit:hover .benefit__icon { background: var(--color-gold); color: #ffffff; transform: scale(1.12) rotate(-5deg); }

/* --- Quem somos: auth-card icon hover --- */
.auth-card__icon { transition: transform .4s var(--ease), background .35s ease, color .35s ease; }
.auth-card:hover .auth-card__icon { background: var(--color-gold); color: #ffffff; transform: scale(1.08) rotate(-4deg); }

/* --- Fale com a gente: formulario fixo no desktop --- */
@media (min-width: 900px) {
  .form-intro { position: static; }
  .contact-form { position: sticky; top: 100px; }
}

/* --- Onde estamos: alinhar o icone do endereco --- */
.office-address { align-items: center; }

/* --- Responsivo: botao do menu (hamburguer) na lateral direita --- */
@media (max-width: 1199px) {
  .header__actions { margin-left: auto; }
}

/* --- WhatsApp flutuante: somente o icone em todas as telas --- */
.float-whatsapp { padding: 0; width: 58px; height: 58px; justify-content: center; border-radius: 50%; }
.float-whatsapp span { display: none !important; }
.float-whatsapp__pulse { border-radius: 50%; }
.float-whatsapp svg { width: 26px; height: 26px; }

/* ============================================================
   REVISAO R5 — Quem Somos com logotipo premium ao lado do texto
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr; gap: clamp(34px, 5vw, 64px); align-items: center; }
.about-content .section__lead { margin-bottom: 18px; }
.about-content .about__intro { color: #000000; font-size: 1.05rem; line-height: 1.7; margin-bottom: 30px; }
.about-content .btn { margin-top: 4px; }

.about-visual { display: flex; justify-content: center; }
.about-logo {
  position: relative; width: min(380px, 78%); aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 42%, rgba(63,169,245,0.18), rgba(7,30,51,0.05) 58%, transparent 72%);
}
.about-logo::before {
  content: ""; position: absolute; inset: 6%; border-radius: 50%;
  border: 1px solid rgba(7,30,51,0.08);
}
.about-logo::after {
  content: ""; position: absolute; inset: 17%; border-radius: 50%;
  border: 1px dashed rgba(191,152,96,0.40); animation: spinSlow 44s linear infinite;
}
.about-logo img {
  position: relative; z-index: 1; width: 58%; height: auto;
  filter: drop-shadow(0 22px 46px rgba(7,30,51,0.22));
  animation: floatLogo 4.2s ease-in-out infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1.12fr 0.88fr; }
}
