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

:root {
  --gold: #F5C842;
  --gold-light: #ffd84d;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --dark3: #222222;
  --white: #FFFFFF;
  --gray: #888888;
  --gray-light: #CCCCCC;
  --font-display: 'Inter', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245, 200, 66, 0.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-light);
  text-decoration: none;
  transition: color .2s;
}

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

.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 10px 22px;
  border-radius: 100px;
  text-decoration: none !important;
  transition: background .2s, transform .15s;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
  padding: 120px 5vw 80px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245, 200, 66, 0.07) 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(--gold);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 17px;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-checks li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-light);
}

.hero-checks li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(245, 200, 66, 0.15);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.hero-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-logos-label {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo-badge {
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-light);
}

/* ─── FORM CARD ─── */
.form-error {
  display: none;
  margin-bottom: 18px;
  padding: 14px 16px;

  background: rgba(255, 59, 59, 0.08);
  border: 1px solid rgba(255, 59, 59, 0.35);

  color: #ff4d4f;
  font-size: 14px;
  font-weight: 500;

  border-radius: 12px;
}

.input-error {
  border-color: #ff4d4f !important;
  outline: 2px solid rgba(255, 77, 79, 0.15) !important;
}

.hero-form-card {
  background: var(--dark2);
  border: 1px solid rgba(245, 200, 66, 0.2);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  /*background: var(--gold);*/
  border-radius: 20px 20px 0 0;
}

.form-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 24px;
}

.form-input {
  width: 100%;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  margin-bottom: 10px;
  outline: none;
  transition: border-color .2s;
}

.form-input::placeholder {
  color: var(--gray);
}

.form-input:focus {
  border-color: rgba(245, 200, 66, 0.5);
}

.form-select {
  width: 100%;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 10px;
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: border-color .2s;
}

.form-select:focus {
  border-color: rgba(245, 200, 66, 0.5);
  color: var(--white);
}

.btn-primary {
  display: block;
  width: 100%;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 15px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-top: 8px;
  text-align: center;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

/* ─── STATS ─── */
#stats {
  background: var(--dark2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 5vw;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -2px;
}

.stat-label {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.4;
}

/* ─── ADVISOR ─── */
#advisor {
  padding: 100px 5vw;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 80px;
  align-items: center;
}

.advisor-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.advisor-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.advisor-title em {
  font-style: normal;
  color: var(--gold);
}

.advisor-desc {
  font-size: 16px;
  color: var(--gray-light);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
  font-weight: 300;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid rgba(245, 200, 66, 0.5);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}

.btn-outline:hover {
  background: rgba(245, 200, 66, 0.1);
  border-color: var(--gold);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
}

.advisor-card {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.advisor-card-img {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #0d1b2a 0%, #1b2838 50%, #0f3460 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  position: relative;
}

.advisor-card-img-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advisor-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(transparent, var(--dark2));
}

.advisor-card-body {
  padding: 24px 28px 28px;
}

.advisor-card-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.advisor-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 4px;
}

.advisor-card-role {
  font-size: 14px;
  color: var(--gray);
  font-weight: 300;
}

/* ─── TESTIMONIALS ─── */
#depoimentos {
  padding: 100px 5vw;
  background: var(--dark2);
}

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

.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 2.8vw, 44px);
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.section-title em {
  font-style: normal;
  color: var(--gold);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.video-testi-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9/16;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.07);
  cursor: pointer;
  transition: border-color .2s, transform .2s;
}

.video-testi-card:hover {
  border-color: rgba(245, 200, 66, 0.25);
  transform: translateY(-4px);
}

.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center top;
  transition: opacity 0.25s ease;
}

.cover.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(0, 0, 0, 0.28);
  transition: opacity 0.25s ease;
}

.play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease;
  display: block;
}

.video-testi-card:hover .play-icon {
  transform: scale(1.12);
}

.hint {
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.4px;
  text-shadow:
    0 1px 6px rgba(0, 0, 0, 0.9),
    0 0 16px rgba(0, 0, 0, 0.7);
}

/* Visibilidade mobile/desktop via CSS puro */
.texto-vp-mobile {
  display: none;
}

.texto-vp-desktop {
  display: inline;
}

@media (max-width: 767px) {
  .texto-vp-mobile {
    display: inline;
  }

  .texto-vp-desktop {
    display: none;
  }
}

/* ─── SERVICES ─── */
#servicos {
  padding: 100px 5vw;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.service-card {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 30px 26px;
  transition: border-color .25s, transform .2s;
}

.service-card:hover {
  border-color: rgba(245, 200, 66, 0.3);
  transform: translateY(-4px);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(245, 200, 66, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;

}

.service-icon-img {
  padding: 8px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--white);
  letter-spacing: -0.3px;
}

.service-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 18px;
}

.service-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.service-items li {
  font-size: 13px;
  color: var(--gray-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 300;
}

.service-items li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── FAQ ─── */
#faq {
  padding: 100px 5vw;
  background: var(--dark2);
}

.faq-list {
  max-width: 820px;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  user-select: none;
  gap: 16px;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(245, 200, 66, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform .3s, background .2s;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: rgba(245, 200, 66, 0.25);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.75;
}

/* ─── FOOTER CTA ─── */
#footer-cta {
  padding: 100px 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#footer-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(245, 200, 66, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 60px);
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative;
}

.cta-title em {
  font-style: normal;
  color: var(--gold);
}

.cta-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 44px;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.btn-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  border: none;
}

.btn-lg:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-box {
  background: var(--dark2);
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 90%;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.modal-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.modal-title {
  font-size: 22px;
  margin-bottom: 8px;
}

.modal-msg {
  margin-bottom: 20px;
}

.modal-close {
  min-width: 120px;
}

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

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--gold);
  letter-spacing: -1px;
}

.footer-logo span {
  color: var(--white);
}

.footer-copy {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
  transition: color .2s;
}

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

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

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

.fade-up {
  animation: fadeUp .7s ease both;
}

.delay-1 {
  animation-delay: .1s;
}

.delay-2 {
  animation-delay: .2s;
}

.delay-3 {
  animation-delay: .35s;
}

.delay-4 {
  animation-delay: .5s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  #hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
  }

  #advisor {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .advisor-card {
    max-width: 400px;
  }

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

  .stat-item:nth-child(2) {
    border-right: none;
  }

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

  @media (max-width: 600px) {
    .testimonials-grid {
      grid-template-columns: 1fr;
    }
  }

  /* Removed old featured card media query */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }
}

/* ─── Floating WhatsApp ─── */

.floating-whatsapp {
  position: fixed;

  right: 22px;
  bottom: 22px;

  width: 64px;
  height: 64px;

  border-radius: 50%;

  background: #25d366;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 10px 30px rgba(37, 211, 102, 0.35);

  z-index: 9999;

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px);

  box-shadow:
    0 14px 38px rgba(37, 211, 102, 0.45);
}

.floating-whatsapp img {
  width: 32px;
  height: 32px;

  object-fit: contain;
}

@media (max-width: 768px) {

  .floating-whatsapp {
    width: 58px;
    height: 58px;

    right: 16px;
    bottom: 16px;
  }

  .floating-whatsapp img {
    width: 28px;
    height: 28px;
  }
}