/* --- PALETA DE CORES "NEON GREEN" --- */
:root {
  --brand-green: #8bdf4b;
  --brand-green-dark: #73bf3e;
  --brand-green-light: #a2e86a;

  /* Gradientes Dark Mode */
  --energy-gradient: linear-gradient(135deg, #8bdf4b 0%, #73bf3e 100%);
  --energy-gradient-text: linear-gradient(135deg, #a2e86a 0%, #ffffff 100%);

  /* DARK THEME (Padrão) */
  --bg-body: #121212;
  --bg-card: rgba(30, 30, 30, 0.95);
  --text-main: #ffffff;
  --text-secondary: #cfd8dc;

  --border-style: 1px solid rgba(139, 223, 75, 0.3);
  --shadow-card: 0 15px 40px rgba(0, 0, 0, 0.95);
  --btn-bg: rgba(255, 255, 255, 0.05);
  --input-bg: rgba(0, 0, 0, 0.7);
}

/* --- LIGHT THEME (Modo Claro) --- */
body.light-theme {
    --bg-body: #fdfdfd;
    --bg-card: rgba(255, 255, 255, 0.9);
    --text-main: #0a0a0a;
    --text-secondary: #333333;
    --border-style: 1px solid rgba(0, 0, 0, 0.08);
    --btn-bg: rgba(0, 0, 0, 0.03);
    --input-bg: #ffffff;
    --brand-green: #7cc142;
    --brand-green-dark: #64a331;
    --energy-gradient: linear-gradient(135deg, #7cc142 0%, #64a331 100%);
    --energy-gradient-text: linear-gradient(135deg, #222 0%, #000 100%);
}

/* --- RESET --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.3s ease;
}
a {
  text-decoration: none !important;
  color: inherit;
}

body {
  background-color: var(--bg-body);
  background-image: radial-gradient(circle at center, #1e2528 0%, #000000 100%);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-main);
  padding: 20px 15px;
  overflow-x: hidden;
}

body.light-theme {
  background-image: radial-gradient(circle at center, #ffffff 0%, #e0e0e0 100%);
}

/* --- CONTAINER PRINCIPAL --- */
.main-container {
  width: 100%;
  max-width: 600px;
  position: relative;
  padding: 30px 0 20px 0;
  text-align: center;
  z-index: 1;
  margin: 0 auto;
}

.top-controls {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 10;
}

.theme-toggle {
  background: var(--btn-bg);
  border: var(--border-style);
  color: var(--text-main);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lang-switcher {
  display: flex;
  flex-direction: column;
  background: var(--btn-bg);
  border: var(--border-style);
  border-radius: 20px;
  overflow: hidden;
}
.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}
.lang-btn:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
}
.lang-btn.active {
  background: var(--brand-green);
  color: #000;
}

.share-toggle {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--btn-bg);
  border: var(--border-style);
  color: var(--text-main);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}
.share-toggle:hover {
  background: var(--brand-green);
  color: #000;
  box-shadow: 0 0 15px rgba(139, 223, 75, 0.4);
}

/* FOTO DE PERFIL (LOGO) */
.profile-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    margin-bottom: 25px;
    border-radius: 50%;
    border: var(--border-style);
    background: transparent;
    transition: all 0.5s ease;
}

body.light-theme .profile-img {
    background: transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

body:not(.light-theme) .profile-img {
    background: transparent;
    box-shadow: 0 0 30px rgba(139, 223, 75, 0.15);
}

h1 {
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  background: var(--energy-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--brand-green);
  font-style: italic;
}

h2 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-style);
  display: inline-block;
  padding-bottom: 10px;
}
.bio-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 95%;
  margin: 0 auto 30px auto;
  line-height: 1.5;
}

.action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}
.btn-action {
  background: var(--btn-bg);
  border: var(--border-style);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-main);
  font-weight: 600;
}
.btn-action i {
  font-size: 1.5rem;
  color: var(--brand-green);
}
.btn-action:hover {
  background: rgba(139, 223, 75, 0.1);
  transform: translateY(-3px);
  border-color: var(--brand-green);
  box-shadow: 0 0 15px rgba(139, 223, 75, 0.2);
}

.section-header {
  text-align: left;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.section-header::before {
  content: "";
  width: 4px;
  height: 25px;
  background: var(--brand-green);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--brand-green);
}
.section-header h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-style: italic;
  margin: 0;
}

/* --- CARROSSEL --- */
.carousel-container {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
.carousel-track-manual {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 10px 30px 10px; /* Adicionado padding top para evitar corte no hover */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.carousel-track-manual::-webkit-scrollbar {
  display: none;
}

.plan-card {
  min-width: 250px;
  background: linear-gradient(160deg, var(--btn-bg), rgba(0, 0, 0, 0.05));
  border: var(--border-style);
  border-radius: 16px;
  padding: 25px 20px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  scroll-snap-align: center;
}
.plan-card:hover {
  border-color: var(--brand-green);
  transform: translateY(-5px);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.2),
    0 0 10px rgba(139, 223, 75, 0.1);
}

.glass-hover {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.glass-hover:hover {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-color: var(--brand-green-light);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(139, 223, 75, 0.3);
}

.plan-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-green);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-style: italic;
}
.plan-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 20px;
}
.plan-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.plan-features {
  list-style: none;
  margin-bottom: 25px;
  width: 100%;
  padding: 0;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  text-align: left;
}
.plan-features li i {
  color: var(--brand-green);
  font-size: 0.8rem;
}

.plan-btn {
  margin-top: auto;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--brand-green);
  color: var(--brand-green);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  background: transparent;
}
.plan-card:hover .plan-btn {
  background: var(--brand-green);
  color: #000;
  box-shadow: 0 0 15px rgba(139, 223, 75, 0.4);
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  backdrop-filter: blur(5px);
}
.nav-left {
  left: -5px;
}
.nav-right {
  right: -5px;
}

/* --- RESULTADOS --- */
.results-container {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 10px 5px 20px 5px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.results-container::-webkit-scrollbar {
  display: none;
}

.result-card {
  min-width: 320px;
  width: 320px;
  background: var(--btn-bg);
  border: var(--border-style);
  border-radius: 15px;
  padding: 0;
  flex-shrink: 0;
  scroll-snap-align: center;
  overflow: hidden;
}
.comparison-box {
  display: flex;
  gap: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  margin-bottom: 0px;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  background: var(--input-bg);
}
.comparison-box.single-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.comparison-box img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.comparison-carousel {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.comparison-carousel::-webkit-scrollbar {
  display: none;
}
.comparison-carousel img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  scroll-snap-align: center;
}
.tag-overlay {
  position: absolute;
  bottom: 5px;
  font-size: 0.6rem;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.8);
  color: var(--brand-green);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--brand-green);
}
.tag-before {
  left: 5px;
  color: #fff;
  border-color: #fff;
}
.tag-after {
  right: 5px;
}

.result-info {
  text-align: left;
  padding: 15px; /* Adicionado padding para o texto não colar na borda */
}
.result-name {
  font-weight: 700;
  color: var(--text-main);
  font-size: 0.9rem;
}
.result-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 2px;
}
.result-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brand-green);
  border: 1px solid var(--brand-green);
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 5px;
  box-shadow: 0 0 5px rgba(139, 223, 75, 0.2);
}

/* --- SESSÃO SOBRE O PERSONAL --- */
.about-section {
  background: var(--btn-bg);
  border: var(--border-style);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 30px;
  text-align: center;
}
.about-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--brand-green);
  margin: 0 auto 15px auto;
  box-shadow: 0 0 15px rgba(139, 223, 75, 0.2);
}
.about-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.about-cref {
  font-size: 0.8rem;
  color: var(--brand-green);
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.specialties-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 25px;
}
.specialty-tag {
  background: var(--brand-green);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(139, 223, 75, 0.2);
}
.about-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
  text-align: left;
}

/* --- BENEFÍCIOS DO PLANO PRESENCIAL --- */
.benefits-section {
  margin-bottom: 30px;
}
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.benefit-item {
  display: flex;
  align-items: center;
  background: var(--input-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 15px;
  text-align: left;
}
.benefit-icon {
  background: rgba(139, 223, 75, 0.1);
  color: var(--brand-green);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 15px;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(139, 223, 75, 0.2);
}
.benefit-text h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 5px;
}
.benefit-text p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* --- FAQ (PERGUNTAS FREQUENTES) --- */
.faq-item {
  background: var(--input-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  padding: 18px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none; /* remove default arrow */
}
.faq-question::-webkit-details-marker {
  display: none; /* remove default arrow webkit */
}
.faq-answer {
  padding: 0 18px 18px 18px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  text-align: left;
}
.faq-question i {
  color: var(--brand-green);
  transition: 0.3s;
}
details.faq-item[open] .faq-question i {
  transform: rotate(180deg);
}

/* --- FORMULÁRIO --- */
.schedule-form {
  background: var(--btn-bg);
  border: var(--border-style);
  border-radius: 20px;
  padding: 25px 20px;
  margin-bottom: 40px;
  text-align: left;
}
.form-group {
  margin-bottom: 20px; /* Mais espaço pra respirar entre campos */
}
.form-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-weight: 700;
  margin-left: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-input,
.form-select {
  width: 100%;
  padding: 14px 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--input-bg);
  color: var(--text-main);
  font-size: 0.95rem;
  outline: none;
  font-weight: 500;
}
.form-input:focus,
.form-select:focus {
  border-color: var(--brand-green);
  box-shadow: 0 0 10px rgba(139, 223, 75, 0.2);
}

.form-input-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.form-input-glass:focus {
  background: rgba(0, 0, 0, 0.8);
  border-color: var(--brand-green-light);
  box-shadow: 0 0 15px rgba(139, 223, 75, 0.3);
  transform: translateY(-2px);
}
.form-row-mobile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn-schedule {
  width: 100%;
  background: var(--energy-gradient);
  color: #000;
  font-weight: 900;
  padding: 16px;
  border: none;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 0.9rem;
  cursor: pointer;
  margin-top: 15px;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(139, 223, 75, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-style: italic;
}
.btn-schedule:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(139, 223, 75, 0.6);
}

/* --- CTA --- */
.cta-box-final {
  background: linear-gradient(135deg, #101214, #000);
  border-radius: 15px;
  padding: 40px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
  text-decoration: none;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin: 30px 0;
  transition: all 0.4s ease;
}
.cta-box-final:hover {
  transform: translateY(-8px);
  border-color: var(--brand-green);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9), 0 0 25px rgba(139, 223, 75, 0.2);
}
.cta-title {
  color: #fff;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-style: italic;
  z-index: 2;
  position: relative;
}
.cta-sub {
  color: #aaa;
  font-size: 0.9rem;
  margin: 10px 0 20px 0;
  z-index: 2;
  position: relative;
}
.cta-btn-inner {
  background: var(--brand-green);
  color: #000;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 900;
  text-transform: uppercase;
  display: inline-block;
  font-size: 0.85rem;
  z-index: 2;
  position: relative;
  box-shadow: 0 0 15px rgba(139, 223, 75, 0.4);
  transition: all 0.3s ease;
}
.cta-box-final:hover .cta-btn-inner {
  background: #ffffff;
  color: #000;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
  transform: scale(1.05);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 40px;
  font-size: 0.7rem;
  color: var(--text-secondary);
}
.footer-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.footer-icons a {
  color: var(--text-secondary);
  font-size: 1.2rem;
  transition: 0.3s;
}
.footer-icons a:hover {
  color: var(--brand-green);
  transform: translateY(-3px);
  text-shadow: 0 0 10px var(--brand-green);
}

/* --- SHARE MODAL --- */
.share-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.share-modal.active {
  opacity: 1;
  pointer-events: all;
}
.share-content {
  background: var(--bg-card);
  border: var(--border-style);
  border-radius: 20px;
  padding: 30px;
  width: 90%;
  max-width: 350px;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.share-modal.active .share-content {
  transform: translateY(0);
}
.share-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}
.share-header h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--brand-green);
  font-weight: 800;
  text-transform: uppercase;
}
.close-share {
  font-size: 1.5rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1;
}
.close-share:hover {
  color: var(--brand-green-light);
}
.share-options {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.share-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.share-btn:hover {
  transform: scale(1.1);
}
.whatsapp-btn { background: #25D366; }
.facebook-btn { background: #1877F2; }
.tiktok-btn { background: #000000; border: 1px solid #333; }
.linkedin-btn { background: #0A66C2; }
.twitter-btn { background: #1DA1F2; }

/* --- RESPONSIVIDADE ADICIONAL --- */
@media (max-width: 450px) {
  body {
    padding: 0;
  }
  .main-container {
    padding: 30px 15px 20px 15px;
  }
  h1 {
    font-size: 1.6rem;
  }
  .action-grid {
    gap: 10px;
  }
  .btn-action {
    padding: 12px 10px;
    font-size: 0.9rem;
  }
  .schedule-form {
    padding: 25px 15px;
  }
  .form-row-mobile {
    grid-template-columns: 1fr; /* Força sempre ficar um em cima do outro no mobile */
    gap: 0;
  }
  .plan-card {
    min-width: 85vw;
    padding: 20px 15px;
  }
  .result-card {
    min-width: 85vw;
    width: 85vw;
  }
}

@media (max-width: 380px) {
  /* Extra media query cleanup, form-row-mobile covered above */
}
