/*
Theme Name: Milena Guimarães - Advogada Previdenciarista
Theme URI: https://advmilena.com
Description: Tema profissional para advogada especializada em BPC/LOAS
Version: 1.0.0
Author: Milena Guimarães
Author URI: https://advmilena.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: milena-theme
Domain Path: /languages
Tags: legal, lawyer, attorney, bpc, loas, previdenciario
*/

/* ============================================
   RESET E VARIÁVEIS
   ============================================ */

:root {
  --primary-color: #1a2d4d;
  --secondary-color: #d4a574;
  --accent-color: #ffffff;
  --text-color: #333333;
  --light-bg: #f8f9fa;
  --border-color: #e0e0e0;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html, body {
  font-family: var(--font-body);
  color: var(--text-color);
  line-height: 1.6;
}

body {
  background-color: var(--accent-color);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  color: var(--primary-color);
}

h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
}

h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

/* ============================================
   HEADER
   ============================================ */

header {
  background-color: var(--primary-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--accent-color);
}

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

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

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

.logo-text small {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

header nav {
  display: flex;
  gap: 2rem;
}

header nav a {
  color: var(--accent-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: var(--secondary-color);
}

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

.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, rgba(26, 45, 77, 0.95) 100%);
  color: var(--accent-color);
  padding: 4rem 2rem;
  min-height: 600px;
  display: flex;
  align-items: center;
}

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

.hero-text h1 {
  color: var(--accent-color);
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.hero-text .subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.cta-button:hover {
  background-color: #c9935f;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
}

.cta-button-secondary {
  background-color: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

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

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

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

/* ============================================
   PAIN POINTS SECTION
   ============================================ */

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

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

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

.pain-intro h2 {
  margin-bottom: 1rem;
}

.pain-intro p {
  font-size: 1.1rem;
  color: #666;
}

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

.pain-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.pain-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.pain-card h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.pain-card p {
  color: #666;
  font-size: 0.95rem;
}

/* ============================================
   EXPLANATION SECTION
   ============================================ */

.explanation-section {
  padding: 4rem 2rem;
  background-color: white;
}

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

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

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

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

.explanation-item {
  padding: 2rem;
  border-left: 4px solid var(--secondary-color);
  background-color: var(--light-bg);
  border-radius: 8px;
}

.explanation-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.explanation-item p {
  color: #666;
}

/* ============================================
   AUTHORITY SECTION
   ============================================ */

.authority-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, rgba(26, 45, 77, 0.95) 100%);
  color: white;
}

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

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

.authority-text h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.authority-text p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.authority-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--secondary-color);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.oab-badge {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  margin-top: 1rem;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

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

.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: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.process-step h3 {
  margin-bottom: 1rem;
}

.process-step p {
  color: #666;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
  padding: 4rem 2rem;
  background-color: 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(--light-bg);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--secondary-color);
}

.stars {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.testimonial-text {
  font-style: italic;
  color: #666;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
}

/* ============================================
   FAQ SECTION
   ============================================ */

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

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

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

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

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

.faq-question {
  padding: 1.5rem;
  background-color: var(--light-bg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: #e8eef5;
}

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  padding: 1.5rem;
  color: #666;
  display: none;
  border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-answer {
  display: block;
}

/* ============================================
   CTA FINAL SECTION
   ============================================ */

.cta-final-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, rgba(26, 45, 77, 0.95) 100%);
  color: white;
  text-align: center;
}

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

.cta-final-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-final-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

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

footer {
  background-color: var(--primary-color);
  color: white;
  padding: 2rem;
  text-align: center;
  border-top: 3px solid var(--secondary-color);
}

footer p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

footer a {
  color: var(--secondary-color);
}

footer a:hover {
  text-decoration: underline;
}

/* ============================================
   RESPONSIVO
   ============================================ */

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

  h2 {
    font-size: 1.5rem;
  }

  .hero-content,
  .authority-content {
    grid-template-columns: 1fr;
  }

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

  header nav {
    gap: 1rem;
    font-size: 0.9rem;
  }

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

  .hero {
    min-height: auto;
    padding: 2rem;
  }

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

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

  h2 {
    font-size: 1.2rem;
  }

  .cta-button {
    display: block;
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-bottom: 1rem;
  }

  header {
    padding: 0.5rem 0;
  }

  .header-content {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }

  header nav {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  header nav a {
    display: block;
    padding: 0.5rem 0;
  }
}
