/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Roboto", system-ui, sans-serif;
  font-weight: 400;
  color: #fff;
  background: #000;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

:root {
  --brand: #ff534b;
  --brand-deep: #ff0b00;
  --brand-orange: #fc8901;
  --blue: #0abcea;
  --blue-deep: #024a9b;
  --green: #4dd950;
  --purple: #9873ff;
  --bg-dark: #000;
  --bg-section: #282828;
  --bg-card: #313131;
  --bg-card-hover: #1e1e1e;
  --text-light: #fff;
  --text-muted: #ababab;
  --text-eyebrow: #ddd;
  --maxw: 1140px;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.text-accent { color: var(--brand); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ========== HEADER ========== */
.site-header {
  background: #282828;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-link { flex-shrink: 0; }
.logo-img { height: 50px; width: auto; }
.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; gap: 30px; align-items: center; }
.nav-item {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  padding: 8px 4px;
  transition: color .2s;
}
.nav-item:hover, .nav-item.active { color: var(--brand-orange); }

.header-cta {
  background: linear-gradient(315deg, #282828 0%, var(--brand) 100%);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 8px;
  transition: transform .2s, background .3s;
}
.header-cta:hover {
  background: linear-gradient(135deg, #282828 0%, var(--brand) 100%);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: #fff;
  padding: 8px;
}

@media (max-width: 1024px) {
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #2e2359;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .main-nav.open { max-height: 400px; padding: 12px 0; }
  .nav-list { flex-direction: column; gap: 0; }
  .nav-list li { width: 100%; }
  .nav-item { display: block; padding: 14px 24px; }
  .nav-item.active { background: var(--blue); color: #fff; }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 720px;
  background-image: url('../images/hero/hero-desktop.webp');
  background-size: cover;
  background-position: center;
  background-color: #000;
  display: flex;
  align-items: center;
  padding: 90px 0 110px;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.65) 40%, rgba(0,0,0,0.15) 70%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-text { max-width: 540px; }

.hero-lang {
  background: #fff;
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  padding: 6px 28px 6px 12px;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  margin: 0 0 36px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' stroke='%23000' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 8px center;
}

.hero-headline {
  font-family: "Poppins", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 40px;
  color: #fff;
  letter-spacing: -1px;
}
.hero-eyebrow {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #fff;
  margin: 0 0 28px;
}
.hero-tagline {
  font-size: 17px;
  font-weight: 400;
  margin: 0 0 40px;
  color: #fff;
  max-width: 520px;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .hero-headline { font-size: 48px; }
  .hero-text { max-width: 480px; }
}
@media (max-width: 1024px) {
  .hero {
    background-image: url('../images/hero/hero-tablet.png');
    min-height: 600px;
    padding: 60px 0 80px;
  }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
  }
  .hero-text { max-width: 100%; }
  .hero-headline { font-size: 40px; margin-bottom: 28px; }
  .hero-tagline { margin-bottom: 30px; }
}
@media (max-width: 767px) {
  .hero {
    background-image: url('../images/hero/hero-mobile.png');
    background-position: center top;
    min-height: 560px;
  }
  .hero-headline { font-size: 30px; line-height: 1.2; margin-bottom: 22px; }
  .hero-tagline { font-size: 15px; margin-bottom: 26px; }
  .hero-eyebrow { font-size: 12px; margin-bottom: 22px; }
  .hero-lang { margin-bottom: 24px; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-weight: 500;
  font-size: 18px;
  padding: 16px 28px;
  border-radius: 8px;
  color: #fff;
  transition: transform .2s, box-shadow .3s, filter .2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(55deg, var(--brand-deep) 0%, var(--brand) 100%);
  box-shadow: 0 8px 24px rgba(255,83,75,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 12px 30px rgba(255,83,75,0.45);
}
.btn-blue {
  background: linear-gradient(55deg, var(--blue) 0%, var(--blue-deep) 100%);
  box-shadow: 0 8px 24px rgba(10,188,234,0.25);
}
.btn-blue:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}
.btn-purple {
  background: var(--purple);
  width: 100%;
  font-weight: 500;
}
.btn-purple:hover { filter: brightness(1.1); }

.btn-pulse { animation: pulsate 1.6s infinite ease-in-out; }
@keyframes pulsate {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* ========== TICKER ========== */
.ticker {
  background: #000;
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: flex;
  gap: 60px;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 7.2px;
  color: #fff;
  flex-shrink: 0;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== STATS ========== */
.stats {
  background: #000;
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: 28% 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.stats-heading h2 {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  color: #fff;
  line-height: 1.1;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding: 36px 24px;
  border: 1px solid var(--brand);
  border-radius: 18px;
  background: rgba(255,83,75,0.02);
}
.stat-number {
  font-family: "Poppins", sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -2px;
}
.stat-label {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .stats { padding: 50px 0; }
  .stats-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .stats-heading h2 { font-size: 30px; }
  .stat-number { font-size: 60px; }
}

/* ========== SECTION HEADINGS ========== */
.section-heading { text-align: center; margin-bottom: 50px; }
.section-eyebrow {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-eyebrow);
  margin: 0 0 12px;
}
.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 767px) {
  .section-title { font-size: 30px; }
}

/* ========== PROCESSO ========== */
.process { background: #000; padding: 80px 0; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.process-step {
  background: #000;
  border: 1px solid var(--brand);
  border-radius: 18px;
  padding: 32px 26px 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255,83,75,0.18);
  border-color: rgba(255,83,75,0.7);
}
.process-icon {
  width: 92px;
  height: 92px;
  margin: 0 0 18px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  box-sizing: content-box;
}
.process-title {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-orange);
  background: transparent;
  margin: 0 0 14px;
  padding: 0;
  border-radius: 0;
  letter-spacing: 0;
  line-height: 1.18;
}
.process-step p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-step p { font-size: 14px; }
}

/* ========== CLIENTES ========== */
.clients {
  background: #000;
  padding: 80px 0 50px;
}
.clients-headline {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.clients-subhead {
  font-family: "Open Sans", sans-serif;
  font-size: 23px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
}
.clients-track-wrap {
  overflow: hidden;
  margin-top: 40px;
  padding: 20px 0;
}
.clients-track {
  display: flex;
  gap: 24px;
  animation: clientsRoll 35s linear infinite;
  width: max-content;
  align-items: stretch;
}
.clients-track img {
  width: 320px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  flex-shrink: 0;
  display: block;
}
@keyframes clientsRoll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 767px) {
  .clients-headline { font-size: 23px; }
  .clients-subhead { font-size: 14px; }
  .clients-track img { width: 240px; }
}

/* ========== SERVIÇOS ========== */
.services {
  background: linear-gradient(180deg, #000 0%, #282828 100%);
  padding: 100px 0;
}
.services-title {
  font-family: "Open Sans", sans-serif;
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  color: #fff;
  margin: 0 0 16px;
}
.services-sub {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  margin: 0 0 8px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .25s, transform .25s, box-shadow .25s;
}
.service-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brand);
  display: grid;
  place-items: center;
  font-size: 28px;
  color: #fff;
}
.service-title {
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #fffcf9;
  margin: 0;
  line-height: 1.2;
}
.service-card p { font-size: 16px; color: #fff; margin: 0; flex: 1; }
.service-list { display: flex; flex-direction: column; gap: 6px; font-size: 15px; }
.service-card .btn { align-self: flex-start; margin-top: 8px; }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-title { font-size: 32px; }
  .service-title { font-size: 24px; }
}

/* ========== PLANOS ========== */
.plans {
  background: linear-gradient(180deg, #282828 0%, #000 100%);
  padding: 80px 0;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.plan-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background .25s, transform .25s;
}
.plan-card:hover { background: var(--bg-card-hover); transform: translateY(-4px); }
.plan-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  color: #fff;
}
.plan-icon-blue { background: var(--blue); }
.plan-title {
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: #fffcf9;
  margin: 0;
}
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: #fff;
}
.check-green {
  color: var(--green);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.plan-card .btn { align-self: stretch; }

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

/* ========== SEGREDO ========== */
.secret {
  background: var(--bg-section);
  padding: 100px 0;
}
.secret-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.secret-headline {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 24px;
  color: #fff;
}
.secret-accent {
  background: #000;
  color: var(--brand);
  padding: 0 8px;
}
.secret-text p { font-size: 17px; line-height: 1.7; margin: 0 0 18px; }
.secret-text .muted { color: var(--text-muted); }
.secret-pills { font-size: 18px; }
.secret-image img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
@media (max-width: 1024px) {
  .secret-grid { grid-template-columns: 1fr; }
  .secret-headline { font-size: 36px; }
}
@media (max-width: 767px) {
  .secret { padding: 60px 0; }
  .secret-headline { font-size: 28px; }
}

/* ========== FAQ ========== */
.faq {
  background: linear-gradient(180deg, var(--bg-section) 0%, #000 100%);
  padding: 80px 0;
}
.faq-title {
  font-family: "Sora", sans-serif;
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin: 0 0 40px;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: #0c0f16;
  border: 1px solid rgba(101,79,138,1);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-caret { transition: transform .3s; flex-shrink: 0; }
.faq-item[open] .faq-caret { transform: rotate(90deg); }
.faq-answer {
  padding: 0 24px 22px;
  font-size: 16px;
  line-height: 1.65;
  color: #ddd;
}
@media (max-width: 767px) {
  .faq-title { font-size: 1.8em; }
  .faq-item summary { font-size: 16px; padding: 16px 18px; }
}

/* ========== FOOTER ========== */
.site-footer {
  background-color: #000;
  background-image: url('../images/decorative/footer-pattern.png');
  background-size: 200px;
  background-repeat: repeat;
  padding: 60px 0 40px;
  text-align: center;
}
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.footer-logo { max-width: 220px; }
.footer-tagline { max-width: 600px; font-size: 15px; line-height: 1.6; }
.footer-cnpj, .footer-copy { font-size: 14px; margin: 0; opacity: 0.85; }

/* ========== POPUP ========== */
.popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
}
.popup[hidden] { display: none; }
.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
}
.popup-card {
  position: relative;
  background: var(--bg-section);
  width: 100%;
  max-width: 400px;
  padding: 40px 32px 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 22px;
  color: var(--brand-orange);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background .2s;
}
.popup-close:hover { background: rgba(255,255,255,0.1); }
.popup-card h2 {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  margin: 0 0 16px;
  color: #fff;
}
.popup-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto;
  object-fit: cover;
}
.popup-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue);
  margin: 12px 0 4px;
}
.popup-sub {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 24px;
}
.popup-form { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.popup-form input[type="text"],
.popup-form input[type="email"] {
  background: var(--bg-section);
  border: 1px solid var(--blue);
  border-radius: 8px;
  padding: 12px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.popup-form input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(152,115,255,0.2);
}
.popup-form input::placeholder { color: rgba(255,255,255,0.5); }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #fff;
  margin: 4px 0 8px;
  cursor: pointer;
}
.checkbox-label input { accent-color: var(--blue); margin-top: 4px; }

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
  z-index: 90;
  transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ========== UTILITIES ========== */
.muted { color: var(--text-muted); }
strong { font-weight: 700; }

/* Scroll-reveal helper */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s, transform .8s; }
.reveal.show { opacity: 1; transform: none; }
