/* ============================================
   CÓDIGO DE IMAGEM — Premium Corporate Styles
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0a0a;
  color: #e5e5e5;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
strong { font-weight: 600; color: #f5f5f5; }

/* --- VARIABLES --- */
:root {
  --black: #0a0a0a;
  --graphite: #1a1a1a;
  --graphite-light: #2a2a2a;
  --white: #f5f5f5;
  --gold: #c9a94e;
  --gold-light: #e0c66a;
  --gold-dark: #a88834;
  --text: #c8c8c8;
  --text-light: #999;
  --border: #2a2a2a;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
  --section-padding: 100px 24px;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* --- BG LINES --- */
.bg-lines {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 1px,
      rgba(201, 169, 78, 0.03) 1px,
      rgba(201, 169, 78, 0.03) 2px
    );
  background-size: 80px 100%;
}

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  border-bottom-color: rgba(201, 169, 78, 0.15);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--white);
}

.logo-mark {
  color: var(--gold);
  font-size: 1.4rem;
}

.logo-text {
  position: relative;
  display: inline-block;
}

.logo-text::before,
.logo-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.logo-text::before {
  color: #ff0055;
  z-index: -1;
  animation: glitch-shift 3s infinite linear alternate-reverse;
}

.logo-text::after {
  color: #00e5ff;
  z-index: -1;
  animation: glitch-shift 2s infinite linear alternate-reverse;
}

@keyframes glitch-shift {
  0%   { transform: translate(0); }
  20%  { transform: translate(-1px, 1px); }
  40%  { transform: translate(1px, -1px); }
  60%  { transform: translate(-1px, -1px); }
  80%  { transform: translate(1px, 1px); }
  100% { transform: translate(0); }
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}

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

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 24px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  color: var(--gold) !important;
  transition: all var(--transition) !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold);
  color: var(--black) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

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

/* --- SECTION COMMON --- */
.section {
  position: relative;
  z-index: 1;
  padding: var(--section-padding);
}

.section-header {
  margin-bottom: 64px;
}

.section-number {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.6;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.section-subtitle {
  margin-top: 20px;
  font-size: 1rem;
  color: var(--text);
  max-width: 720px;
  line-height: 1.7;
}

/* ====== HERO ====== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 78, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100px;
}

.badge-dark {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.badge-gold {
  background: rgba(201, 169, 78, 0.1);
  color: var(--gold);
  border: 1px solid rgba(201, 169, 78, 0.25);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-title-highlight {
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: 0 4px 20px rgba(201, 169, 78, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 78, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }
.btn-lg { padding: 18px 40px; font-size: 0.9rem; }

/* --- HERO VISUAL --- */
.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -40px;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 78, 0.08);
  animation: ringPulse 6s ease-in-out infinite;
}

.hero-ring-1 { width: 400px; height: 400px; animation-delay: 0s; }
.hero-ring-2 { width: 540px; height: 540px; animation-delay: 1.5s; }
.hero-ring-3 { width: 680px; height: 680px; animation-delay: 3s; }

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.05); opacity: 0.2; }
}

.hero-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: cardFloat 5s ease-in-out infinite;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.hero-card-icon {
  color: var(--gold);
  font-size: 1.1rem;
}

.hero-card-1 { top: 10%; left: 5%; animation-delay: 0s; }
.hero-card-2 { top: 45%; right: 0; animation-delay: 1.5s; }
.hero-card-3 { bottom: 10%; left: 10%; animation-delay: 3s; }

.hero-image-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.hero-image {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(201, 169, 78, 0.2);
  box-shadow: 0 0 60px rgba(201, 169, 78, 0.08);
  animation: heroImageFloat 7s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.hero-image-glitch {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-glitch::before,
.hero-image-glitch::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: url('Will.jpeg') center / cover no-repeat;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
}

.hero-image-glitch::before {
  animation: glitch-flick 6s infinite step-end;
}

.hero-image-glitch::after {
  animation: glitch-flick 6s infinite step-end 0.5s;
}

@keyframes glitch-flick {
  0%, 95%, 100% { opacity: 0; }
  96% { opacity: 1; clip-path: inset(0 0 70% 0); transform: translate(-3px, -2px); filter: hue-rotate(90deg) brightness(1.4); }
  97% { opacity: 1; clip-path: inset(30% 0 40% 0); transform: translate(3px, 1px); filter: hue-rotate(270deg) brightness(0.8); }
  98% { opacity: 1; clip-path: inset(70% 0 0 0); transform: translate(-2px, 3px); filter: saturate(3); }
  99% { opacity: 1; clip-path: inset(15% 0 55% 0); transform: translate(2px, -3px); filter: hue-rotate(180deg) saturate(0); }
}

@keyframes heroImageFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.02); }
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ====== MANIFESTO ====== */
.manifesto {
  background: linear-gradient(180deg, var(--black) 0%, var(--graphite) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.manifesto-body {
  max-width: 800px;
}

.manifesto-text {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
}

.manifesto-quote {
  margin: 48px 0;
  padding: 40px 48px;
  border-left: 3px solid var(--gold);
  background: rgba(201, 169, 78, 0.03);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}

.manifesto-quote span {
  color: var(--gold);
  font-style: normal;
}

/* ====== PRIMEIRA IMPRESSÃO ====== */
.primeira-impressao {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.primeira-impressao-body {
  max-width: 800px;
}

/* ====== PILARES ====== */
.pilares {
  background: var(--black);
}

.pilares-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.pilar-card {
  padding: 36px 28px;
  background: var(--graphite);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.pilar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.pilar-card:hover {
  border-color: rgba(201, 169, 78, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.pilar-card:hover::before { opacity: 1; }

.pilar-card-featured {
  border-color: rgba(201, 169, 78, 0.15);
  background: linear-gradient(180deg, rgba(201, 169, 78, 0.04), var(--graphite));
}

.pilar-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--gold);
}

.pilar-icon svg {
  width: 100%;
  height: 100%;
}

.pilar-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 600;
}

.pilar-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}

/* ====== RETORNO ====== */
.retorno {
  background: var(--graphite);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.retorno-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.retorno-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.retorno-item:hover {
  border-color: rgba(201, 169, 78, 0.15);
  background: rgba(201, 169, 78, 0.02);
}

.retorno-item-full {
  grid-column: 1 / -1;
}

.retorno-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  color: var(--gold);
}

.retorno-icon svg {
  width: 100%;
  height: 100%;
}

.retorno-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 600;
}

.retorno-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}

/* ====== PLANOS ====== */
.planos {
  background: var(--black);
}

.planos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.plano-card {
  position: relative;
  padding: 48px 36px;
  background: var(--graphite);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.plano-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.plano-card-featured {
  border-color: rgba(201, 169, 78, 0.3);
  background: linear-gradient(180deg, rgba(201, 169, 78, 0.04), var(--graphite));
  box-shadow: 0 0 40px rgba(201, 169, 78, 0.05);
}

.plano-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100px;
}

.plano-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.plano-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 600;
}

.plano-features {
  flex: 1;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plano-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
}

.plano-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 78, 0.12);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
}

.plano-pricing {
  margin-bottom: 28px;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.plano-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
}

.plano-currency {
  font-size: 1.2rem;
  vertical-align: super;
  margin-right: 4px;
  color: var(--gold);
}

.plano-period {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 400;
  margin-left: 4px;
}

.plano-per-prof {
  display: block;
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ====== DIRETRIZ ====== */
.diretriz {
  background: var(--graphite);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.diretriz-content {
  max-width: 800px;
}

.diretriz-text {
  margin-top: 24px;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
}

/* ====== CTA FINAL ====== */
.cta-final {
  background: var(--black);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-bottom: 120px;
}

.cta-final-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-final-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-final-text {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-final-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

/* ====== FOOTER ====== */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--black);
  padding: 48px 24px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-brand {
  text-align: center;
}

.footer-logo-glitch {
  display: inline-block;
}

.footer-logo-img {
  display: block;
  max-height: 180px;
  width: auto;
  margin: 0 auto 16px;
  animation: glitch-filter 4s infinite steps(1);
}

@keyframes glitch-filter {
  0%, 90%, 100% { filter: none; }
  92% { filter: hue-rotate(90deg) brightness(1.3); transform: translate(-1px); }
  94% { filter: hue-rotate(270deg) brightness(0.8); transform: translate(1px); }
  96% { filter: saturate(3) brightness(1.2); transform: translate(-1px, 1px); }
  98% { filter: hue-rotate(180deg) saturate(0); transform: translate(1px, -1px); }
}

.footer-tagline {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

/* ====== SCROLL ANIMATIONS ====== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions { justify-content: center; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-badges { justify-content: center; }

  .hero-visual {
    height: 360px;
    order: -1;
    margin-top: 0;
  }

  .hero-image { width: 240px; height: 240px; }
  .hero-ring-1 { width: 240px; height: 240px; }
  .hero-ring-2 { width: 320px; height: 320px; }
  .hero-ring-3 { width: 400px; height: 400px; }

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

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

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 20px;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .menu-toggle { display: flex; }

  .hero { padding-top: 100px; }
  .hero-visual { height: 280px; }

  .hero-image { width: 180px; height: 180px; }
  .hero-ring-1 { width: 180px; height: 180px; }
  .hero-ring-2 { width: 250px; height: 250px; }
  .hero-ring-3 { width: 320px; height: 320px; }

  .hero-card {
    font-size: 0.65rem;
    padding: 8px 14px;
  }

  .hero-card-1 { top: 2%; left: 0; }
  .hero-card-2 { top: auto; bottom: 5%; right: 0; left: auto; }
  .hero-card-3 { display: none; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 360px; }

  .manifesto-quote {
    padding: 28px 24px;
    margin: 32px 0;
  }

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

  .plano-card { padding: 36px 24px; }

  .cta-final-actions .btn { width: 100%; }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .hero-badges { flex-direction: column; align-items: center; }

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

  .hero-visual { height: 220px; }
  .hero-image { width: 140px; height: 140px; }
  .hero-ring-1 { width: 140px; height: 140px; }
  .hero-ring-2 { width: 200px; height: 200px; }
  .hero-ring-3 { width: 260px; height: 260px; }

  .hero-card-1 { top: 0; left: 0; }
  .hero-card-2 { top: auto; bottom: 0; right: 0; left: auto; }
  .hero-card-3 { display: none; }
}
