/* ============================================
   ORION GOLD & CO.
   Premium Institutional Website
   Aesthetic: Swiss private bank + Global refinery
   ============================================ */

/* --- Custom Properties --- */
:root {
  --green-deep: #0B1F14;
  --green-primary: #143322;
  --green-medium: #1A4A30;
  --green-light: #2A5E40;
  --gold: #C4A24A;
  --gold-light: #D4B86A;
  --gold-pale: #E8D9A8;
  --gold-glow: rgba(196, 162, 74, 0.12);
  --white: #FFFFFF;
  --off-white: #F7F5EF;
  --cream: #FAF8F2;
  --gray-100: #F0EDE6;
  --gray-200: #E0DCD4;
  --gray-300: #B0ADA6;
  --gray-400: #8A8780;
  --gray-500: #6B6860;
  --gray-600: #4A4840;
  --gray-700: #2A2820;
  --dark: #111110;

  --ff-heading: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --section-py: 120px;
  --container: 1200px;
  --nav-h: 80px;
}

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-500);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color .25s; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: 500;
  color: var(--green-deep);
  line-height: 1.15;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: clamp(1.05rem, 1.8vw, 1.25rem); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-py) 0; }
.section--dark { background: var(--green-deep); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: var(--gray-300); }
.section--cream { background: var(--cream); }
.section--gray { background: var(--gray-100); }

/* --- Section Header --- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-header p {
  max-width: 580px;
  margin: 20px auto 0;
  font-size: 1.02rem;
}

.gold-line {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--gold);
  padding: 15px 34px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all .25s;
}

.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 28px rgba(196,162,74,.3);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(196,162,74,.35);
  padding: 14px 30px;
  border-radius: 2px;
  transition: all .25s;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(196,162,74,.08);
}

.btn-primary--dark {
  color: var(--white);
  background: var(--green-primary);
}

.btn-primary--dark:hover {
  background: var(--green-medium);
  box-shadow: 0 6px 28px rgba(20,51,34,.3);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all .4s;
}

.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  transition: all .4s;
}

.nav.scrolled::before {
  background: rgba(11,31,20,.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 30px rgba(0,0,0,.12);
}

.nav__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo-mark {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -.02em;
}

.nav__logo-name {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: .02em;
}

.nav__logo-name span { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  transition: color .25s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s;
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta-link {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--gold);
  padding: 10px 22px;
  border-radius: 2px;
  transition: all .25s;
}

.nav__cta-link:hover {
  background: var(--gold-light);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all .3s;
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile overlay */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 998;
}

.nav__overlay.show { display: block; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--green-deep);
  overflow: hidden;
}

/* Decorative background */
.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 45%, rgba(196,162,74,.06) 0%, transparent 55%),
    linear-gradient(160deg, rgba(10,26,16,.88) 0%, rgba(11,31,20,.82) 40%, rgba(11,31,20,.92) 100%);
  z-index: 1;
}

/* Gold accent line */
.hero__accent {
  position: absolute;
  right: 12%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 15%, rgba(196,162,74,.18) 50%, transparent 85%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  padding-top: var(--nav-h);
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp .7s .4s forwards;
}

.hero__label::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.08;
  max-width: 780px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp .7s .6s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__subtitle {
  font-size: clamp(.95rem, 1.3vw, 1.1rem);
  color: var(--gray-300);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp .7s .8s forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp .7s 1s forwards;
}

.hero__stats {
  display: flex;
  gap: 48px;
  margin-top: 80px;
  padding-top: 36px;
  border-top: 1px solid rgba(196,162,74,.12);
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp .7s 1.2s forwards;
}

.hero__stat-number {
  font-family: var(--ff-heading);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.hero__stat-text {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 36px 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-bar__icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-bar__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.trust-bar__text {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* ============================================
   ABOUT
   ============================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(196,162,74,.12);
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.about__label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.about__content h2 { margin-bottom: 20px; }

.about__content p {
  font-size: .95rem;
  margin-bottom: 16px;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}

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

.about__feat-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.about__feat-text {
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-600);
}

/* ============================================
   SOLUTIONS
   ============================================ */
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.sol-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  padding: 44px 36px;
  overflow: hidden;
  transition: all .35s;
}

.sol-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}

.sol-card:hover {
  border-color: rgba(196,162,74,.3);
  box-shadow: 0 10px 40px rgba(0,0,0,.05);
  transform: translateY(-2px);
}

.sol-card:hover::before { transform: scaleX(1); }

.sol-card__num {
  font-family: var(--ff-heading);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 20px;
  opacity: .5;
}

.sol-card__icon {
  width: 50px;
  height: 50px;
  background: var(--gold-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.sol-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.sol-card h3 { margin-bottom: 14px; }

.sol-card p {
  font-size: .9rem;
  line-height: 1.75;
}

.sol-card__list {
  margin-top: 18px;
}

.sol-card__list li {
  font-size: .85rem;
  color: var(--gray-500);
  padding: 5px 0 5px 18px;
  position: relative;
}

.sol-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

/* ============================================
   PROCESS / TIMELINE
   ============================================ */
.process-flow {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}

/* Desktop timeline center line */
.process-flow__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), rgba(196,162,74,.15));
  transform: translateX(-50%);
}

.pf-step {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  margin-bottom: 40px;
  align-items: start;
}

.pf-step__content {
  padding: 28px 32px;
  border: 1px solid rgba(196,162,74,.1);
  border-radius: 4px;
  background: rgba(255,255,255,.03);
  transition: all .25s;
}

.pf-step__content:hover {
  border-color: rgba(196,162,74,.25);
  background: rgba(196,162,74,.03);
}

/* Alternate sides */
.pf-step:nth-child(odd) .pf-step__content { grid-column: 1; text-align: right; }
.pf-step:nth-child(odd) .pf-step__dot { grid-column: 2; }
.pf-step:nth-child(odd) .pf-step__spacer { grid-column: 3; }

.pf-step:nth-child(even) .pf-step__spacer { grid-column: 1; }
.pf-step:nth-child(even) .pf-step__dot { grid-column: 2; }
.pf-step:nth-child(even) .pf-step__content { grid-column: 3; text-align: left; }

.pf-step__dot {
  width: 42px;
  height: 42px;
  background: var(--green-deep);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  z-index: 2;
  margin: 0 20px;
}

.pf-step__title {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 6px;
}

.pf-step__desc {
  font-size: .88rem;
  color: var(--gray-400);
  line-height: 1.7;
}

.pf-step__spacer { content: ''; }

/* Mobile: linear layout */
.process-linear {
  display: none;
  max-width: 560px;
  margin: 0 auto;
}

.pl-step {
  display: flex;
  gap: 20px;
  padding-bottom: 36px;
  position: relative;
}

.pl-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 46px;
  bottom: 0;
  width: 1px;
  background: rgba(196,162,74,.18);
}

.pl-step__num {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--green-deep);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
}

.pl-step h4 { color: var(--white); margin-bottom: 4px; }
.pl-step p { font-size: .86rem; color: var(--gray-400); }

/* ============================================
   SECURITY / TRACEABILITY
   ============================================ */
.security__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sec-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  transition: all .35s;
}

.sec-card:hover {
  border-color: rgba(196,162,74,.3);
  box-shadow: 0 8px 32px rgba(0,0,0,.04);
  transform: translateY(-3px);
}

.sec-card__icon {
  width: 60px;
  height: 60px;
  background: var(--gold-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.sec-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.sec-card h4 { margin-bottom: 10px; }
.sec-card p { font-size: .86rem; line-height: 1.7; }

.security__banner {
  text-align: center;
  margin-top: 56px;
  padding: 44px 40px;
  background: var(--green-deep);
  border-radius: 4px;
}

.security__banner h3 { color: var(--white); margin-bottom: 10px; }

.security__banner p {
  color: var(--gray-400);
  max-width: 480px;
  margin: 0 auto 24px;
  font-size: .94rem;
}

/* ============================================
   BARS SHOWCASE
   ============================================ */
.bars__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.bars__content h2 { color: var(--white); margin-bottom: 18px; }

.bars__content p {
  color: var(--gray-300);
  margin-bottom: 16px;
  font-size: .94rem;
}

.bars__specs { margin-top: 32px; }

.bars__spec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(196,162,74,.1);
}

.bars__spec-label {
  font-size: .82rem;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.bars__spec-value {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  color: var(--gold);
}

.bars__image {
  aspect-ratio: 1;
  border: 1px solid rgba(196,162,74,.12);
  border-radius: 4px;
  overflow: hidden;
}

.bars__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ============================================
   AVALIE SUA JOIA
   ============================================ */
.avaliacao__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}

.avaliacao__content h2 { margin-bottom: 16px; }
.avaliacao__content > p { font-size: .94rem; margin-bottom: 14px; }

.avaliacao__steps {
  margin-top: 32px;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.avaliacao__step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.avaliacao__step-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: .95rem;
  font-weight: 600;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
}

.avaliacao__step strong {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 2px;
}

.avaliacao__step p {
  font-size: .85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.avaliacao__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* WhatsApp button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: #25d366;
  padding: 15px 30px;
  border-radius: 2px;
  transition: all .25s;
}

.btn-whatsapp:hover {
  background: #1fba59;
  box-shadow: 0 6px 24px rgba(37,211,102,.25);
  transform: translateY(-1px);
}

/* Card de avaliação */
.avaliacao__card {
  position: sticky;
  top: 100px;
}

.avaliacao__card-inner {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.04);
}

.avaliacao__card-header {
  background: var(--green-deep);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}

.avaliacao__card-header svg { stroke: var(--gold); flex-shrink: 0; }
.avaliacao__card-header h3 { color: var(--white); font-size: 1.2rem; }

.avaliacao__card-body {
  padding: 32px;
}

.avaliacao__card-body h4 {
  font-family: var(--ff-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.avaliacao__card-body ul li {
  font-size: .88rem;
  color: var(--gray-500);
  padding: 7px 0 7px 18px;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
}

.avaliacao__card-body ul li:last-child { border-bottom: none; }

.avaliacao__card-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.avaliacao__card-footer {
  padding: 20px 32px;
  background: var(--cream);
  border-top: 1px solid var(--gray-200);
}

.avaliacao__card-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--green-medium);
}

.avaliacao__card-badge svg { stroke: var(--green-medium); flex-shrink: 0; }

@media (max-width: 1024px) {
  .avaliacao__grid { grid-template-columns: 1fr; gap: 40px; }
  .avaliacao__card { position: static; }
}

@media (max-width: 480px) {
  .avaliacao__actions { flex-direction: column; align-items: stretch; }
  .btn-whatsapp { text-align: center; justify-content: center; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}

.contact__info h2 { margin-bottom: 16px; }
.contact__info > p { margin-bottom: 36px; font-size: .95rem; }

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact__detail-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: var(--gold-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__detail-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.contact__detail-text {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.contact__detail-text strong {
  display: block;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 2px;
}

.contact__map {
  width: 100%;
  height: 220px;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 28px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.8) contrast(1.05);
}

/* Form */
.contact__form-wrap {
  background: var(--cream);
  padding: 44px;
  border-radius: 4px;
  border: 1px solid var(--gray-200);
}

.contact__form-wrap h3 { margin-bottom: 6px; }
.contact__form-wrap > p { font-size: .88rem; margin-bottom: 28px; }

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: var(--ff-body);
  font-size: .92rem;
  color: var(--gray-700);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 2px;
  padding: 13px 14px;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-submit {
  width: 100%;
  font-family: var(--ff-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--gold);
  padding: 15px 28px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all .25s;
  margin-top: 6px;
}

.form-submit:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 18px rgba(196,162,74,.3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  padding: 72px 0 36px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer__logo-mark {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: .95rem;
  font-weight: 600;
  color: var(--gold);
}

.footer__logo-text {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
}

.footer__logo-text span { color: var(--gold); }

.footer__brand p {
  font-size: .86rem;
  color: var(--gray-400);
  max-width: 280px;
  line-height: 1.65;
}

.footer__col h4 {
  font-family: var(--ff-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer__col li { margin-bottom: 9px; }

.footer__col a {
  font-size: .85rem;
  color: var(--gray-400);
  transition: color .25s;
}

.footer__col a:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(196,162,74,.08);
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: .76rem;
  color: var(--gray-500);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  font-size: .76rem;
  color: var(--gray-500);
  transition: color .25s;
}

.footer__legal a:hover { color: var(--gold); }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}

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

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s cubic-bezier(.4,0,.2,1), transform .5s cubic-bezier(.4,0,.2,1);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: .1s; }
.stagger.visible > *:nth-child(3) { transition-delay: .2s; }
.stagger.visible > *:nth-child(4) { transition-delay: .3s; }
.stagger.visible > *:nth-child(5) { transition-delay: .35s; }
.stagger.visible > *:nth-child(6) { transition-delay: .4s; }
.stagger.visible > *:nth-child(7) { transition-delay: .45s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }

  .about__grid,
  .bars__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__image-wrap {
    aspect-ratio: 16/9;
    max-height: 340px;
    order: -1;
  }

  .solutions__grid { grid-template-columns: 1fr; }

  .security__grid { grid-template-columns: repeat(2, 1fr); }

  .process-flow { display: none; }
  .process-linear { display: block; }

  .footer__grid { grid-template-columns: 1fr 1fr; }

  .hero__stats { gap: 28px; }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  :root { --section-py: 60px; --nav-h: 64px; }

  /* Nav */
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    background: var(--green-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 32px 32px;
    gap: 0;
    transition: right .35s;
    box-shadow: -8px 0 30px rgba(0,0,0,.25);
    z-index: 999;
  }

  .nav__links.open { right: 0; }

  .nav__link {
    padding: 13px 0;
    font-size: .92rem;
    width: 100%;
    border-bottom: 1px solid rgba(196,162,74,.06);
  }

  .nav__cta-link {
    margin-top: 16px;
    width: 100%;
    display: block;
    text-align: center;
  }

  .nav__hamburger { display: flex; }

  /* Hero */
  .hero__stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero__stat {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .hero__stat-number {
    font-size: 1.8rem;
    min-width: 70px;
  }

  .hero__accent { display: none; }

  /* Trust */
  .trust-bar__inner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  /* About */
  .about__features { grid-template-columns: 1fr; }

  /* Security */
  .security__grid { grid-template-columns: 1fr; }

  /* Bars */
  .bars__image { aspect-ratio: 16/9; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }
}

@media (max-width: 480px) {
  :root { --section-py: 48px; }

  .hero { min-height: auto; padding: 120px 0 56px; }
  .hero__title { font-size: 2.1rem; }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary, .btn-outline {
    text-align: center;
    justify-content: center;
  }

  .sol-card { padding: 28px 22px; }
  .contact__form-wrap { padding: 28px 20px; }
  .section-header { margin-bottom: 36px; }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  z-index: 900;
  transition: all .25s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg { width: 24px; height: 24px; }
}

/* --- Print --- */
@media print {
  .nav, .hero__bg, .hero__actions, .contact__form-wrap, .footer { display: none; }
  .section { padding: 20px 0; }
  body { color: #000; background: #fff; }
}
