       /* --- VARIÁVEIS CSS (TEMA PADRÃO: ESCURO) --- */
:root {
  --bg-color: #0d0d0d;
  --section-bg-color: #141416;
  --card-bg-color: #1c1c1f;
  --text-main-color: #ffffff;
  --text-secondary-color: #a8a8b3;
  --accent-color: #f24e4d;
  --accent-secondary: #5c2a8a;
  --accent-glow: rgba(242, 78, 77, 0.25);
  --btn-text-solid: #ffffff;
  --border-glass: rgba(255, 255, 255, 0.05);
  --shadow-soft: 0 15px 35px -10px rgba(0, 0, 0, 0.8);
  --input-bg: rgba(20, 20, 20, 0.9);
  --gradient-featured: linear-gradient(
    180deg,
    rgba(92, 42, 138, 0.1) 0%,
    #1c1c1f 100%
  );
  --action-gradient: linear-gradient(
    135deg,
    var(--accent-secondary) 0%,
    var(--accent-color) 100%
  );

  /* Fontes Atualizadas */
  --title-font: "Outfit", sans-serif;
  --font-body: "Montserrat", sans-serif;

  --max-width: 900px;
  --border-radius: 20px;
}

/* --- TEMA CLARO --- */
body.light-theme {
  --bg-color: #f8f8fa;
  --section-bg-color: #ffffff;
  --card-bg-color: #ffffff;
  --text-main-color: #1a1a1a;
  --text-secondary-color: #666666;
  --accent-color: #5c2a8a;
  --accent-secondary: #f24e4d;
  --accent-glow: rgba(92, 42, 138, 0.2);
  --btn-text-solid: #ffffff;
  --border-glass: rgba(0, 0, 0, 0.06);
  --shadow-soft: 0 15px 35px -10px rgba(0, 0, 0, 0.05);
  --input-bg: #f0f0f4;
  --gradient-featured: linear-gradient(
    180deg,
    rgba(242, 78, 77, 0.05) 0%,
    #ffffff 100%
  );
  --action-gradient: linear-gradient(
    135deg,
    var(--accent-secondary) 0%,
    var(--accent-color) 100%
  );
}

/* --- RESET E CLASSES UTILITÁRIAS --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-body);
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background-color: var(--bg-color);
  color: var(--text-main-color);
  line-height: 1.6;
  overflow-x: hidden;
  transition:
    background-color 0.4s ease,
    color 0.4s ease;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button,
a,
.card,
.btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --- ANIMAÇÕES DE SCROLL (FADE UP) --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- BACKGROUND FIXO --- */
.bg-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  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;
  opacity: 0.05;
  filter: grayscale(100%);
}

/* --- CONTAINER PRINCIPAL --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- BOTÕES FLUTUANTES --- */
.theme-toggle,
.share-toggle,
.share-menu button {
  background: var(--section-bg-color);
  border: 1px solid var(--border-glass);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}
.theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 45px;
  height: 45px;
}
.theme-toggle:hover {
  transform: scale(1.1);
  background: var(--action-gradient);
  color: var(--btn-text-solid);
  border-color: transparent;
}
.theme-toggle i {
  font-size: 1.3rem;
}

.share-container {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.share-toggle {
  width: 45px;
  height: 45px;
}
.share-toggle:hover {
  transform: scale(1.1);
  background: var(--action-gradient);
  color: var(--btn-text-solid);
  border-color: transparent;
}
.share-toggle i {
  font-size: 1.2rem;
}

.share-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
.share-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.share-menu button {
  width: 40px;
  height: 40px;
  color: var(--text-main-color);
}
.share-menu button:hover {
  background: var(--action-gradient);
  color: var(--btn-text-solid);
  border-color: transparent;
  transform: scale(1.1);
}

/* --- CABEÇALHO (HERO SECTION) --- */
.hero {
  padding: 80px 20px 40px;
  text-align: center;
}
.hero-logo-container {
  display: inline-block;
  border-radius: 30px;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
body.light-theme .hero-logo-container {
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
}
.hero-logo {
  width: 100%;
  max-width: 280px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
body.light-theme .hero-logo {
  mix-blend-mode: normal;
}

.hero-bio {
  font-size: 1.15rem;
  color: var(--text-secondary-color);
  font-weight: 500;
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.action-grid {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-action {
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  background: var(--section-bg-color);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-soft);
}
.btn-action:hover {
  background: var(--action-gradient);
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: 0 15px 25px var(--accent-glow);
}
.btn-action i {
  font-size: 1.5rem;
  color: var(--accent-color);
}
.btn-action span {
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--title-font);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-action:hover i,
.btn-action:hover span {
  color: var(--btn-text-solid);
}

/* --- SEÇÕES GERAIS --- */
section {
  padding: 40px 0;
  margin-bottom: 20px;
}
.section-header {
  margin-bottom: 40px;
  text-align: center;
}
.section-header h2 {
  font-family: var(--title-font);
  font-size: 2.2rem;
  color: var(--text-main-color);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.section-header h2 span {
  background: var(--action-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary-color);
  font-weight: 500;
}

/* --- CARDS --- */
.card {
  background: var(--section-bg-color);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

/* --- SEÇÃO: SOBRE --- */
.about-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}
@media (min-width: 700px) {
  .about-wrapper {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }
}
.about-profile-pic {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  padding: 4px;
  background: var(--action-gradient);
  box-shadow: 0 10px 25px var(--accent-glow);
  flex-shrink: 0;
  margin: 0 auto;
  display: block;
}
.about-content {
  flex: 1;
}
.about-title {
  font-family: var(--title-font);
  font-size: 1.8rem;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: var(--text-main-color);
  margin-bottom: 5px;
}
.cref-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-secondary);
  background: rgba(92, 42, 138, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid var(--border-glass);
  font-family: var(--title-font);
}
.about-text {
  font-size: 1rem;
  color: var(--text-secondary-color);
  margin-bottom: 15px;
  line-height: 1.7;
}
.highlight {
  color: var(--accent-color);
  font-weight: 600;
}

.about-stats {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 700px) {
  .about-stats {
    justify-content: flex-start;
  }
}
.stat-item {
  text-align: center;
  background: var(--card-bg-color);
  padding: 15px;
  border-radius: 16px;
  border: 1px solid var(--border-glass);
  flex: 1;
  min-width: 110px;
}
.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--action-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--title-font);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
}
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-secondary-color);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 5px;
  font-family: var(--title-font);
}

/* --- LISTA DE BENEFÍCIOS --- */
.benefits-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main-color);
  text-align: left;
}
.benefits-list i {
  background: var(--action-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.3rem;
}

/* --- CARROSSEL --- */
.carousel-wrapper {
  margin: 0 -20px;
  padding: 10px 20px 30px 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.carousel-wrapper::-webkit-scrollbar {
  display: none;
}
.carousel-track {
  display: flex;
  gap: 25px;
}

/* --- CARDS DE SERVIÇOS --- */
.service-card {
  flex: 0 0 300px;
  background: var(--card-bg-color);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius);
  padding: 35px 30px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
}
.service-icon {
  font-size: 2.5rem;
  background: var(--action-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main-color);
  font-family: var(--title-font);
}
.service-desc {
  font-size: 0.95rem;
  color: var(--text-secondary-color);
  line-height: 1.6;
}

/* --- PLANOS CARDS (GERAL) --- */
.plan-card {
  flex: 0 0 320px;
  background: var(--card-bg-color);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius);
  padding: 35px 30px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
}
.plan-card.grid-item {
  flex: 1;
  min-width: 280px;
}
.plan-card.featured {
  background: var(--gradient-featured);
  border-color: var(--accent-secondary);
  border-width: 2px;
}
.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--action-gradient);
  color: var(--btn-text-solid);
  padding: 6px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--title-font);
  text-transform: uppercase;
  border-radius: 30px;
  letter-spacing: 1px;
  white-space: nowrap;
  box-shadow: 0 5px 15px var(--accent-glow);
}
.plan-title {
  font-family: var(--title-font);
  font-size: 1.6rem;
  color: var(--text-main-color);
  margin-bottom: 5px;
  font-weight: 700;
  margin-top: 10px;
}
.plan-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-color);
  margin: 15px 0 5px;
  font-family: var(--title-font);
}
.plan-price-sub {
  font-size: 0.9rem;
  color: var(--text-secondary-color);
  margin-bottom: 25px;
  font-weight: 500;
}
.gender-highlight {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--title-font);
  color: var(--accent-secondary);
  background: rgba(92, 42, 138, 0.1);
  padding: 6px 15px;
  border-radius: 20px;
  text-transform: uppercase;
  margin: 0 auto 10px;
  border: 1px solid var(--border-glass);
}

.plan-features {
  margin-bottom: 30px;
  flex-grow: 1;
  text-align: left;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: var(--text-secondary-color);
}
.plan-features i {
  font-size: 1rem;
  margin-top: 3px;
}
.plan-features i.fa-check {
  color: var(--accent-color);
}
.plan-features i.fa-times {
  color: #555;
}

/* --- ESTILOS ESPECÍFICOS: PLANOS PRESENCIAIS --- */
.time-slot-section {
  margin-bottom: 50px;
}
.time-slot-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-glass);
}
.time-slot-header h3 {
  font-family: var(--title-font);
  font-size: 1.6rem;
  color: var(--text-main-color);
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.time-slot-header h3 i {
  color: var(--accent-color);
}
.time-slot-header span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary-color);
  font-family: var(--title-font);
  background: var(--section-bg-color);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--border-glass);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.pricing-tier {
  margin-bottom: 20px;
  text-align: left;
  background: rgba(255, 255, 255, 0.02);
  padding: 15px;
  border-radius: 12px;
  border: 1px solid var(--border-glass);
}
body.light-theme .pricing-tier {
  background: rgba(0, 0, 0, 0.02);
}
.pricing-tier h4 {
  font-size: 1rem;
  font-family: var(--title-font);
  color: var(--text-main-color);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.badge-eco {
  font-size: 0.7rem;
  font-family: var(--font-body);
  background: var(--accent-secondary);
  color: white;
  padding: 3px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.price-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--text-secondary-color);
  border-bottom: 1px dashed var(--border-glass);
  padding-bottom: 5px;
}
.price-line:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.price-line strong {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.05rem;
}
.plan-disclaimer {
  font-size: 0.8rem;
  color: var(--text-secondary-color);
  margin-top: 15px;
  margin-bottom: 20px;
  font-style: italic;
  text-align: center;
}

/* Botões Base */
.btn-solid {
  width: 100%;
  background: var(--action-gradient);
  color: var(--btn-text-solid);
  border: none;
  border-radius: 50px;
  padding: 16px;
  font-weight: 700;
  font-family: var(--title-font);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  cursor: pointer;
  text-align: center;
}
.btn-outline {
  width: 100%;
  background: transparent;
  color: var(--text-main-color);
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  padding: 15px;
  font-weight: 700;
  font-family: var(--title-font);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  cursor: pointer;
  text-align: center;
}
.btn-solid:hover,
.btn-outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px var(--accent-glow);
}
.btn-outline:hover {
  background: var(--action-gradient);
  color: var(--btn-text-solid);
  border-color: transparent;
}

/* --- RESULTADOS — CAROUSEL --- */
.results-track {
  align-items: stretch;
}

.result-card {
  flex: 0 0 260px;
  width: 260px;
  height: 370px;
  background: var(--card-bg-color);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.result-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-secondary);
}

/* Imagem simples (cards 2-5) */
.result-img-fill {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.result-img-fill img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  max-width: none;
}

/* === MINI-CAROUSEL (cards 1 e 6) === */
.mini-carousel {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.mini-carousel-slides {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mini-slide {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.mini-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  max-width: none;
  display: block;
}

/* Botões e dots do mini-carousel */
.mini-carousel-nav {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.mini-prev,
.mini-next {
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 1.2rem;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  padding: 0;
}

.mini-prev:hover,
.mini-next:hover {
  background: var(--accent-color);
}

.mini-dots {
  display: flex;
  gap: 6px;
}

.mini-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  display: block;
}

.mini-dot.active {
  background: #fff;
}


/* --- O QUE VOCÊ VAI RECEBER (ACORDEÃO / FAQ) --- */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-item {
  background: var(--section-bg-color);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: var(--accent-secondary);
}
.faq-item summary {
  padding: 22px 25px;
  font-weight: 600;
  color: var(--text-main-color);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-family: var(--title-font);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--accent-color);
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}
.faq-item[open] summary {
  color: var(--accent-color);
}
.faq-item[open] summary::after {
  transform: rotate(180deg);
}
.faq-body {
  padding: 0 25px 25px 25px;
  color: var(--text-secondary-color);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- FORMULÁRIO --- */
.form-group {
  margin-bottom: 25px;
}
.form-label {
  display: block;
  font-size: 0.9rem;
  font-family: var(--title-font);
  color: var(--text-main-color);
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.form-input,
.form-select {
  width: 100%;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border-glass);
  background: var(--input-bg);
  color: var(--text-main-color);
  font-size: 1rem;
  outline: none;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  font-family: var(--font-body);
}
textarea.form-input {
  resize: vertical;
  min-height: 100px;
}
.form-input:focus,
.form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(242, 78, 77, 0.1);
}
.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.form-row .form-group {
  flex: 1;
  min-width: 150px;
}

/* --- CTA FINAL --- */
.cta-final {
  background: var(--action-gradient);
  border-radius: var(--border-radius);
  padding: 50px 30px;
  text-align: center;
  border: 1px solid var(--border-glass);
  display: block;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
  opacity: 0.1;
  pointer-events: none;
}
.cta-final:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--accent-glow);
}
.cta-final h2 {
  font-family: var(--title-font);
  font-size: 2.2rem;
  color: var(--btn-text-solid);
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
}
.cta-final p {
  color: var(--btn-text-solid);
  opacity: 0.9;
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
}
.cta-btn-inner {
  background: var(--section-bg-color);
  color: var(--text-main-color);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--title-font);
  text-transform: uppercase;
  font-size: 0.95rem;
  position: relative;
  transition: all 0.3s;
}
.cta-final:hover .cta-btn-inner {
  transform: scale(1.05);
}

/* --- FOOTER --- */
footer {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid var(--border-glass);
  font-size: 0.9rem;
  color: var(--text-secondary-color);
  margin-top: 20px;
}
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.footer-socials a {
  font-size: 1.8rem;
  color: var(--text-main-color);
  transition: all 0.3s;
}
.footer-socials a:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

/* Ajustes Mobile específicos */
@media (max-width: 600px) {
  .section-header h2 {
    font-size: 1.8rem;
  }
  .card {
    padding: 30px 20px;
  }
  .about-title {
    font-size: 1.6rem;
  }
  .time-slot-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}