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

:root {
  --teal: #00B4C8;
  --teal-glow: rgba(0, 180, 200, 0.12);
  --teal-mid: #0CCFE6;
  --teal-dark: #007A88;
  --white: #ffffff;
  --off-white: #F8FAFA;
  --gray-100: #F2F5F5;
  --gray-200: #E2E8E9;
  --gray-400: #9AADB0;
  --gray-600: #4A6569;
  --dark: #0A1F24;
  --dark-mid: #0F2D34;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Figtree', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid rgba(0,180,200,0.15);
  transition: background 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  
}
.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
}

.nav-logo-text {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.3px;
}

.nav-logo-text span {
  color: var(--teal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.1px;
}

.nav-links a:hover { color: var(--dark); }

.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 100px !important;
  font-weight: 500 !important;
  font-size: 13.5px !important;
  transition: opacity 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  opacity: 0.88 !important;
  transform: scale(1.02) !important;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,180,200,0.18);
}

.hc1 { width: 600px; height: 600px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.hc2 { width: 900px; height: 900px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.hc3 { width: 1200px; height: 1200px; top: 50%; left: 50%; transform: translate(-50%,-50%); }

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  background: radial-gradient(circle, rgba(0,180,200,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.1s forwards;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 20px;
  height: 0.5px;
  background: var(--teal);
  opacity: 0.6;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--dark);
  max-width: 760px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s 0.25s forwards;
}

h1 em {
  font-style: italic;
  color: var(--teal);
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.9s 0.55s forwards;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  letter-spacing: 0.1px;
}

.btn-primary:hover { opacity: 0.85; transform: scale(1.02); }

.btn-ghost {
  color: var(--gray-600);
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--dark); }

.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(3px); }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s 1s forwards;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollPulse 2s infinite;
}

.scroll-text {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* ─── SECTION COMMONS ─── */
section {
  padding: 120px 48px;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--dark);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--teal);
}

.section-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 520px;
}

/* ─── SOBRE ─── */
#sobre {
  background: var(--off-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 32px;
  padding: 100px 80px;
  margin-top: -40px;
}

.sobre-visual {
  position: relative;
}

.sobre-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  border: 0.5px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.sobre-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
}

.sobre-stat {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 400;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}

.sobre-stat-label {
  font-size: 14px;
  color: var(--gray-400);
  font-weight: 300;
  margin-bottom: 28px;
}

.sobre-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 24px;
  border-top: 0.5px solid var(--gray-200);
}

.mini-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--dark);
  font-weight: 400;
}

.mini-stat-label {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 300;
  margin-top: 2px;
}

/* ─── METODOLOGIA ─── */
#metodologia {
  background: var(--dark);
  color: var(--white);
  max-width: 100%;
  padding: 120px 80px;
}

#metodologia .section-body {
  color: rgba(255,255,255,0.45);
}

.method-header {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}

.method-header .section-title {
  color: var(--white);
}

.method-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
}

.method-step {
  padding: 40px 36px;
  background: var(--dark-mid);
  transition: background 0.3s;
  position: relative;
}

.method-step:hover {
  background: rgba(0,180,200,0.05);
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: var(--teal);
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.step-letter {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0,180,200,0.12);
  border: 0.5px solid rgba(0,180,200,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 16px;
  font-family: 'Figtree', sans-serif;
}

.step-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  font-weight: 300;
}

/* ─── ENTREGAS ─── */
#entregas {
  max-width: 1100px;
  margin: 0 auto;
}

.entregas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.entrega-card {
  padding: 28px 24px;
  border: 0.5px solid var(--gray-200);
  border-radius: 16px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.entrega-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.entrega-card:hover {
  border-color: rgba(0,180,200,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,180,200,0.08);
}

.entrega-card:hover::after {
  transform: scaleX(1);
}

.entrega-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  color: var(--teal);
}

.entrega-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.entrega-desc {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.6;
  font-weight: 300;
}

/* ─── EQUIPE ─── */
#equipe {
  background: var(--gray-100);
  padding: 120px 80px;
}

.equipe-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.equipe-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.team-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  border: 0.5px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--teal-glow);
  border: 1px solid rgba(0,180,200,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
}

.team-name {
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.team-bio {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  font-weight: 300;
}

.team-quote {
  grid-column: 1 / -1;
  background: var(--dark);
  border-radius: 20px;
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--teal);
  line-height: 0.7;
  flex-shrink: 0;
  opacity: 0.5;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* ─── PLANOS ─── */
#planos {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 120px 48px;
}

#planos .section-label,
#planos .section-title,
#planos .section-body {
  margin-left: auto;
  margin-right: auto;
}

#planos .section-body {
  text-align: center;
  margin-bottom: 64px;
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.plano-card {
  border: 0.5px solid var(--gray-200);
  border-radius: 24px;
  padding: 40px 36px;
  position: relative;
  background: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
}

.plano-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.07);
}

.plano-card.featured {
  background: var(--dark);
  border-color: var(--dark);
}

.plano-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-glow);
  border: 0.5px solid rgba(0,180,200,0.3);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.plano-name {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
}

.plano-card.featured .plano-name {
  color: var(--white);
}

.plano-tagline {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1.5;
}

.plano-card.featured .plano-tagline {
  color: rgba(255,255,255,0.4);
}

.plano-price {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 4px;
  letter-spacing: -1px;
}

.plano-card.featured .plano-price {
  color: var(--teal);
}

.plano-price-note {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 32px;
  font-weight: 300;
}

.plano-divider {
  height: 0.5px;
  background: var(--gray-200);
  margin-bottom: 28px;
}

.plano-card.featured .plano-divider {
  background: rgba(255,255,255,0.1);
}

.plano-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.plano-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.5;
  font-weight: 300;
}

.plano-card.featured .plano-features li {
  color: rgba(255,255,255,0.6);
}

.feat-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal-glow);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.feat-check svg { width: 9px; height: 9px; }

.plano-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 100px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  border: 1px solid var(--gray-200);
  color: var(--dark);
  background: transparent;
}

.plano-card.featured .plano-btn {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.plano-btn:hover {
  opacity: 0.8;
  transform: scale(0.99);
}

/* ─── CONTATO ─── */
#contato {
  background: var(--dark);
  padding: 120px 80px;
  text-align: center;
}

#contato .section-label { color: var(--teal); }

#contato .section-title { color: var(--white); margin-left: auto; margin-right: auto; }

.contato-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 48px;
}

.contato-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 80px;
}

.btn-white {
  background: var(--white);
  color: var(--dark);
  padding: 15px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-white:hover { opacity: 0.9; transform: scale(1.02); }

.btn-outline-white {
  border: 0.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  padding: 15px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.contato-info {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding-top: 48px;
  border-top: 0.5px solid rgba(255,255,255,0.08);
}

.info-item {
  text-align: center;
}

.info-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 6px;
  font-weight: 400;
}

.info-value {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

.info-value a {
  color: var(--teal);
  text-decoration: none;
}

/* ─── FOOTER ─── */
footer {
  background: #050E10;
  padding: 28px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-logo-text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
}

.footer-logo-text strong { color: var(--teal); font-weight: 500; }

.footer-note {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  font-weight: 300;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  section { padding: 80px 24px; }
  #sobre { grid-template-columns: 1fr; padding: 60px 32px; margin-top: 0; border-radius: 0; }
  .method-header { grid-template-columns: 1fr; gap: 24px; }
  .method-steps { grid-template-columns: 1fr; }
  .entregas-grid { grid-template-columns: 1fr; }
  .equipe-header { grid-template-columns: 1fr; gap: 24px; }
  .team-grid { grid-template-columns: 1fr; }
  .planos-grid { grid-template-columns: 1fr; }
  .contato-info { flex-direction: column; gap: 24px; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
  #metodologia { padding: 80px 24px; }
  #equipe { padding: 80px 24px; }
  #contato { padding: 80px 24px; }
}