/* ============================================
   LANDING PAGE - DRA. MILENA GUIMARÃES
   Advogada Previdenciarista - BPC/LOAS
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-dark: #1a2d4d;
  --primary-blue: #2c5aa0;
  --accent-gold: #d4a574;
  --accent-gold-dark: #c49456;
  --text-dark: #1a1a1a;
  --text-light: #555555;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-light: #e8e8e8;
  --success: #27ae60;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
}

/* ============================================
   TIPOGRAFIA
   ============================================ */

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.3rem;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 2rem;
}

/* ============================================
   CONTAINER E GRID
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  max-width: 100%;
  padding: 0;
}

/* ============================================
   HEADER / NAVEGAÇÃO
   ============================================ */

header {
  background-color: var(--bg-white);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  color: var(--primary-dark);
}

.logo img {
  height: 50px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text strong {
  font-size: 1.2rem;
  color: var(--primary-dark);
}

.logo-text small {
  font-size: 0.75rem;
  color: var(--accent-gold);
  font-weight: 600;
}

nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  margin-left: 2rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent-gold);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
  color: var(--bg-white);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(212, 165, 116, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  color: var(--bg-white);
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.hero-text .subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  padding: 1.2rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.cta-button:hover {
  background-color: var(--accent-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.cta-button-secondary {
  background-color: transparent;
  color: var(--bg-white);
  border: 2px solid var(--accent-gold);
  padding: 1rem 2.2rem;
}

.cta-button-secondary:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

/* ============================================
   SEÇÃO DE IDENTIFICAÇÃO DA DOR
   ============================================ */

.pain-section {
  padding: 5rem 2rem;
  background-color: var(--bg-light);
}

.pain-content {
  max-width: 1200px;
  margin: 0 auto;
}

.pain-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.pain-intro p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  font-weight: 500;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.pain-card {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent-gold);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pain-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.pain-card h4 {
  color: var(--primary-dark);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.pain-card h4::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 50%;
}

.pain-card p {
  color: var(--text-light);
  font-size: 1rem;
}

/* ============================================
   SEÇÃO DE EXPLICAÇÃO
   ============================================ */

.explanation-section {
  padding: 5rem 2rem;
  background-color: var(--bg-white);
}

.explanation-content {
  max-width: 1200px;
  margin: 0 auto;
}

.explanation-header {
  text-align: center;
  margin-bottom: 3rem;
}

.explanation-header h2 {
  margin-bottom: 1rem;
}

.explanation-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.explanation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.explanation-card {
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(44, 90, 160, 0.05) 0%, rgba(212, 165, 116, 0.05) 100%);
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

.explanation-card h3 {
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.explanation-card p {
  color: var(--text-light);
  line-height: 1.8;
}

.explanation-card ul {
  list-style: none;
  margin-top: 1rem;
}

.explanation-card li {
  padding: 0.6rem 0;
  padding-left: 1.8rem;
  position: relative;
  color: var(--text-light);
}

.explanation-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: bold;
  font-size: 1.2rem;
}

/* ============================================
   SEÇÃO DE AUTORIDADE
   ============================================ */

.authority-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
  color: var(--bg-white);
}

.authority-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.authority-image {
  position: relative;
}

.authority-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.authority-image::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--accent-gold);
  border-radius: 12px;
  z-index: -1;
}

.authority-text h2 {
  color: var(--bg-white);
  margin-bottom: 1.5rem;
}

.authority-text p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.authority-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.stat-item {
  background: rgba(212, 165, 116, 0.2);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-gold);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.authority-highlight {
  background: rgba(212, 165, 116, 0.2);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-gold);
  margin-top: 2rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
}

/* ============================================
   SEÇÃO COMO FUNCIONA
   ============================================ */

.process-section {
  padding: 5rem 2rem;
  background-color: var(--bg-light);
}

.process-content {
  max-width: 1200px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 3rem;
}

.process-header h2 {
  margin-bottom: 1rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.process-step {
  background-color: var(--bg-white);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  position: relative;
}

.process-step:hover {
  transform: translateY(-5px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-gold) 100%);
  color: var(--bg-white);
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.process-step h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--text-light);
  font-size: 1rem;
}

.process-step::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold) 0%, transparent 100%);
}

.process-step:last-child::after {
  display: none;
}

/* ============================================
   SEÇÃO DE PROVA SOCIAL
   ============================================ */

.testimonials-section {
  padding: 5rem 2rem;
  background-color: var(--bg-white);
}

.testimonials-content {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-header h2 {
  margin-bottom: 1rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  border-top: 4px solid var(--accent-gold);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-gold) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-weight: 700;
  font-size: 1.2rem;
}

.author-info h4 {
  color: var(--primary-dark);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.author-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

.stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* ============================================
   SEÇÃO FAQ / QUEBRA DE OBJEÇÕES
   ============================================ */

.faq-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(44, 90, 160, 0.05) 0%, rgba(212, 165, 116, 0.05) 100%);
}

.faq-content {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h2 {
  margin-bottom: 1rem;
}

.faq-item {
  background-color: var(--bg-white);
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 1.5rem;
  background-color: var(--bg-white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  border: 1px solid var(--border-light);
  border-radius: 8px;
}

.faq-question:hover {
  background-color: var(--bg-light);
}

.faq-question h4 {
  color: var(--primary-dark);
  font-size: 1.1rem;
  margin: 0;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-gold);
  color: var(--bg-white);
  border-radius: 50%;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--bg-light);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 1.5rem;
  color: var(--text-light);
  margin: 0;
}

/* ============================================
   SEÇÃO CTA FINAL
   ============================================ */

.final-cta-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
  color: var(--bg-white);
  text-align: center;
}

.final-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-content h2 {
  color: var(--bg-white);
  margin-bottom: 1.5rem;
}

.final-cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.microcopy {
  background: rgba(212, 165, 116, 0.2);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-gold);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--bg-white);
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.footer-section h4 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.footer-section p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--bg-white);
}

.footer-divider {
  border-top: 1px solid rgba(212, 165, 116, 0.3);
  margin: 2rem 0;
}

.footer-bottom {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .authority-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .authority-image::after {
    display: none;
  }

  nav {
    display: none;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .explanation-grid {
    grid-template-columns: 1fr;
  }

  .authority-stats {
    grid-template-columns: 1fr;
  }

  .process-step::after {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }

  .footer-info {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero {
    padding: 3rem 1rem;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .pain-section,
  .explanation-section,
  .process-section,
  .testimonials-section,
  .faq-section,
  .final-cta-section {
    padding: 3rem 1rem;
  }

  .authority-section {
    padding: 3rem 1rem;
  }
}

/* ============================================
   ANIMAÇÕES
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   UTILITÁRIOS
   ============================================ */

.text-center {
  text-align: center;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.hidden {
  display: none;
}
