/* =========================================================
   PARAGUAIANDO - Estilos principais
   Paleta: Vermelho #D52B1E | Branco #FFFFFF | Azul #0038A8
   ========================================================= */

:root {
  --rojo: #D52B1E;
  --rojo-dark: #A8201A;
  --azul: #0038A8;
  --azul-dark: #002A82;
  --blanco: #FFFFFF;
  --negro: #0a0a0a;
  --gris-1: #f6f6f8;
  --gris-2: #e6e6ec;
  --gris-3: #8a8a96;
  --gris-4: #2a2a30;
  --shadow-soft: 0 10px 30px rgba(0,0,0,.12);
  --shadow-strong: 0 20px 60px rgba(0,0,0,.25);
  --gradient-pgy: linear-gradient(135deg, #D52B1E 0%, #FFFFFF 50%, #0038A8 100%);
  --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #15151c 50%, #0a0a0a 100%);
  --gradient-hero: linear-gradient(120deg, rgba(213,43,30,.92) 0%, rgba(0,0,0,.85) 50%, rgba(0,56,168,.92) 100%);
  --transition: .35s cubic-bezier(.4,.0,.2,1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--blanco);
  background: var(--negro);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ========== BACKGROUND TEMÁTICO PARAGUAI ========== */
.bg-paraguay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 20%, rgba(213,43,30,.18), transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(0,56,168,.18), transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.03), transparent 60%),
    var(--gradient-dark);
}
.bg-paraguay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .5;
}

/* Aviões flutuando no fundo */
.bg-paraguay::after {
  content: '✈';
  position: absolute;
  font-size: 60px;
  color: rgba(213,43,30,.06);
  top: 15%;
  left: 80%;
  animation: floatPlane 24s linear infinite;
}
@keyframes floatPlane {
  0%   { transform: translate(0, 0) rotate(15deg); opacity: .06; }
  50%  { transform: translate(-60vw, 20vh) rotate(15deg); opacity: .1; }
  100% { transform: translate(-120vw, -10vh) rotate(15deg); opacity: 0; }
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(10,10,10,.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all var(--transition);
}
.header.scrolled {
  padding: .6rem 0;
  background: rgba(10,10,10,.92);
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
}
.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.header__logo img { height: 46px; transition: transform var(--transition); }
.header__logo:hover img { transform: scale(1.08) rotate(-5deg); }
.header__logo span {
  font-weight: 900;
  font-size: 1.4rem;
  font-style: italic;
  letter-spacing: .5px;
  background: linear-gradient(90deg, #D52B1E, #FFFFFF, #0038A8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; gap: 1.6rem; }
.nav__link {
  position: relative;
  font-weight: 500;
  font-size: .95rem;
  padding: .4rem 0;
  transition: color var(--transition);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--rojo), var(--azul));
  transition: width var(--transition);
}
.nav__link:hover, .nav__link.active { color: #fff; }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

.nav__cta {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  padding: .65rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 4px 14px rgba(37,211,102,.4);
  transition: all var(--transition);
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.6);
}

.nav__toggle {
  display: none;
  width: 38px;
  height: 38px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all var(--transition);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
}
.hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1rem;
  background: rgba(213,43,30,.15);
  border: 1px solid rgba(213,43,30,.3);
  border-radius: 999px;
  font-size: .85rem;
  color: #ff8a82;
  margin-bottom: 1.5rem;
  animation: fadeUp .8s ease both;
}
.hero__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
  animation: fadeUp .8s .15s ease both;
}
.hero__title .gradient-text {
  background: linear-gradient(90deg, #D52B1E 0%, #FFFFFF 50%, #4d83ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  max-width: 540px;
  margin-bottom: 2.5rem;
  animation: fadeUp .8s .3s ease both;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp .8s .45s ease both;
}
.hero__stats {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 2rem;
  animation: fadeUp .8s .6s ease both;
}
.hero__stat {
  padding-right: 2rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.hero__stat:last-child { border-right: none; padding-right: 0; }
.hero__stat strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--rojo), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__stat span {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero visual - mapa do Paraguai animado */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeIn 1.2s .3s ease both;
}
.hero__visual::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(213,43,30,.2) 0%, transparent 65%);
  filter: blur(40px);
  animation: pulseGlow 4s ease-in-out infinite;
}
.hero__visual img {
  max-width: 400px;
  filter: drop-shadow(0 20px 50px rgba(0,56,168,.3));
  animation: floatUp 6s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
.hero__plane {
  position: absolute;
  top: 10%;
  right: 5%;
  font-size: 3rem;
  color: var(--rojo);
  animation: planeFly 8s linear infinite;
  z-index: 2;
  text-shadow: 0 5px 20px rgba(213,43,30,.5);
}
@keyframes planeFly {
  0%   { transform: translate(0, 0) rotate(15deg); }
  50%  { transform: translate(-100px, 60px) rotate(25deg); }
  100% { transform: translate(0, 0) rotate(15deg); }
}
@keyframes pulseGlow {
  0%, 100% { opacity: .5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounceDown 2s ease-in-out infinite;
}
.scroll-indicator::after {
  content: '';
  display: block;
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, var(--rojo), transparent);
  margin: .8rem auto 0;
}
@keyframes bounceDown {
  0%, 100% { transform: translate(-50%, 0); opacity: .5; }
  50% { transform: translate(-50%, 10px); opacity: 1; }
}

/* ========== BOTÕES ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: linear-gradient(135deg, var(--rojo), var(--rojo-dark));
  color: #fff;
  box-shadow: 0 8px 24px rgba(213,43,30,.35);
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fff2, transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(213,43,30,.55); }
.btn--primary:hover::before { opacity: 1; }

.btn--whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
}
.btn--whatsapp:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(37,211,102,.6); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-3px);
}

.btn--blue {
  background: linear-gradient(135deg, var(--azul), var(--azul-dark));
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,56,168,.4);
}
.btn--blue:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0,56,168,.6); }

/* ========== SECTIONS GENERICAS ========== */
.section {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.section__eyebrow {
  display: inline-block;
  padding: .35rem 1rem;
  background: rgba(0,56,168,.18);
  border: 1px solid rgba(77,131,255,.4);
  border-radius: 999px;
  color: #7ba1ff;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.section__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}
.section__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
}

/* Faixa Paraguai (divider entre seções) */
.flag-divider {
  height: 6px;
  background: linear-gradient(to right, var(--rojo) 0% 33%, #fff 33% 66%, var(--azul) 66% 100%);
  position: relative;
  overflow: hidden;
}
.flag-divider::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.6), transparent);
  animation: shine 4s ease-in-out infinite;
}
@keyframes shine {
  0% { left: -100%; }
  60%, 100% { left: 100%; }
}

/* ========== CARDS ========== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}
.card {
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 2.2rem;
  backdrop-filter: blur(12px);
  transition: all var(--transition);
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--rojo), #fff, var(--azul));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}
.card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
}
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--rojo), var(--azul));
  box-shadow: 0 10px 24px rgba(0,0,0,.3);
}
.card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: .8rem;
}
.card p { color: rgba(255,255,255,.7); font-size: .98rem; }
.card__link {
  display: inline-block;
  margin-top: 1.2rem;
  color: var(--rojo);
  font-weight: 700;
  font-size: .9rem;
  transition: gap var(--transition);
}
.card__link:hover { color: #ff8a82; }
.card__link::after {
  content: ' →';
  display: inline-block;
  transition: transform var(--transition);
}
.card__link:hover::after { transform: translateX(6px); }

/* ========== PROCESSO / TIMELINE ========== */
.steps {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}
.steps::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--rojo), #fff, var(--azul));
  border-radius: 3px;
}
.step {
  position: relative;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
}
.step__number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rojo), var(--azul));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  border: 4px solid var(--negro);
  box-shadow: 0 10px 24px rgba(0,0,0,.4);
  position: relative;
  z-index: 2;
}
.step__content {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 1.8rem 2rem;
  border-radius: 18px;
  transition: all var(--transition);
}
.step__content:hover {
  background: rgba(255,255,255,.08);
  transform: translateX(6px);
}
.step h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.step p { color: rgba(255,255,255,.7); }

/* ========== DOCUMENTOS LISTA ========== */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.doc-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all var(--transition);
}
.doc-item:hover {
  background: rgba(213,43,30,.08);
  border-color: rgba(213,43,30,.3);
  transform: translateY(-4px);
}
.doc-item__check {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--rojo), var(--azul));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
}
.doc-item h4 { font-size: 1.05rem; margin-bottom: .3rem; }
.doc-item p { color: rgba(255,255,255,.65); font-size: .92rem; }

/* ========== PRICING ========== */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.price-card {
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  padding: 2.5rem 2rem;
  transition: all var(--transition);
}
.price-card.featured {
  background: linear-gradient(180deg, rgba(213,43,30,.15), rgba(0,56,168,.15));
  border: 1.5px solid var(--rojo);
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(213,43,30,.25);
}
.price-card.featured::before {
  content: 'MAIS POPULAR';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--rojo), var(--azul));
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: .35rem .9rem;
  border-radius: 999px;
}
.price-card:hover { transform: translateY(-8px); box-shadow: 0 25px 60px rgba(0,0,0,.5); }
.price-card.featured:hover { transform: scale(1.03) translateY(-8px); }
.price-card h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.price-card .price {
  font-size: 3rem;
  font-weight: 900;
  margin: 1.2rem 0;
  background: linear-gradient(135deg, var(--rojo), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-card .price small { font-size: 1rem; color: rgba(255,255,255,.5); }
.price-card ul { margin: 1.5rem 0 2rem; }
.price-card li {
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.8);
  display: flex;
  gap: .6rem;
  align-items: center;
}
.price-card li::before {
  content: '✓';
  color: var(--rojo);
  font-weight: 900;
}

/* ========== DEPOIMENTOS ========== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.8rem;
}
.testimonial {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 2rem;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px; left: 18px;
  font-size: 6rem;
  color: var(--rojo);
  opacity: .25;
  line-height: 1;
}
.testimonial p { font-style: italic; color: rgba(255,255,255,.85); margin-bottom: 1.5rem; }
.testimonial__author { display: flex; align-items: center; gap: .8rem; }
.testimonial__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rojo), var(--azul));
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: #fff;
}
.testimonial__name { font-weight: 700; font-size: .95rem; }
.testimonial__role { font-size: .82rem; color: rgba(255,255,255,.55); }

/* ========== FAQ ========== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  margin-bottom: .9rem;
  overflow: hidden;
}
.faq-question {
  padding: 1.3rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,.05); }
.faq-question::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--rojo);
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0 1.6rem;
  color: rgba(255,255,255,.75);
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.4rem;
}

/* ========== CTA SECTION ========== */
.cta-banner {
  background: linear-gradient(135deg, rgba(213,43,30,.2), rgba(0,56,168,.2));
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 28px;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(213,43,30,.3), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(0,56,168,.3), transparent 60%);
  z-index: 0;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 1rem;
}
.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ========== FOOTER ========== */
.footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 4rem 0 1.5rem;
  position: relative;
}
.footer__top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand img { height: 50px; margin-bottom: 1rem; }
.footer__brand p { color: rgba(255,255,255,.6); font-size: .95rem; max-width: 320px; }
.footer__brand .social {
  display: flex;
  gap: .8rem;
  margin-top: 1.5rem;
}
.footer__brand .social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition);
}
.footer__brand .social a:hover {
  background: linear-gradient(135deg, var(--rojo), var(--azul));
  transform: translateY(-3px);
}
.footer__col h4 {
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
  color: rgba(255,255,255,.95);
}
.footer__col ul li { margin-bottom: .7rem; }
.footer__col a {
  color: rgba(255,255,255,.6);
  font-size: .92rem;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--rojo); }
.footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
  color: rgba(255,255,255,.45);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 10px 30px rgba(37,211,102,.45);
  transition: all var(--transition);
  animation: bounceMild 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(37,211,102,.7);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: ripple 1.8s ease-out infinite;
}
@keyframes ripple {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes bounceMild {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ========== ANIMAÇÕES SCROLL FADE ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--left { transform: translateX(-50px); }
.reveal--left.is-visible { transform: translateX(0); }
.reveal--right { transform: translateX(50px); }
.reveal--right.is-visible { transform: translateX(0); }
.reveal--scale { transform: scale(.92); }
.reveal--scale.is-visible { transform: scale(1); }

/* Stagger delays */
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }
.reveal[data-delay="5"] { transition-delay: .5s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ========== PÁGINA HEADER (subtítulos) ========== */
.page-header {
  padding: 10rem 0 5rem;
  background: linear-gradient(180deg, rgba(213,43,30,.12), transparent);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--rojo) 0% 33%, #fff 33% 66%, var(--azul) 66% 100%);
}
.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.page-header p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.7);
  max-width: 700px;
  margin: 0 auto;
}
.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.breadcrumbs a:hover { color: var(--rojo); }
.breadcrumbs span { opacity: .5; }

/* ========== TABELA ========== */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,.03);
  border-radius: 16px;
  overflow: hidden;
}
.compare-table th, .compare-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.compare-table th {
  background: rgba(213,43,30,.15);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .85rem;
  letter-spacing: 1px;
}
.compare-table tr:hover { background: rgba(255,255,255,.04); }

/* ========== CONTATO ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info { display: grid; gap: 1.5rem; }
.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 1.4rem;
  border-radius: 16px;
  transition: all var(--transition);
}
.contact-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(213,43,30,.3);
}
.contact-card__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--rojo), var(--azul));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.contact-card h4 { margin-bottom: .3rem; }
.contact-card p { color: rgba(255,255,255,.7); font-size: .92rem; }

.contact-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 2rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: .5rem;
  color: rgba(255,255,255,.7);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: .9rem 1rem;
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  color: #fff;
  font-size: .95rem;
  font-family: inherit;
  transition: all var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--rojo);
  background: rgba(0,0,0,.5);
  box-shadow: 0 0 0 4px rgba(213,43,30,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ========== EQUIPE ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
}
.team-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-8px); border-color: rgba(213,43,30,.3); }
.team-card__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rojo), var(--azul));
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  border: 3px solid rgba(255,255,255,.1);
}
.team-card h4 { margin-bottom: .3rem; }
.team-card span { color: rgba(255,255,255,.55); font-size: .88rem; }

/* ========== ABOUT/MISSÃO COM IMAGEM ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-grid h2 { font-size: 2.4rem; line-height: 1.15; margin-bottom: 1.3rem; }
.about-grid p { color: rgba(255,255,255,.75); margin-bottom: 1rem; }
.about-grid__image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(213,43,30,.2), rgba(0,56,168,.2));
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.1);
}
.about-grid__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.1), transparent);
}

/* ========== RESPONSIVO ========== */
@media (max-width: 980px) {
  .hero__inner, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .price-card.featured { transform: none; }
}

@media (max-width: 720px) {
  .nav__list { display: none; }
  .nav__toggle { display: flex; }
  .nav { gap: 1rem; }
  .nav__cta { display: none; }

  .nav__list.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10,10,10,.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .hero { padding: 7rem 0 3rem; }
  .hero__stats { grid-template-columns: 1fr; gap: 1rem; }
  .hero__stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 1rem; }
  .hero__stat:last-child { border-bottom: none; }

  .section { padding: 4rem 0; }
  .section__header { margin-bottom: 2.5rem; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .step { grid-template-columns: 60px 1fr; gap: 1rem; }
  .step__number { width: 56px; height: 56px; font-size: 1.2rem; }
  .steps::before { left: 28px; }

  .whatsapp-float { width: 54px; height: 54px; bottom: 18px; right: 18px; font-size: 1.5rem; }

  .page-header { padding: 7rem 0 3rem; }
}

@media (max-width: 480px) {
  .header__inner { padding: 0 1rem; }
  .hero__title { font-size: 2.2rem; }
  .btn { padding: .85rem 1.3rem; font-size: .92rem; width: 100%; justify-content: center; }
  .hero__cta { flex-direction: column; width: 100%; }
}
