/* =====================================================
   PSICOCOMPANY - PÁGINA PARA PSICÓLOGOS
   Arquivo: psicologos.css
   ===================================================== */

/* ===== HERO ===== */
.psico-hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  background: linear-gradient(135deg, #f4f2fa 0%, #e8e4f7 50%, #ddd8f0 100%);
  position: relative;
  overflow: hidden;
}

.psico-hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(124, 101, 181, 0.08) 0%, transparent 70%);
  top: -350px;
  right: -150px;
  animation: float 20s ease-in-out infinite;
}

.psico-hero .hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.psico-hero h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -1.2px;
}

.psico-hero .hero-subtitle {
  font-size: 19px;
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 50px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 15px;
  color: var(--gray);
  font-weight: 500;
}

/* ===== POR QUE ESCOLHER ===== */
.why-join {
  padding: 100px 24px;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.benefit-card {
  background: var(--bg-light);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-light);
  box-shadow: 0 20px 40px rgba(124, 101, 181, 0.12);
}

.benefit-icon {
  font-size: 56px;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--gray);
  line-height: 1.6;
  font-size: 15px;
}

/* ===== COMO FUNCIONA ===== */
.how-it-works-psico {
  padding: 100px 24px;
  background: var(--bg-light);
}

.steps-timeline {
  max-width: 900px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.step-item {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.step-item:hover {
  transform: translateY(-8px);
  border-color: var(--primary-light);
  box-shadow: 0 20px 40px rgba(124, 101, 181, 0.12);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(124, 101, 181, 0.3);
  margin: 0 auto 24px;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.step-content p {
  color: var(--gray);
  line-height: 1.6;
  font-size: 15px;
}

/* ===== PLANOS ===== */
.plans-section {
  padding: 100px 24px;
  background: var(--white);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 60px auto 40px;
}

.plan-card {
  background: var(--bg-light);
  border-radius: 24px;
  padding: 40px;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(124, 101, 181, 0.15);
}

.plan-featured {
  border-color: var(--primary);
  background: var(--white);
}

.plan-ribbon {
  position: absolute;
  top: 20px;
  right: -10px;
  background: var(--accent);
  color: var(--white);
  padding: 6px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.plan-ribbon::before {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 10px 0 0;
  border-color: #be185d transparent transparent transparent;
}

.plan-header {
  text-align: center;
  margin-bottom: 24px;
}

.plan-header h3 {
  font-size: 26px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 8px;
}

.plan-badge {
  display: inline-block;
  background: rgba(124, 101, 181, 0.12);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.plan-price {
  text-align: center;
  margin-bottom: 16px;
}

.price-currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  vertical-align: super;
}

.price-value {
  font-size: 64px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.price-period {
  font-size: 16px;
  color: var(--gray);
  font-weight: 500;
  display: block;
  margin-top: 4px;
}

.plan-description {
  text-align: center;
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.6;
  font-size: 15px;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
}

.plan-features li {
  padding: 10px 0;
  color: var(--dark);
  font-size: 15px;
  border-bottom: 1px solid rgba(124, 101, 181, 0.08);
}

.plan-features li:last-child {
  border-bottom: none;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.plans-note {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(124, 101, 181, 0.08);
  border-radius: 12px;
  color: var(--dark);
  font-size: 15px;
  line-height: 1.6;
}

/* ===== DEPOIMENTOS ===== */
.testimonials-psico {
  padding: 100px 24px;
  background: var(--bg-light);
}

.testimonials-psico .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 100px 24px;
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 60px auto 0;
}

.faq-item {
  border-bottom: 2px solid rgba(124, 101, 181, 0.1);
  margin-bottom: 16px;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  font-size: 24px;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 24px;
}

.faq-answer p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 16px;
}

/* ===== CTA FINAL ===== */
.psico-cta-final {
  padding: 100px 24px;
  background: linear-gradient(135deg, #f4f2fa 0%, #e8e4f7 100%);
  text-align: center;
}

.psico-cta-final .cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.psico-cta-final h2 {
  font-size: 42px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.psico-cta-final p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-note {
  font-size: 15px;
  color: var(--gray);
  margin-top: 24px;
}

/* ===== ANIMAÇÕES ===== */
@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -20px) scale(1.02);
  }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 968px) {
  .psico-hero h1 {
    font-size: 38px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 40px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-psico .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .psico-hero {
    padding: 100px 20px 60px;
  }

  .psico-hero h1 {
    font-size: 30px;
  }

  .psico-hero .hero-subtitle {
    font-size: 17px;
  }

  .hero-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 32px;
  }

  .price-value {
    font-size: 52px;
  }

  .psico-cta-final h2 {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .faq-question {
    font-size: 16px;
    padding: 20px 0;
  }

  .faq-icon {
    font-size: 20px;
  }
}