/* ==========================================================================
   ÂNGULO CONSULTORIA MKT — DESIGN SYSTEM & ESTILOS GERAIS
   Paleta: Branco, Vermelho Crimson Terroso, Preto Profundo
   Estilo: Editorial Premium / Clean Corporativo de Alto Impacto
   ========================================================================== */

/* 1. VARIÁVEIS DE ESTILO (DESIGN TOKENS) */
:root {
  /* Tons Principais de Alto Contraste - Design Equilibrado (Claro & Escuro) */
  --bg-light: #fdfdfd;          /* Branco puro/off-white suave como fundo principal do site */
  --bg-white: #ffffff;          /* Branco para cards e elementos de luz */
  --bg-dark: #000000;           /* Preto absoluto para as seções de destaque e blocos escuros */
  --bg-dark-gray: #0d0d0d;      /* Variação de cinza escuro/preto para cards escuros */
  
  --accent: #9c1a1e;            /* Vermelho Crimson terroso institucional */
  --accent-hover: #c4262b;      /* Vermelho vibrante de interação */
  --accent-light: #fdf2f2;      /* Fundo avermelhado super sutil para elementos claros */
  
  /* Cores de Texto */
  --text-dark: #222221;         /* Texto principal em fundo claro (cinza quase preto) */
  --text-dark-headings: #0d0d0c;/* Títulos principais em fundo claro */
  --text-muted: #666663;        /* Texto secundário em fundo claro */
  --text-light: #ffffff;        /* Texto principal em fundo escuro */
  --text-light-muted: #a5a5a2;  /* Texto secundário em fundo escuro */

  /* Linhas e Divisões */
  --border-color: #eae9e7;      /* Borda estilo editorial fina para fundo claro */
  --border-color-dark: #222222; /* Borda fina para divisões escuras */
  
  /* Tipografia */
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  
  /* Sombras e Micro-interações */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
  --shadow-accent: 0 10px 30px rgba(156, 26, 30, 0.15);
  
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease-out;

  --container-width: 1200px;
}

/* 2. RESET E NORMAS DE LAYOUT */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* 3. TIPOGRAFIA EDITORIAL E DETALHES */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--text-dark-headings);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

p {
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  color: var(--text-muted);
}

/* 4. COMPONENTES VISUAIS PREMIUM */

/* Badges estilo Editorial */
.section-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--accent);
  padding-left: 10px;
  line-height: 1;
}

/* Botões com Micro-interações */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  color: var(--bg-white);
  padding: 1.1rem 2.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(156, 26, 30, 0.15);
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(156, 26, 30, 0.3);
}

.btn-primary .arrow {
  margin-left: 10px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover .arrow {
  transform: translateX(5px);
}

.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  color: var(--bg-white);
  padding: 1.1rem 2.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  border: 1px solid var(--accent);
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(156, 26, 30, 0.15);
}

.btn-primary-dark:hover {
  background-color: var(--bg-white);
  color: var(--text-dark-headings);
  border-color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.btn-primary-dark .arrow {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.btn-primary-dark:hover .arrow {
  transform: translateX(5px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--text-light);
  padding: 0.9rem 2.25rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.92rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-outline-white:hover {
  border-color: var(--text-light);
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--text-dark-headings);
  padding: 0.9rem 2.25rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 4px;
  border: 1px solid var(--text-dark-headings);
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 100%;
}

.btn-outline-dark:hover {
  background-color: var(--text-dark-headings);
  color: var(--bg-white);
  transform: translateY(-2px);
}

/* Grids e Recipientes */
.section-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 7rem 1.5rem;
}

.small-container {
  max-width: 800px;
}

.grid-two-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

@media (min-width: 768px) {
  .grid-two-columns {
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
  }
}

.section-header-centered {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-header-centered .section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* 5. HEADER E MENU DE NAVEGAÇÃO */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(253, 253, 253, 0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.header-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 1.4rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-dark-headings);
  letter-spacing: -0.015em;
}

.logo-accent {
  color: var(--accent);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark-headings);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
  color: var(--text-dark-headings);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  background-color: var(--text-dark-headings);
  color: var(--bg-light);
  padding: 0.65rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.nav-cta:hover {
  background-color: var(--accent);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(156, 26, 30, 0.2);
}

/* Dropdown Menu de Serviços */
.nav-dropdown-item {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-chevron {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  border-radius: 4px;
  padding: 0.8rem 0;
  min-width: 250px;
  list-style: none;
  z-index: 1010;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.dropdown-menu a:hover {
  color: var(--accent);
  background-color: rgba(156, 26, 30, 0.04);
  padding-left: 1.8rem;
}

/* Hover em Desktop */
@media (min-width: 901px) {
  .nav-dropdown-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  
  .nav-dropdown-item:hover .dropdown-toggle .dropdown-chevron {
    transform: rotate(180deg);
  }
}

/* Ajuste Responsivo do Dropdown no Mobile */
@media (max-width: 900px) {
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    border: none;
    box-shadow: none;
    background-color: transparent;
    padding: 0.5rem 0 0 1.5rem;
    min-width: auto;
    display: none; /* Controlado via JS ou expandido por padrão */
  }

  .nav-dropdown-item.active .dropdown-menu {
    display: block;
  }
  
  .nav-dropdown-item.active .dropdown-toggle .dropdown-chevron {
    transform: rotate(180deg);
  }

  .dropdown-menu a {
    padding: 0.6rem 0;
    font-size: 0.95rem;
  }
  
  .dropdown-menu a:hover {
    padding-left: 0.2rem;
  }
}

/* Menu Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

@media (max-width: 900px) {
  .mobile-nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--bg-light);
    z-index: 1000;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
    align-items: center;
  }

  .nav-link {
    font-size: 1.3rem;
  }

  .nav-cta {
    font-size: 1.1rem;
    padding: 0.9rem 2.2rem;
  }

  .hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark-headings);
    position: relative;
    transition: var(--transition-fast);
  }

  .hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-dark-headings);
    left: 0;
    transition: var(--transition-fast);
  }

  .hamburger::before { top: -7px; }
  .hamburger::after { bottom: -7px; }

  .mobile-nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
  }

  .mobile-nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
  }

  .mobile-nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
  }
}

/* 6. HERO SECTION (PRIMEIRA DOBRA) */
.hero-section {
  padding-top: 190px;
  padding-bottom: 140px;
  background-color: var(--bg-dark);
  border-bottom: 1px solid var(--border-color-dark);
  position: relative;
  overflow: hidden;
  color: var(--text-light);
}

.hero-section .hero-title {
  color: var(--text-light);
}

.hero-section .hero-subtitle,
.hero-section .hero-microproof {
  color: var(--text-light-muted);
}

/* Detalhe editorial premium (linha fina vermelha decorativa na lateral) */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  width: 1px;
  height: 100%;
  background-color: rgba(156, 26, 30, 0.07);
}

.hero-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 2.2rem;
}

.hero-title {
  margin-bottom: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text-dark-headings);
}

.hero-subtitle {
  font-size: 1.22rem;
  color: var(--text-muted);
  max-width: 820px;
  margin: 0 auto 3.5rem auto;
  line-height: 1.7;
}

.hero-actions {
  margin-bottom: 3rem;
}

.hero-microproof {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Faixa editorial fina na base do Hero */
.hero-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--bg-dark) 0%, var(--accent) 50%, var(--bg-dark) 100%);
  opacity: 0.3;
}

/* 7. PROBLEM SECTION */
.problem-section {
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.problem-content p {
  margin-bottom: 1.8rem;
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.75;
}

.problem-content p:last-child {
  margin-bottom: 0;
}

.problem-content p strong {
  color: var(--accent);
  font-weight: 700;
}

/* 8. POSICIONAMENTO SECTION (DARK DESIGN DE ALTO IMPACTO) */
.reframing-section {
  background-color: var(--bg-light);
  padding: 1.5rem 0;
}

.reframing-card {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 5.5rem 4rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.reframing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--accent);
}

.reframing-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  border-left: 2px solid var(--accent);
  padding-left: 8px;
  line-height: 1;
}

.reframing-title {
  color: var(--bg-white);
  margin-bottom: 3.5rem;
  max-width: 820px;
}

.reframing-text-left p {
  color: var(--text-light-muted);
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.reframing-text-left p strong {
  color: var(--bg-white);
  font-weight: 600;
}

.reframing-text-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
}

.reframing-text-right .highlight-text {
  font-size: 1.3rem;
  line-height: 1.65;
  color: var(--bg-white);
  font-family: var(--font-serif);
  border-left: 2px solid var(--accent);
  padding-left: 1.8rem;
}

@media (max-width: 767px) {
  .reframing-card {
    padding: 3.5rem 2rem;
  }
}

/* 9. SERVICES SECTION (NOSSOS PILARES) */
.services-section {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 3.5rem;
  border-radius: 4px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(156, 26, 30, 0.25);
  box-shadow: var(--shadow-md);
}

.service-header-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--text-dark-headings);
  font-weight: 600;
}

.service-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* 10. PRICING SECTION (PACOTES PRONTOS - ALTO DESIGN) */
.pricing-section {
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

@media (min-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.pricing-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* Design Diferenciado para o Plano Pro (Destaque do Meio) */
.pricing-card.highlighted {
  background-color: var(--bg-dark);
  border-color: var(--accent);
  position: relative;
  box-shadow: var(--shadow-accent);
  color: var(--text-light);
}

.pricing-card.highlighted h3,
.pricing-card.highlighted .plan-title {
  color: var(--bg-white);
}

.pricing-card.highlighted .plan-subtitle {
  color: var(--text-light-muted);
}

.pricing-card.highlighted .feature-list li {
  color: var(--text-light);
}

@media (min-width: 992px) {
  .pricing-card.highlighted {
    transform: scale(1.03) translateY(-5px);
  }
  .pricing-card.highlighted:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 25px 60px rgba(156, 26, 30, 0.25);
  }
}

.card-header-pricing {
  margin-bottom: 2.5rem;
}

.plan-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  background-color: var(--bg-light);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border-color);
}

.pricing-card.highlighted .plan-badge.accent-badge {
  color: var(--bg-white);
  background-color: var(--accent);
  border-color: var(--accent);
}

.plan-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.plan-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.plan-features {
  margin-bottom: 3rem;
  flex-grow: 1;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.feature-list li {
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  line-height: 1.5;
}

.check-icon {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
}

.pricing-card.highlighted .accent-check {
  color: var(--accent-hover);
}

.card-footer-pricing {
  margin-top: auto;
}

/* 11. METHOD SECTION (METODOLOGIA) */
.method-section {
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.method-steps {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  margin-bottom: 4rem;
  position: relative;
}

.method-steps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  width: 1px;
  height: 100%;
  background-color: var(--border-color);
  z-index: 1;
}

.method-step {
  display: flex;
  position: relative;
  z-index: 2;
}

.step-num-col {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  transition: var(--transition-fast);
}

.step-num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

.method-step:hover .step-num-col {
  background-color: var(--accent);
  border-color: var(--accent);
}

.method-step:hover .step-num {
  color: var(--bg-white);
}

.step-content-col {
  padding-top: 4px;
}

.step-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 820px;
  line-height: 1.7;
}

.method-conclusion-card {
  background-color: var(--bg-white);
  border-left: 4px solid var(--accent);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border-radius: 0 4px 4px 0;
  margin-top: 5rem;
}

.method-conclusion-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.method-conclusion-text strong {
  color: var(--accent);
}

/* 12. ABOUT SECTION (SOBRE MIM) */
.about-section {
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-frame {
  background: var(--bg-white);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  max-width: 440px;
  width: 100%;
}

.profile-image {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: var(--transition-smooth);
}

.image-frame:hover .profile-image {
  filter: grayscale(0%);
}

.image-caption {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-align: center;
  font-weight: 700;
}

.about-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-intro {
  margin-bottom: 1.8rem;
  font-size: 1.55rem;
  line-height: 1.45;
  color: var(--text-dark-headings);
  font-weight: 600;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.about-text p strong {
  color: var(--text-dark-headings);
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.25rem;
  border-radius: 24px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.badge-icon {
  color: var(--accent);
  margin-right: 8px;
  font-size: 0.9rem;
}

/* 13. RESULTS SECTION (COMPROMISSO COM O SEU RESULTADO - CLARO) */
.results-section {
  background-color: var(--bg-light);
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-color);
}

.results-section .section-badge {
  color: var(--accent);
  border-left-color: var(--accent);
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 6rem;
}

@media (min-width: 768px) {
  .results-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.metric-card {
  text-align: center;
  border-top: 1px solid var(--border-color);
  padding-top: 2.5rem;
}

.metric-val {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.commitment-card-title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark-headings);
}

.metric-label {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Bloco Otimizado pós-depoimentos (Design Asymmetric) */
.results-highlight-block {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent);
  padding: 4rem;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}

.highlight-block-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--text-dark-headings);
  margin-bottom: 1.5rem;
}

.highlight-block-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
}

@media (max-width: 767px) {
  .results-highlight-block {
    padding: 2.5rem 1.8rem;
  }
}

/* 14. FAQ SECTION */
.faq-section {
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(156, 26, 30, 0.2);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.8rem 2.2rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark-headings);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.faq-icon {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-icon::before {
  top: 6px;
  left: 0;
  width: 100%;
  height: 2px;
}

.faq-icon::after {
  top: 0;
  left: 6px;
  width: 2px;
  height: 100%;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-question[aria-expanded="true"] .faq-icon::before {
  background-color: var(--accent);
}

.faq-question[aria-expanded="true"] {
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 2.2rem 1.8rem 2.2rem;
}

.faq-answer p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* 15. CTA FINAL SECTION */
.cta-final-section {
  background-color: var(--bg-light);
  padding: 3rem 0;
}

.cta-card {
  background-color: var(--bg-dark-gray);
  border: 1px solid var(--border-color-dark);
  text-align: center;
  padding: 6rem 3rem;
  border-radius: 8px;
  max-width: 1040px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  color: var(--text-light);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent);
  border-radius: 8px 0 0 8px;
}

.cta-title {
  color: var(--bg-white);
  margin-bottom: 1.8rem;
}

.cta-subtitle {
  color: var(--text-light-muted);
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
  font-size: 1.15rem;
  line-height: 1.75;
}

@media (max-width: 767px) {
  .cta-card {
    padding: 4rem 1.5rem;
  }
}

/* 16. FOOTER (RODAPÉ) */
.main-footer {
  background-color: var(--bg-dark);
  color: var(--text-light-muted);
  border-top: 1px solid var(--border-color-dark);
  padding: 6rem 0 2.5rem 0;
}

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 4fr 5fr 3fr;
    gap: 5rem;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--bg-white);
}

.footer-tagline {
  font-size: 0.92rem;
  color: var(--text-light-muted);
  line-height: 1.6;
}

.footer-section-title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bg-white);
  margin-bottom: 1.8rem;
}

.footer-contact-list, .footer-social-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-contact-list li {
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-contact-list a:hover, .footer-social-list a:hover {
  color: var(--bg-white);
  text-decoration: underline;
}

.footer-social-list a {
  font-size: 0.92rem;
  display: inline-block;
}

.footer-bottom {
  border-top: 1px solid var(--border-color-dark);
  padding-top: 2.5rem;
}

.footer-bottom-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .footer-bottom-container {
    flex-direction: row;
  }
}

.copyright, .developer-credit {
  font-size: 0.82rem;
  color: var(--text-light-muted);
}

/* Botões específicos para os cards de serviços */
.btn-service-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--text-dark-headings);
  padding: 0.85rem 1.8rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 4px;
  border: 1px solid var(--text-dark-headings);
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-top: 2.5rem; /* Margem generosa acima do botão */
  text-align: center;
  width: fit-content;
}

.btn-service-card:hover {
  background-color: var(--text-dark-headings);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   MOCKUPS E COMPONENTES DE SERVIÇOS (ABORDAGEM DIFERENCIADA)
   ========================================================================== */

/* 1. TABELA COMPARATIVA (MARKETING ESTRATÉGICO) */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin: 4rem 0;
}

@media (min-width: 768px) {
  .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.comparison-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.comparison-card.card-negative {
  border-top: 4px solid var(--accent);
}

.comparison-card.card-positive {
  border-top: 4px solid #1e4620; /* Verde Escuro Terroso */
}

.comparison-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-negative .comparison-title {
  color: var(--accent);
}

.card-positive .comparison-title {
  color: #1e4620;
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.comparison-list li .icon-cross {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.comparison-list li .icon-check {
  color: #1e4620;
  font-weight: 700;
  flex-shrink: 0;
}

/* 2. MOCKUP DE DASHBOARD (GOOGLE ADS & ANALYTICS) */
.dashboard-mockup {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  margin: 4rem auto;
  max-width: 900px;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.dashboard-title-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-icon-dot {
  width: 10px;
  height: 10px;
  background-color: #1e4620;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(30, 70, 32, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(30, 70, 32, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(30, 70, 32, 0); }
}

.dashboard-title-area h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark-headings);
}

.dashboard-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  background-color: var(--bg-light);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .dashboard-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.dashboard-tile {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 1.5rem;
  transition: transform 0.2s ease;
}

.dashboard-tile:hover {
  transform: translateY(-2px);
}

.tile-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.tile-value {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark-headings);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.tile-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* 3. SIMULADOR DE BUSCA DO GOOGLE (SEO) */
.google-serp-mockup {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-md);
  margin: 4rem auto;
  max-width: 800px;
}

.serp-search-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 0.75rem 1.5rem;
  margin-bottom: 2rem;
  background-color: var(--bg-light);
  gap: 12px;
}

.serp-search-text {
  font-size: 0.95rem;
  color: var(--text-dark-headings);
  font-weight: 500;
}

.serp-result-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.serp-url-line {
  font-size: 0.82rem;
  color: var(--text-muted);
  word-break: break-all;
}

.serp-title-line {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: #1a0dab; /* Azul de Links do Google */
  cursor: pointer;
  line-height: 1.25;
}

.serp-title-line:hover {
  text-decoration: underline;
}

.serp-rating-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #f4b400; /* Amarelo Google */
}

.serp-stars {
  font-size: 0.95rem;
  line-height: 1;
}

.serp-reviews-count {
  color: var(--text-muted);
}

.serp-description-line {
  font-size: 0.92rem;
  color: #4d5156; /* Cinza Google */
  line-height: 1.5;
}

.serp-description-line strong {
  color: var(--text-dark-headings);
}

.serp-sitelinks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--border-color);
}

@media (min-width: 576px) {
  .serp-sitelinks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sitelink-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.sitelink-title {
  font-size: 0.95rem;
  color: #1a0dab;
  cursor: pointer;
}

.sitelink-title:hover {
  text-decoration: underline;
}

.sitelink-desc {
  font-size: 0.8rem;
  color: #4d5156;
}

/* 4. QUADRO KANBAN (ORGANIZAÇÃO DE PROCESSOS) */
.kanban-mockup {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 4rem 0;
}

@media (min-width: 992px) {
  .kanban-mockup {
    grid-template-columns: repeat(3, 1fr);
  }
}

.kanban-column {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.kanban-column-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.8rem;
}

.kanban-column-title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark-headings);
}

.kanban-card-count {
  font-size: 0.75rem;
  font-weight: 700;
  background-color: rgba(0, 0, 0, 0.06);
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  color: var(--text-muted);
}

.kanban-card-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 1.4rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s ease;
}

.kanban-card-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.kanban-card-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  width: fit-content;
}

.badge-red {
  background-color: rgba(156, 26, 30, 0.1);
  color: var(--accent);
}

.badge-green {
  background-color: rgba(30, 70, 32, 0.1);
  color: #1e4620;
}

.badge-dark {
  background-color: rgba(0, 0, 0, 0.08);
  color: var(--text-dark-headings);
}

.kanban-card-title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark-headings);
  line-height: 1.4;
}

.kanban-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px dashed var(--border-color);
  padding-top: 0.6rem;
}

.kanban-card-user {
  display: flex;
  align-items: center;
  gap: 5px;
}

.user-avatar-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--bg-white);
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 5. Variação: HERO CLARO */
.hero-section.hero-light {
  background-color: var(--bg-light);
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-color);
}
.hero-section.hero-light .hero-title {
  color: var(--text-dark-headings);
}
.hero-section.hero-light .hero-subtitle {
  color: var(--text-muted);
}
.hero-section.hero-light .hero-eyebrow {
  color: var(--accent);
  border-left-color: var(--accent);
}
.hero-section.hero-light .hero-actions .btn-primary {
  box-shadow: 0 4px 15px rgba(156, 26, 30, 0.15);
}

/* 6. Variação: ETAPAS HORIZONTAIS (GOOGLE ADS) */
.steps-horizontal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 4rem;
}
@media (min-width: 992px) {
  .steps-horizontal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.step-card-horizontal {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.3s ease;
}
.step-card-horizontal:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.step-card-horizontal .step-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.step-card-horizontal .step-title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark-headings);
}
.step-card-horizontal .step-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 7. Variação: LINHA DO TEMPO VERTICAL (SEO) */
.vertical-timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  margin-top: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.vertical-timeline-steps::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background-color: var(--border-color);
}
.timeline-step-item {
  display: flex;
  gap: 2rem;
  position: relative;
  padding-left: 3rem;
}
.timeline-dot {
  position: absolute;
  left: 11px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 4px solid var(--accent);
  z-index: 2;
}
.timeline-step-content {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  width: 100%;
}
.timeline-step-content h3 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark-headings);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.timeline-step-content h3 .step-badge-num {
  background-color: var(--accent);
  color: var(--bg-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}
.timeline-step-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}
