/* --- PALETA DE CORES "PURPLE NEON PREMIUM" --- */
:root {
  --primary-color: #d500f9; /* Roxo Neon / Magenta */
  --secondary-color: #aa00ff; /* Roxo Profundo */
  --accent-color: #d500f9;
  --text-black: #000000;
  --text-secondary: #a0a0a0; /* Cinza claro para leitura */

  /* Gradiente de Destaque */
  --action-gradient: linear-gradient(135deg, #d500f9 0%, #9c27b0 100%);

  /* Variáveis Dinâmicas de Texto */
  --btn-text-solid: #ffffff; /* Texto branco no botão roxo */
  --btn-text-hover: #ffffff;
  --hover-shadow: rgba(213, 0, 249, 0.4);
  --cta-inner-bg: #000000;
  --cta-inner-text: #d500f9;

  --bg-overlay: rgba(8, 8, 8, 0.98); /* Fundo super escuro */
  --bg-card: rgba(20, 20, 20, 0.95); /* Card Escuro */
  --bg-card-solid: #141414;
  --text-main: #ffffff;
  --border-glass: rgba(213, 0, 249, 0.2); /* Borda neon sutil */
  --shadow-glass: 0 15px 40px -10px rgba(0, 0, 0, 0.9);
  --btn-bg: rgba(213, 0, 249, 0.05);
  --input-bg: rgba(0, 0, 0, 0.6);
  --title-font: "Playfair Display", serif;
  --font-body: "Montserrat", sans-serif;
}

body.light-theme {
  --bg-overlay: rgba(245, 245, 245, 0.95);
  --bg-card: rgba(255, 255, 255, 0.98);
  --bg-card-solid: #f0f0f0;
  --text-main: #111111;
  --text-secondary: #555555;
  --border-glass: rgba(170, 0, 255, 0.2);
  --btn-bg: rgba(170, 0, 255, 0.05);
  --input-bg: rgba(235, 235, 235, 1);
  --primary-color: #aa00ff;
  --secondary-color: #7b1fa2;

  --action-gradient: linear-gradient(135deg, #111111 0%, #000000 100%);
  --btn-text-solid: #ffffff;
  --btn-text-hover: #ffffff;
  --hover-shadow: rgba(170, 0, 255, 0.3);
  --cta-inner-bg: #ffffff;
  --cta-inner-text: #aa00ff;
  --accent-color: #aa00ff;
}

/* --- RESET --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-body);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
a {
  text-decoration: none !important;
  color: inherit;
}

a,
button,
.plan-card,
.cta-final-box,
.step-card,
.result-card img {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
  background-color: #050505;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: var(--text-main);
  padding: 0;
  position: relative;
  min-height: 100vh;
}

.bg-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1534438327276-14e5300c3a48?q=80&w=2070&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: translateZ(0);
  filter: grayscale(100%) opacity(0.5);
}

.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-overlay);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: -1;
  transform: translateZ(0);
}

/* --- CARD PRINCIPAL --- */
.glass-card {
  width: 100%;
  max-width: 100%;
  position: relative;
  margin: 0 auto;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 70px 20px 40px;
  text-align: center;
  overflow-x: hidden;
  z-index: 1;
  min-height: 100vh;
}

@media (min-width: 768px) {
  .glass-card {
    max-width: 600px;
    border-left: 1px solid var(--border-glass);
    border-right: 1px solid var(--border-glass);
    padding: 80px 40px 50px;
  }
}

.theme-toggle, .share-toggle {
  position: absolute;
  top: 20px;
  background: var(--btn-bg);
  border: 1px solid var(--border-glass);
  color: var(--accent-color);
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s ease, background 0.3s;
  font-size: 1.1rem;
}
.theme-toggle:hover, .share-toggle:hover {
  transform: rotate(15deg) scale(1.1);
  background: var(--action-gradient);
  color: var(--btn-text-solid);
}
.theme-toggle {
  right: 20px;
}

.share-dropdown {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 20;
}
.share-toggle {
  position: relative;
  top: 0;
  left: 0;
}
.share-menu {
  position: absolute;
  top: 55px;
  left: 0;
  background: var(--bg-card-solid);
  border: 1px solid var(--border-glass);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 170px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  text-align: left;
}
.share-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.share-menu a {
  padding: 14px 18px;
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background 0.3s, color 0.3s;
  border-bottom: 1px dashed rgba(255,255,255,0.05);
}
.share-menu a:last-child {
  border-bottom: none;
}
body.light-theme .share-menu a {
  border-bottom-color: rgba(0,0,0,0.05);
}
.share-menu a:hover {
  background: var(--action-gradient);
  color: var(--btn-text-solid);
}
.share-menu a i {
  color: var(--accent-color);
  width: 22px;
  text-align: center;
  font-size: 1.1rem;
  transition: color 0.3s;
}
.share-menu a:hover i {
  color: var(--btn-text-solid);
}
body.light-theme .share-menu {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.lang-dropdown {
  position: absolute;
  top: 75px;
  right: 20px;
  z-index: 20;
}
.lang-toggle {
  background: var(--btn-bg);
  border: 1px solid var(--border-glass);
  color: var(--accent-color);
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s;
  font-size: 1.1rem;
}
.lang-toggle:hover {
  transform: scale(1.1);
  background: var(--action-gradient);
  color: var(--btn-text-solid);
}
.lang-menu {
  position: absolute;
  top: 55px;
  right: 0;
  background: var(--bg-card-solid);
  border: 1px solid var(--border-glass);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 60px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  text-align: center;
}
.lang-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-menu button {
  background: transparent;
  border: none;
  padding: 12px 18px;
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  border-bottom: 1px dashed rgba(255,255,255,0.05);
  font-family: var(--font-body);
}
.lang-menu button:last-child {
  border-bottom: none;
}
.lang-menu button:hover {
  background: var(--action-gradient);
  color: var(--btn-text-solid);
}
body.light-theme .lang-menu {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
body.light-theme .lang-menu button {
  border-bottom-color: rgba(0,0,0,0.05);
}

/* --- PERFIL TOPO --- */
.profile-img-top {
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 4px solid var(--accent-color);
  background: var(--bg-card-solid);
  display: block;
  margin: 0 auto 20px auto;
  padding: 4px;
  transition: border-color 0.4s ease;
}

h1 {
  font-family: var(--title-font);
  font-size: 2.1rem;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: var(--accent-color);
  letter-spacing: 1px;
}
h2 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.9;
}
.bio-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 95%;
  margin: 0 auto 30px auto;
  line-height: 1.5;
}

/* --- BOTÕES TOPO --- */
.action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 40px;
}
.btn-action {
  background: var(--btn-bg);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-action:hover {
  background: var(--action-gradient);
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--hover-shadow);
}
.btn-action i {
  font-size: 1.3rem;
  color: var(--accent-color);
  transition: color 0.3s;
}
.btn-action span {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}
.btn-action:hover i,
.btn-action:hover span {
  color: var(--btn-text-hover);
}

/* --- SEÇÕES GERAIS --- */
.section-header {
  text-align: left;
  margin: 30px 0 20px 0;
  padding-left: 10px;
  border-left: 4px solid var(--accent-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-header h3 {
  font-family: var(--title-font);
  font-size: 1.3rem;
  color: var(--text-main);
  text-transform: uppercase;
  font-style: italic;
  line-height: 1.3;
}

/* --- SOBRE --- */
.about-card {
  background: var(--btn-bg);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 25px 20px;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.about-card::before {
  content: '"';
  position: absolute;
  top: -5px;
  right: 20px;
  font-size: 5rem;
  color: var(--accent-color);
  opacity: 0.05;
  font-family: serif;
}
.about-profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 3px solid var(--border-glass);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  background-color: var(--bg-card-solid);
}
body.light-theme .about-profile-pic {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.about-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 5px;
  margin-top: 5px;
}
.about-highlight {
  color: var(--accent-color);
  font-weight: 700;
}
.about-stats {
  display: flex;
  gap: 20px;
  margin-top: 5px;
  justify-content: center;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  font-family: var(--title-font);
}
.stat-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* --- CARDS GENÉRICOS DE TEXTO --- */
.benefits-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 25px 20px;
  margin-bottom: 25px;
  box-shadow: var(--shadow-glass);
}
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 600;
}
body.light-theme .benefits-list li {
  color: var(--text-main);
}
.benefits-list li:last-child {
  margin-bottom: 0;
}
.benefits-list li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* --- CONFIGURAÇÃO DOS CARROSSEIS --- */
.carousel-container {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}
.carousel-track-manual {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 5px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.carousel-track-manual::-webkit-scrollbar {
  display: none;
}
.center-track {
  justify-content: flex-start;
}

/* --- PLANOS --- */
.plan-card {
  width: 85vw;
  max-width: 320px;
  height: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 30px 20px;
  text-align: center;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  margin-bottom: 5px;
}
.plan-card.featured {
  background: linear-gradient(
    180deg,
    rgba(213, 0, 249, 0.08) 0%,
    var(--bg-card) 100%
  );
  border-color: rgba(213, 0, 249, 0.4);
}
body.light-theme .plan-card.featured {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    var(--bg-card) 100%
  );
  border-color: rgba(0, 0, 0, 0.3);
}

.plan-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--action-gradient);
  color: var(--btn-text-solid);
  padding: 4px 12px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-title {
  font-family: var(--title-font);
  font-size: 1.4rem;
  color: var(--text-main);
  margin-bottom: 5px;
}
.gender-highlight {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--text-secondary);
  border: 1px solid var(--border-glass);
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  display: inline-block;
  margin: 0 auto 10px auto;
  letter-spacing: 0.5px;
}
.plan-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 15px;
}
.plan-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-secondary);
  display: block;
  margin-top: 2px;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
  flex-grow: 1;
}

.price-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed var(--border-glass);
  padding-bottom: 10px;
  margin-bottom: 10px !important;
}
.price-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0 !important;
}
.price-list-item span {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-list-item strong {
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 700;
}
body.light-theme .price-list-item strong {
  color: var(--text-main);
}

.feature-item {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.feature-item i {
  color: var(--accent-color);
  font-size: 0.85rem;
  margin-top: 3px;
}

.plan-btn {
  background: transparent;
  border: 1px solid var(--accent-color);
  color: var(--text-main);
  padding: 12px;
  width: 100%;
  border-radius: 10px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  appearance: none;
  -webkit-appearance: none;
  margin-top: 5px;
}
body.light-theme .plan-btn {
  color: var(--text-black);
}
.plan-btn:hover {
  background: var(--action-gradient);
  color: var(--btn-text-solid);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--hover-shadow);
}
.plan-card.featured .plan-btn {
  background: var(--action-gradient);
  color: var(--btn-text-solid);
  border-color: transparent;
}
.plans-cta-footer {
  margin-top: 5px;
  margin-bottom: 30px;
  text-align: center;
}
.link-cta {
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px dashed var(--accent-color);
  padding-bottom: 2px;
  transition: opacity 0.3s;
}
body.light-theme .link-cta {
  color: var(--text-black);
  border-color: var(--text-black);
}
.link-cta:hover {
  opacity: 0.7;
}

/* --- CARDS DE RESULTADOS --- */
.result-card {
  width: 75vw;
  max-width: 280px;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-glass);
  flex-shrink: 0;
  background: #000;
}
.result-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.85;
  filter: grayscale(50%);
  transition:
    transform 0.5s ease,
    filter 0.5s ease,
    opacity 0.5s ease;
}
.result-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.08);
  opacity: 1;
}
.result-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 20px 15px 15px;
  text-align: left;
}
.result-badge {
  background: var(--action-gradient);
  color: var(--btn-text-solid);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 5px;
}
.result-desc {
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 600;
}

/* --- CARDS DE FEEDBACK --- */
.feedback-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 30px 25px;
  margin-bottom: 15px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 85vw;
  max-width: 340px;
  flex-shrink: 0;
}
.feedback-stars {
  color: var(--accent-color);
  font-size: 0.9rem;
  margin-bottom: 5px;
}
.feedback-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  font-style: italic;
  flex-grow: 1;
}
.feedback-author {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.feedback-author i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

/* --- PERGUNTAS FREQUENTES (FAQ) --- */
.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 25px 20px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-glass);
  text-align: left;
}
.faq-item {
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.faq-toggle {
  width: 100%;
  background: transparent;
  border: none;
  padding: 10px 0;
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}
body.light-theme .faq-toggle {
  color: var(--text-main);
}
.faq-toggle:hover {
  color: var(--accent-color);
}
.faq-toggle i {
  color: var(--accent-color);
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s ease;
}
.faq-item.active .faq-body {
  max-height: 300px;
  padding: 15px 0 10px 0;
}
.faq-item.active .faq-toggle {
  color: var(--accent-color);
}
.faq-item.active .faq-toggle i {
  transform: rotate(180deg);
}
.faq-desc-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  font-weight: 500;
}

/* --- FORMULÁRIO --- */
.schedule-form {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 30px 20px;
  margin-bottom: 30px;
  text-align: left;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.75rem;
  color: var(--accent-color);
  margin-bottom: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-input,
.form-select,
textarea.form-input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid var(--border-glass);
  background: var(--input-bg);
  color: var(--text-main);
  font-size: 16px !important;
  outline: none;
  appearance: none;
  transition: border-color 0.3s;
}
select optgroup {
  background: var(--bg-card);
  color: var(--accent-color);
  font-weight: 700;
}
select option {
  background: var(--bg-card);
  color: var(--text-main);
}
textarea.form-input {
  resize: none;
  height: 80px;
}
.form-input:focus,
.form-select:focus,
textarea.form-input:focus {
  border-color: var(--accent-color);
}
.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.form-row .form-group {
  margin-bottom: 0;
  flex: 1;
  width: 50%;
}

.btn-schedule {
  width: 100%;
  background: var(--action-gradient);
  color: var(--btn-text-solid);
  font-weight: 900;
  padding: 16px;
  border: none;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 0.95rem;
  cursor: pointer;
  margin-top: 25px;
  box-shadow: 0 4px 25px rgba(213, 0, 249, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  appearance: none;
  -webkit-appearance: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
body.light-theme .btn-schedule {
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
}
.btn-schedule:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px var(--hover-shadow);
}

/* --- CTA FINAL --- */
.cta-final-container {
  margin: 20px 0 30px 0;
}
.cta-final-box {
  display: block;
  background: var(--action-gradient);
  border-radius: 25px;
  padding: 25px 20px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(213, 0, 249, 0.1);
  text-align: center;
  border: 1px solid var(--border-glass);
}
body.light-theme .cta-final-box {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.cta-final-box:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 15px 40px var(--hover-shadow);
}
.cta-final-title {
  font-family: var(--title-font);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--btn-text-solid);
}
.cta-final-sub {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--btn-text-solid);
  opacity: 0.8;
}
.cta-final-btn-inner {
  background: var(--cta-inner-bg);
  color: var(--cta-inner-text);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
  border: 1px solid var(--border-glass);
}
.cta-final-box:hover .cta-final-btn-inner {
  transform: scale(1.05);
}

/* --- FOOTER --- */
.footer {
  border-top: 1px solid var(--border-glass);
  padding-top: 25px;
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-align: center;
  opacity: 0.7;
}
.footer-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}
.footer-icons a {
  font-size: 1.3rem;
  color: var(--text-main);
}
.footer-icons a:hover {
  color: var(--accent-color);
  transform: scale(1.1) translateY(-3px);
}
