/* Fonte */
@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap');

/* Reset e base */
*, *::before, *::after { box-sizing: border-box; }

body {
  background: #000000;
  color: #ffffff;
  margin: 0;
  padding: 0;
  font-family: 'Host Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
               'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Container principal */
.page-container {
  max-width: 480px;
  margin: 0 auto;
  padding: 24px 16px 0;
}

/* Controle de visibilidade pelo VTurb */
.esconder {
  display: none !important;
}

/* Botão CTA verde — padrão de todas as páginas */
@keyframes cta-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55), 0 4px 20px rgba(34, 197, 94, 0.35); }
  60%  { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0), 0 4px 20px rgba(34, 197, 94, 0.35); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0), 0 4px 20px rgba(34, 197, 94, 0.35); }
}

.cta-button {
  display: block;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 45%, #16a34a 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  width: 100%;
  max-width: 400px;
  margin: 20px auto 0;
  padding: 18px 24px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  cursor: pointer;
}

.cta-button:hover {
  animation: cta-pulse 0.9s ease-out infinite;
  filter: brightness(1.06);
  transform: translateY(-1px);
}

/* Seção de perfil */
.profile-section {
  margin-top: 40px;
  text-align: center;
}

.profile-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #333333;
  display: block;
  margin: 0 auto;
}

.profile-name {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin: 16px 0 0;
}

.profile-bio {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.6;
  max-width: 360px;
  margin: 10px auto 0;
}

/* Footer */
.page-footer {
  padding: 40px 0 28px;
  text-align: center;
}

.footer-copyright {
  font-size: 12px;
  color: #666666;
  margin: 0;
}

.footer-links {
  margin-top: 8px;
  font-size: 12px;
}

.footer-links a {
  color: #888888;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #cccccc;
}

.footer-links span {
  color: #555555;
  margin: 0 6px;
}

/* ── Depoimentos — carrossel ───────────────────────── */
.testimonials-section {
  margin-top: 48px;
}

.testimonials-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1.45;
  margin: 0 0 24px;
}

.testimonials-title span {
  color: #22c55e;
}

.carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-track-wrap {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111111;
  border-radius: 12px;
  overflow: hidden;
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.carousel-arrow {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid #333333;
  background: #111111;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.carousel-arrow:hover {
  background: #1a1a1a;
  border-color: #22c55e;
  color: #22c55e;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #333333;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot.is-active {
  background: #22c55e;
  transform: scale(1.25);
}

/* ── FAQ — accordion ───────────────────────────────── */
.faq-section {
  margin-top: 56px;
}

.faq-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 0 0 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid #1e1e1e;
}

.faq-item:first-child {
  border-top: 1px solid #1e1e1e;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-item[open] .faq-question {
  color: #22c55e;
}

.faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #22c55e;
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 0 20px;
  overflow: hidden;
}

.faq-answer p {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.7;
  margin: 0 0 12px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  color: #dddddd;
  font-weight: 600;
}

/* ── Modal de checkout ─────────────────────────────── */
.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.checkout-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.checkout-modal {
  background: #111111;
  border: 1px solid #222222;
  border-radius: 16px;
  padding: 36px 24px 28px;
  width: 100%;
  max-width: 420px;
  position: relative;
  transform: translateY(18px);
  transition: transform 0.25s ease;
}

.checkout-overlay.is-open .checkout-modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  padding: 4px 8px;
  cursor: pointer;
  transition: color 0.15s;
}

.modal-close:hover {
  color: #ffffff;
}

.modal-title {
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 0 0 24px;
  line-height: 1.45;
}

.form-group {
  margin-bottom: 12px;
}

.form-group input {
  width: 100%;
  background: #1a1a1a;
  border: 1.5px solid #2e2e2e;
  border-radius: 8px;
  color: #ffffff;
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input::placeholder {
  color: #666666;
}

.form-group input:focus {
  border-color: #22c55e;
}

.form-group input.is-invalid {
  border-color: #ef4444;
}

.field-error {
  display: block;
  color: #ef4444;
  font-size: 13px;
  margin-top: 5px;
}

.modal-submit {
  margin-top: 6px;
}
