/* ========== RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


:root {
  --primary: #3d4f47;
  --primary-light: #5a6d63;
  --accent: #9a8b7a;
  --text: #2a2a2a;
  --text-light: #6a6a6a;
  --bg: #f8f7f4;
  --bg-alt: #ffffff;
  --border: #e5e3dd;
  --shadow: rgba(0, 0, 0, 0.06);
  --shadow-lg: rgba(0, 0, 0, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


html {
  scroll-behavior: smooth;
  font-size: 16px;
}


body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


h1, h2, h3, h4 {
  font-family: 'Crimson Pro', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--primary);
}


h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
h4 { font-size: 1.125rem; }


p { margin-bottom: 1.5rem; }
strong { font-weight: 600; }


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}


.section-title {
  text-align: center;
  margin-bottom: 1rem;
}


.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}


/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: var(--transition);
}


.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}


.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}


.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}


.nav-list {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}


.nav-list a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
}


.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: var(--transition);
}


.nav-list a:hover {
  color: var(--primary);
}


.nav-list a:hover::after {
  width: 100%;
}


.btn-contato {
  padding: 0.6rem 1.5rem;
  background: var(--primary);
  color: white !important;
  border-radius: 2px;
  font-weight: 500;
}


.btn-contato:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}


.btn-contato::after {
  display: none;
}


/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}


.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}


.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}


.hamburger.active span:nth-child(2) {
  opacity: 0;
}


.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}


/* ========== HERO COM SLIDER ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}


.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}


.slide.active {
  opacity: 1;
}


.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}


.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 2rem;
}


.hero-title {
  color: white;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}


.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}


.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


.cta-button, .cta-button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 2px;
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
}


.cta-button {
  background: var(--primary);
  color: white;
}


.cta-button:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow-lg);
}


.cta-button-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}


.cta-button-secondary:hover {
  background: white;
  color: var(--primary);
}


/* Slider Controls */
.slider-controls button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 20;
  backdrop-filter: blur(5px);
}


.slider-controls button:hover {
  background: rgba(255,255,255,0.4);
}


.slider-prev { left: 2rem; }
.slider-next { right: 2rem; }


.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 20;
}


.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}


.dot.active {
  background: white;
  width: 30px;
  border-radius: 6px;
}


/* ========== MODALIDADES ========== */
.modalidades {
  padding: 100px 0;
  background: var(--bg-alt);
}


.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}


.card {
  background: var(--bg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: var(--transition);
  position: relative;
}


.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow);
}


/* ========== CARD DESTAQUE - CORREÇÃO COMPLETA ========== */
.card-destaque {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* TODOS OS TEXTOS DO CARD DESTAQUE EM BRANCO */
.card-destaque h3 {
  color: white !important;
}

.card-destaque p {
  color: white !important;
  opacity: 0.95;
}

.card-destaque li {
  color: white !important;
}

/* Ícone do card destaque em branco */
.card-destaque .card-icon {
  filter: brightness(0) invert(1);
}


.card-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
}


.card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}


.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}


.card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}


.card-features {
  list-style: none;
  margin-top: 1.5rem;
}


.card-features li {
  padding: 0.5rem 0;
  color: var(--text-light);
  font-size: 0.95rem;
}


/* ========== COMO FUNCIONA ========== */
.como-funciona {
  padding: 100px 0;
  background: var(--bg);
}


.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}


.step {
  text-align: center;
  position: relative;
}


.step::after {
  content: '→';
  position: absolute;
  top: 25px;
  right: -2rem;
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.3;
}


.step:last-child::after {
  display: none;
}


.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-family: 'Crimson Pro', serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}


.step-content h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}


.step-content p {
  color: var(--text-light);
  font-size: 0.95rem;
}


.step-action {
  margin-top: 1.5rem;
}


.btn-step {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}


.btn-step:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}


/* ========== PARA QUEM É ========== */
.para-quem {
  padding: 100px 0;
  background: var(--bg-alt);
}


.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}


.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
}


.tag i {
  color: var(--accent);
}


.tag:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
}


.tag:hover i {
  color: white;
}


/* ========== BENEFÍCIOS ========== */
.beneficios {
  padding: 100px 0;
  background: var(--bg);
}


.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}


.benefit-item {
  text-align: center;
  padding: 2rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: var(--transition);
}


.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow);
}


.benefit-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}


.benefit-icon i {
  font-size: 3rem;
}


.benefit-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary);
}


.benefit-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}


/* ========== SOBRE ========== */
.sobre {
  padding: 100px 0;
  background: var(--bg-alt);
}


.sobre-content {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
}


.sobre-image {
  position: relative;
}


.sobre-image img {
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 20px 60px var(--shadow-lg);
}


.sobre-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  box-shadow: 0 4px 20px var(--shadow-lg);
}


.sobre-text h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}


.sobre-text p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
}


.sobre-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}


.stat {
  text-align: center;
}


.stat-number {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary);
  font-family: 'Crimson Pro', serif;
  margin-bottom: 0.5rem;
}


.stat-label {
  color: var(--text-light);
  font-size: 0.9rem;
}


.sobre-cta {
  margin-top: 2rem;
}


/* ========== CONSULTÓRIO ========== */
.consultorio {
  padding: 100px 0;
  background: var(--bg);
}


.consultorio-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}


.consultorio-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}


.info-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 2px;
}


.info-item i {
  font-size: 2rem;
  color: var(--primary);
  flex-shrink: 0;
}


.info-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}


.info-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}


.info-item p + p {
  margin-top: 0.5rem;
}


.destaque {
  color: var(--accent) !important;
  font-weight: 500;
}


.consultorio-mapa {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow);
}


/* ========== FAQ ========== */
.faq {
  padding: 100px 0;
  background: var(--bg-alt);
}


.faq-list {
  max-width: 800px;
  margin: 0 auto;
}


.faq-item {
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}


.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
  text-align: left;
  font-family: 'Crimson Pro', serif;
  transition: var(--transition);
}


.faq-question:hover {
  color: var(--primary-light);
}


.faq-question i {
  transition: var(--transition);
  color: var(--accent);
}


.faq-item.active .faq-question i {
  transform: rotate(180deg);
}


.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}


.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}


.faq-answer p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}


.faq-answer p:last-child {
  margin-bottom: 0;
}


/* ========== CONTATO ========== */
.contato {
  padding: 100px 0;
  background: var(--bg);
}


.contato-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}


.contato-item {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: var(--transition);
}


.contato-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow);
}


.contato-item.destaque {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}


.contato-item.destaque h3,
.contato-item.destaque a {
  color: white;
}


.contato-item.destaque .contato-icon i {
  color: white;
}


.contato-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}


.contato-icon i {
  font-size: 3rem;
}


.contato-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary);
}


.contato-item a {
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
  font-weight: 500;
}


.contato-item:not(.destaque) a:hover {
  color: var(--primary);
}


.contato-item small {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  opacity: 0.8;
}


.cta-center {
  text-align: center;
  margin-top: 3rem;
}


.cta-button-large {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 2px;
  font-size: 1.125rem;
  font-weight: 500;
  transition: var(--transition);
}


.cta-button-large:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--shadow-lg);
}


.cta-button-large i {
  font-size: 1.5rem;
}


/* ========== FOOTER ========== */
.footer {
  padding: 60px 0 40px;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.8);
}


.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.footer-logo img {
  height: 50px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}


.footer-logo p {
  margin: 0.5rem 0;
  line-height: 1.8;
  font-size: 0.95rem;
}


.crp {
  font-size: 0.875rem;
  opacity: 0.7;
  font-weight: 500;
}


.footer-links h4,
.footer-contato h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}


.footer-links ul {
  list-style: none;
}


.footer-links li {
  margin-bottom: 0.75rem;
}


.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}


.footer-links a:hover {
  color: white;
  padding-left: 5px;
}


.footer-contato p {
  margin: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}


.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}


.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 1.25rem;
  transition: var(--transition);
}


.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}


.footer-bottom {
  text-align: center;
}


.footer-bottom p {
  margin: 0.5rem 0;
  font-size: 0.875rem;
  opacity: 0.7;
}


/* ========== BOTÕES FLUTUANTES ========== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}


.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}


@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}


.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}


.back-to-top.show {
  opacity: 1;
  visibility: visible;
}


.back-to-top:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
}


/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-content {
    padding: 2rem 1rem;
  }


  .cards-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .sobre-content,
  .consultorio-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }


  .sobre-image img {
    max-width: 400px;
    margin: 0 auto;
    display: block;
  }


  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}


@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }


  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 20px var(--shadow);
  }


  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }


  .nav-list {
    flex-direction: column;
    padding: 2rem;
    gap: 0;
  }


  .nav-list li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }


  .nav-list a {
    display: block;
    padding: 1rem 0;
  }


  .btn-contato {
    margin-top: 1rem;
    display: block;
    text-align: center;
  }


  .hero {
    min-height: 500px;
    max-height: 700px;
  }


  .hero-title {
    font-size: 1.75rem;
  }


  .hero-subtitle {
    font-size: 1rem;
  }


  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }


  .slider-controls button {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }


  .slider-prev { left: 1rem; }
  .slider-next { right: 1rem; }


  .slider-dots {
    bottom: 1rem;
  }


  .cards-grid,
  .steps,
  .benefits-grid,
  .contato-grid {
    grid-template-columns: 1fr;
  }


  .step::after {
    display: none;
  }


  .sobre-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }


  .container {
    padding: 0 1.5rem;
  }


  section {
    padding: 60px 0 !important;
  }


  .modalidades,
  .como-funciona,
  .para-quem,
  .beneficios,
  .sobre,
  .consultorio,
  .faq,
  .contato {
    padding: 60px 0;
  }


  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 20px;
    right: 20px;
  }


  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 80px;
    right: 20px;
  }
}


@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }


  .cta-button,
  .cta-button-large {
    width: 100%;
    justify-content: center;
  }


  .card,
  .benefit-item {
    padding: 1.5rem;
  }
}