/* ============================================================
   CONTABILONLINE — Design System
   Paleta: Navy profundo + Dourado heraldic + Branco clean
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --navy:        #0d1f3c;
  --navy-mid:    #1a3560;
  --navy-light:  #2a4a7f;
  --gold:        #c9a84c;
  --gold-light:  #e8d08a;
  --gold-dark:   #a07a28;
  --teal:        #1a8c7a;
  --teal-light:  #25b09a;
  --white:       #ffffff;
  --gray-50:     #f9fafb;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-400:    #9ca3af;
  --gray-600:    #4b5563;
  --gray-800:    #1f2937;
  --success:     #16a34a;
  --warning:     #d97706;
  --danger:      #dc2626;

  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans:  'Inter', system-ui, sans-serif;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(13,31,60,.12);
  --shadow-lg:  0 10px 40px rgba(13,31,60,.18);
  --shadow-xl:  0 20px 60px rgba(13,31,60,.25);
  --shadow-gold: 0 4px 20px rgba(201,168,76,.25);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  --transition: .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY ── */
.font-serif { font-family: var(--ff-serif); }

h1, h2, h3 { font-family: var(--ff-serif); line-height: 1.22; }
h1 { font-size: clamp(1.9rem, 3.4vw, 2.65rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 700; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.25rem); font-weight: 600; line-height: 1.35; }

.text-gold    { color: var(--gold); }
.text-navy    { color: var(--navy); }
.text-teal    { color: var(--teal); }
.text-muted   { color: var(--gray-600); }
.text-center  { text-align: center; }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 84px 0; }
.section-sm { padding: 56px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.45rem, 2.5vw, 1.95rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.section-subtitle {
  font-size: .95rem;
  color: var(--gray-600);
  max-width: 580px;
  line-height: 1.65;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: .95rem;
  font-weight: 600;
  transition: all var(--transition);
  letter-spacing: .01em;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,.4);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,140,122,.3);
}
.btn-teal:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: .875rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.card-gold-border {
  border: 1px solid rgba(201,168,76,.3);
  position: relative;
}
.card-gold-border::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

/* ── GOLD DIVIDER ── */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
}
.gold-divider::before, .gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gold-divider-icon { color: var(--gold); font-size: 1.2rem; }

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
}
.badge-gold { background: rgba(201,168,76,.15); color: var(--gold-dark); border: 1px solid rgba(201,168,76,.4); }
.badge-teal { background: rgba(26,140,122,.12); color: var(--teal); border: 1px solid rgba(26,140,122,.3); }
.badge-navy { background: rgba(13,31,60,.08); color: var(--navy); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all .3s ease;
}
.navbar.scrolled {
  background: rgba(13,31,60,.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.navbar-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
}
.logo-tagline {
  font-size: .65rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-login {
  padding: 8px 18px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gold);
  border: 1.5px solid rgba(201,168,76,.5);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}
.nav-login:hover {
  background: rgba(201,168,76,.1);
  border-color: var(--gold);
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(26,53,96,.6) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(201,168,76,.08) 0%, transparent 60%),
    linear-gradient(135deg, #0d1f3c 0%, #0a1628 50%, #081320 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 2px 2px, rgba(201,168,76,.08) 1px, transparent 0);
  background-size: 40px 40px;
}

.hero-ornament {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  opacity: .04;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.4);
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.95rem, 3.6vw, 2.85rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-title .highlight {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  color: rgba(255,255,255,.78);
  line-height: 1.68;
  margin-bottom: 36px;
  max-width: 580px;
}

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

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-value {
  font-family: var(--ff-serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.62);
  margin-top: 4px;
  letter-spacing: .02em;
}

/* Shield decoration right side */
.hero-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero-shield-wrap {
  position: relative;
  animation: floatShield 6s ease-in-out infinite;
}
@keyframes floatShield {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* ── FEATURES ── */
.features { background: var(--gray-50); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  padding: 36px 28px;
  text-align: center;
}
.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  box-shadow: 0 8px 24px rgba(13,31,60,.2);
  transition: all var(--transition);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  transform: scale(1.1) rotate(-5deg);
}
.feature-icon svg { width: 32px; height: 32px; color: var(--white); }
.feature-card:hover .feature-icon svg { color: var(--navy); }
.feature-card h3 { color: var(--navy); margin-bottom: 12px; }
.feature-card p { color: var(--gray-600); font-size: .95rem; line-height: 1.7; }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.service-card {
  padding: 32px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
  transition: transform var(--transition);
}
.service-card:hover .service-card-icon { transform: scale(1.2); }
.service-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: .875rem; color: var(--gray-600); line-height: 1.6; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: gap var(--transition);
}
.service-card:hover .service-card-link { gap: 10px; }

/* ── PLANS ── */
.plans { background: var(--navy); }
.plans .section-title { color: var(--white); }
.plans .section-subtitle { color: rgba(255,255,255,.6); }

.plans-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 40px 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-full);
  padding: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.plans-tab {
  padding: 10px 28px;
  border-radius: var(--radius-full);
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
  cursor: pointer;
}
.plans-tab.active {
  background: var(--gold);
  color: var(--navy);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.plan-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
}
.plan-card:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-8px);
  border-color: rgba(201,168,76,.4);
}
.plan-card.featured {
  background: linear-gradient(135deg, rgba(201,168,76,.15), rgba(201,168,76,.05));
  border: 2px solid var(--gold);
  transform: scale(1.04);
}
.plan-card.featured:hover { transform: scale(1.04) translateY(-8px); }

.plan-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: var(--radius-full);
  letter-spacing: .05em;
  white-space: nowrap;
}

.plan-segment {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.plan-name {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.plan-price {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.plan-price-label { font-size: .8rem; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.plan-price-value {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.plan-price-currency { font-size: 1rem; font-weight: 600; color: var(--white); }
.plan-price-amount {
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.plan-price-period { font-size: .85rem; color: rgba(255,255,255,.5); }
.plan-price-consult {
  font-family: var(--ff-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold);
}

.plan-features { list-style: none; margin-bottom: 32px; }
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.team-card {
  text-align: center;
  padding: 36px 24px;
}
.team-photo-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
}
.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 3px var(--gold), var(--shadow-lg);
  transition: all var(--transition);
}
.team-photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border: 4px solid var(--white);
  box-shadow: 0 0 0 3px var(--gold), var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  transition: all var(--transition);
}
.team-card:hover .team-photo,
.team-card:hover .team-photo-placeholder {
  box-shadow: 0 0 0 4px var(--gold), var(--shadow-xl);
  transform: scale(1.05);
}
.team-card-name {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-card-role {
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-card-crc {
  display: inline-block;
  font-size: .72rem;
  color: var(--teal);
  background: rgba(26,140,122,.1);
  border: 1px solid rgba(26,140,122,.3);
  border-radius: var(--radius-full);
  padding: 2px 10px;
  margin-bottom: 12px;
}
.team-card-bio { font-size: .875rem; color: var(--gray-600); line-height: 1.6; }

/* ── TRUST BANNER ── */
.trust-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.trust-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(201,168,76,.06) 1px, transparent 0);
  background-size: 32px 32px;
}
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.trust-stat {
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.trust-stat:last-child { border-right: none; }
.trust-stat-value {
  font-family: var(--ff-serif);
  font-size: 2.05rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.trust-stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--teal) 0%, #0f6b5c 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,255,255,.08) 0%, transparent 70%);
}
.cta-section .section-title { color: var(--white); }
.cta-section p { color: rgba(255,255,255,.85); font-size: .98rem; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ── FOOTER ── */
.footer {
  background: #080f1c;
  color: rgba(255,255,255,.6);
}
.footer-top {
  padding: 72px 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand { }
.footer-logo-text .logo-name { font-size: 1.4rem; }
.footer-desc {
  font-size: .875rem;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
  color: rgba(255,255,255,.5);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,.3);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--gold); }
.footer-links a::before { content: '›'; color: var(--gold); font-size: 1rem; }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: all var(--transition);
  animation: pulseWa 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 32px rgba(37,211,102,.6);
  animation: none;
}
.whatsapp-float svg { width: 30px; height: 30px; }

@keyframes pulseWa {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,.45); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 12px rgba(37,211,102,.1); }
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: .1s; }
.stagger-2 { transition-delay: .2s; }
.stagger-3 { transition-delay: .3s; }
.stagger-4 { transition-delay: .4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .trust-stats { grid-template-columns: repeat(2, 1fr); }
  .trust-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .trust-stat:nth-child(2n) { border-right: none; }
}

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: scale(1); }
  .plan-card.featured:hover { transform: translateY(-8px); }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .hero-stats { gap: 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .trust-stats { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
