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

/* ===== VARIÁVEIS ===== */
:root {
  --black:    #0B0D12;
  --dark:     #0D1B2A;
  --graphite: #1E293B;
  --red-dark: #8B0E16;
  --red:      #D9041E;
  --white:    #F5F5F5;
  --muted:    #94A3B8;
  --border:   rgba(255,255,255,0.20);
  --sans:     'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== HERO ===== */
.hero {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

/* --- Coluna esquerda --- */
.hero__left {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 1.5rem 3rem;
  gap: 2rem;
  background: var(--black);
}

.hero__logo {
  display: inline-block;
  margin-bottom: -0.5rem;
}

.hero__logo img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

.hero__title {
  font-family: var(--sans);
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero__title mark {
  background: var(--red);
  color: var(--white);
  font-style: normal;
}

.hero__text {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  color: var(--muted);
  max-width: 480px;
}

.hero__text strong {
  color: var(--white);
  font-weight: 600;
}

.hero__cta {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  letter-spacing: 0.08em;
  padding: 1.1rem 2.5rem;
  border-radius: 999px;
  border: 2px solid var(--red);
  text-align: center;
  transition: background 0.25s;
  margin-top: 1.25rem;
}

.hero__cta:hover {
  background: var(--red-dark);
}

/* --- Coluna direita --- */
.hero__right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 3rem 1.5rem 2rem;
  min-height: 480px;
  overflow: hidden;
  background: url('../../assets/images/cidade-noite.jpeg') center center / cover no-repeat;
}

.hero__right-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--black) 0%, transparent 40%);
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero__right-bg {
    background: linear-gradient(to right, var(--black) 0%, transparent 50%);
  }
}

.hero__brand-img {
  display: none;
}

.hero__bubbles {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 360px;
}

.bubble {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.bubble__icon { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; align-self: center; }

.bubble__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1;
}

.bubble__text {
  font-size: 0.82rem;
  color: var(--white);
  line-height: 1.4;
}

.bubble__time {
  font-size: 0.7rem;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== DESKTOP ===== */
@media (min-width: 1024px) {
  .hero {
    flex-direction: row;
  }

  .hero__left {
    flex: 1;
    justify-content: center;
    padding: 4rem 5rem 4rem 6rem;
    gap: 3rem;
  }

  .hero__right {
    flex: 1;
    min-height: 100svh;
    padding: 3rem 2rem;
    background-position: center top;
    align-items: center;
    justify-content: center;
  }

  .hero__brand-img { display: none; }

  .hero__bubbles {
    position: absolute;
    bottom: 3rem;
    right: 2.5rem;
    max-width: 300px;
  }

  .hero__cta {
    padding: 1.1rem 2.5rem;
  }
}

/* ===== TIMER ===== */
.timer-section {
  background: #111318;
  padding: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.timer-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 200px;
  background: radial-gradient(ellipse at center, rgba(217, 4, 30, 0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.timer-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  width: 100%;
  max-width: 900px;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.timer-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  z-index: 2;
  pointer-events: none;
}

.timer-fade--left {
  left: 0;
  background: linear-gradient(to right, #111318, transparent);
}

.timer-fade--right {
  right: 0;
  background: linear-gradient(to left, #111318, transparent);
}

.timer__label {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}

.timer__display {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.timer__display.expired {
  color: rgba(255,255,255,0.2);
}

.timer__msg {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: none;
  flex: 1;
  text-align: right;
  line-height: 1.5;
}

@media (max-width: 1023px) {
  .hero__right {
    align-items: center;
    justify-content: center;
    min-height: 320px;
  }

  .timer-section {
    padding: 1.5rem 1.25rem;
  }

  .timer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 0;
  }

  .timer__label {
    font-size: 1rem;
    flex: none;
  }

  .timer__display {
    font-size: 2.5rem;
  }

  .timer__msg {
    font-size: 1rem;
    flex: none;
    text-align: center;
  }

  .timer-fade {
    width: 60px;
  }
}

/* ===== DOR ===== */
.pain {
  background: var(--black);
  padding: 6rem 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.pain::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at bottom, rgba(217, 4, 30, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.pain__header,
.pain__grid {
  position: relative;
  z-index: 1;
}

.pain__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.pain__title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
}

.pain__underline {
  text-decoration: underline;
  text-decoration-color: var(--white);
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.pain__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pain__card {
  background: #111318;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pain__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}

.pain__card-title {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--white);
  letter-spacing: -0.02em;
}

.pain__card-text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .pain__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== SERVIÇOS ===== */
.services {
  background: var(--black);
  padding: 6rem 1.5rem 0;
  /*border-top: 1px solid var(--border);*/
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at top, rgba(217, 4, 30, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.services::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at bottom, rgba(217, 4, 30, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.services__header,
.services__grid {
  position: relative;
  z-index: 1;
}

.services__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}

.services__title {
  /*
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.75rem;
  */
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.services__subtitle {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.services__card {
  background: #111318;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.services__card--featured {
  background: #16191f;
  border-color: rgba(217, 4, 30, 0.8);
}

.services__card-top {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.services__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(217, 4, 30, 0.8);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  width: fit-content;
}

.services__plan {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.services__card-title {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.services__card-text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.services__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.services__list li {
  font-size: 1rem;
  color: var(--muted);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.services__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

.services__cta {
  display: block;
  text-align: center;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.5);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: border-color 0.2s, color 0.2s;
}

.services__cta:hover {
  border-color: white;
}

.services__cta--featured {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.services__cta--featured:hover {
  background: var(--red-dark);
  border-color: var(--red);
}

@media (min-width: 900px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== BENEFÍCIOS ===== */
.benefits {
  background: var(--black);
  padding: 6rem 1.5rem;
  border-top: 1px solid var(--border);
}

.benefits__header {
  text-align: center;
  margin-bottom: 3rem;
}

.benefits__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}

.benefits__card {
  background: #111318;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefits__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}

.benefits__content {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.benefits__card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.benefits__card-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--black);
  padding: 6rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at top, rgba(217, 4, 30, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.cta-section > * {
  position: relative;
  z-index: 1;
}

.cta-section__title {
  /*
  font-family: var(--sans);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
  max-width: 820px;
  */
  font-family: var(--sans);
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.cta-section__title mark {
  background: var(--red);
  color: var(--white);
}

/* ===== FAQ ===== */
.faq {
  background: var(--black);
  padding: 6rem 1.5rem;
  border-top: 1px solid var(--border);
}

.faq__header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__item {
  background: #111318;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.faq__item[open] {
  border-color: rgba(255,255,255,0.15);
}

.faq__question {
  list-style: none;
  padding: 1.5rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  letter-spacing: -0.01em;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 2rem 1.5rem;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ===== RODAPÉ ===== */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  opacity: 0.9;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--muted);
}


  .timer-section {
    padding: 1.5rem 1.25rem;
  }

  .timer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 0;
  }

  .timer__label {
    font-size: 1rem;
    flex: none;
  }

  .timer__display {
    font-size: 2.5rem;
  }

  .timer__msg {
    font-size: 1rem;
    flex: none;
    text-align: center;
  }

  .timer-fade {
    width: 60px;
  }
}
