/* =====================================================
   PSICOCOMPANY - ESTILOS PRINCIPAIS
   Arquivo: styles.css
   ===================================================== */

/* ===== RESET E CONFIGURAÇÕES GLOBAIS ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #7c65b5;
  --primary-dark: #6952a0;
  --primary-light: #a996dd;
  --accent: #EC4899;
  --dark: #2d1f3e;
  --gray: #6b5d7a;
  --gray-light: #9b8fab;
  --bg-light: #faf9fc;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #7c65b5 0%, #a996dd 100%);
  --gradient-dark: linear-gradient(135deg, #6952a0 0%, #8b72c4 100%);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  padding-top: 0;
}

/* ===== HEADER - MENU FIXO ===== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(124, 101, 221, 0.08);
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 30px rgba(124, 101, 221, 0.12);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  max-width: 1400px;
  margin: 0 auto;
  height: 72px;
}

.left-section {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* ===== LOGO ===== */
.logo {
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(135deg, #7c65b5 0%, #a996dd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: transform 0.3s ease;
  white-space: nowrap;
}

.logo:hover {
  transform: scale(1.05);
}

/* ===== NAVEGAÇÃO DESKTOP ===== */
.nav-left {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-left a {
  text-decoration: none;
  color: #3c2e50;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.nav-left a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(169, 150, 221, 0.1), transparent);
  transition: left 0.5s ease;
}

.nav-left a:hover::before {
  left: 100%;
}

.nav-left a:hover {
  background: rgba(169, 150, 221, 0.08);
  color: #7c65b5;
}

.nav-right {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-right a {
  text-decoration: none;
  color: #3c2e50;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-right a:hover {
  background: rgba(169, 150, 221, 0.08);
  color: #7c65b5;
}

/* ===== BOTÕES DO HEADER ===== */
.nav-right .btn-header-primary {
  background: linear-gradient(135deg, #7c65b5 0%, #a996dd 100%);
  color: #ffffff !important;
  padding: 10px 24px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(124, 101, 181, 0.25);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.nav-right .btn-header-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #6952a0 0%, #8b72c4 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.nav-right .btn-header-primary:hover::before {
  opacity: 1;
}

.nav-right .btn-header-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(124, 101, 181, 0.4);
  color: #ffffff !important;
}

.nav-right .btn-header-secondary {
  border: 2px solid #7c65b5 !important;
  color: #7c65b5 !important;
  padding: 8px 22px !important;
  font-weight: 600 !important;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.nav-right .btn-header-secondary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #7c65b5;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  z-index: -1;
}

.nav-right .btn-header-secondary:hover::before {
  width: 300px;
  height: 300px;
}

.nav-right .btn-header-secondary:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  border-color: #7c65b5 !important;
}

/* ===== MENU MOBILE - TOGGLE ===== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #3c2e50;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 8px;
}

.menu-toggle:hover {
  background: rgba(169, 150, 221, 0.1);
}

.menu-toggle.active {
  transform: rotate(90deg);
}

/* ===== MENU MOBILE - DROPDOWN ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  padding: 20px;
  gap: 8px;
  box-shadow: 0 4px 30px rgba(124, 101, 181, 0.15);
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}

.mobile-menu.active {
  display: flex;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu a {
  text-decoration: none;
  color: #3c2e50;
  font-weight: 500;
  font-size: 15px;
  padding: 12px 18px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  background: rgba(169, 150, 221, 0.1);
  color: #7c65b5;
}

.mobile-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 101, 181, 0.2), transparent);
  margin: 8px 0;
}

/* ===== MAIN - CONTEÚDO PRINCIPAL ===== */
main {
  padding-top: 72px;
  min-height: 100vh;
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HERO SECTION - LAYOUT 2 COLUNAS ===== */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #f4f2fa 0%, #e8e4f7 50%, #ddd8f0 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(124, 101, 181, 0.08) 0%, transparent 70%);
  top: -400px;
  right: -200px;
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(169, 150, 221, 0.06) 0%, transparent 70%);
  bottom: -300px;
  left: -100px;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  text-align: left;
  padding-right: 20px;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.hero-image-circle {
  position: relative;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(124, 101, 181, 0.3);
  border: 6px solid var(--white);
  animation: floatImage 6s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-image-circle::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, rgba(124, 101, 181, 0.1) 0%, transparent 50%);
  border-radius: 50%;
  z-index: -1;
}

.hero-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-decorative-circle {
  position: absolute;
  border-radius: 50%;
  border: 3px solid var(--primary-light);
  opacity: 0.3;
  animation: pulse 3s ease-in-out infinite;
}

.hero-decorative-circle-1 {
  width: 410px;
  height: 410px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-decorative-circle-2 {
  width: 450px;
  height: 450px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 1s;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.5; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(124, 101, 181, 0.1);
  animation: slideDownHero 0.8s ease-out;
}

@keyframes slideDownHero {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -1.2px;
  animation: slideUp 0.8s ease-out 0.2s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 .gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.65;
  max-width: 550px;
  animation: slideUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: slideUp 0.8s ease-out 0.6s both;
}

/* ===== BOTÕES GERAIS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(124, 101, 181, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(124, 101, 181, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* ===== SEÇÕES GERAIS ===== */
.how-it-works,
.target-audience,
.differentials,
.testimonials,
.cta-final {
  padding: 100px 24px;
}

.how-it-works {
  background: var(--white);
}

.target-audience {
  background: var(--bg-light);
}

.differentials {
  background: var(--white);
}

.testimonials {
  background: var(--bg-light);
}

.cta-final {
  background: linear-gradient(135deg, #f4f2fa 0%, #e8e4f7 100%);
  text-align: center;
}

/* ===== HEADERS DAS SEÇÕES ===== */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-title {
  font-size: 42px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== GRIDS ===== */
.steps-grid,
.audience-grid,
.differentials-grid,
.testimonials-grid {
  display: grid;
  gap: 32px;
  margin-top: 60px;
}

.steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.audience-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.differentials-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ===== CARDS - COMO FUNCIONA ===== */
.step-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 20px;
  transition: all 0.3s;
  background: var(--bg-light);
  position: relative;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(124, 101, 181, 0.1);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(124, 101, 181, 0.3);
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.step-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.step-card p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
}

/* ===== CARDS - PARA QUEM ===== */
.audience-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.audience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(124, 101, 181, 0.15);
  border-color: var(--primary-light);
}

.audience-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.audience-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.audience-card p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.audience-tag {
  display: inline-block;
  background: rgba(124, 101, 181, 0.1);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* ===== ACADEMY SECTION ===== */
.academy-section {
  padding: 100px 24px;
  background: linear-gradient(135deg, #7c65b5 0%, #8b72c4 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.academy-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -250px;
  right: -100px;
}

.academy-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.academy-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.academy-section h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.academy-section p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0.95;
}

.academy-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.academy-feature {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.academy-feature-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.academy-feature h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.academy-feature p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 0;
}

/* ===== CARDS - DIFERENCIAIS ===== */
.differential-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 16px;
  background: var(--bg-light);
  transition: all 0.3s;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.differential-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-light);
  background: var(--white);
  box-shadow: 0 15px 35px rgba(124, 101, 181, 0.1);
}

.differential-icon {
  font-size: 48px;
  margin: 0 auto;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
}

.differential-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.differential-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* ===== CARDS - DEPOIMENTOS ===== */
.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-quote {
  font-size: 48px;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.testimonial-age {
  font-size: 14px;
  color: var(--gray);
}

/* ===== CTA FINAL ===== */
.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-final h2 {
  font-size: 42px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.cta-final p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-link {
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  font-size: 16px;
  margin-top: 20px;
  font-weight: 600;
  transition: all 0.3s;
}

.cta-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ===== FOOTER ===== */
/* ===== FOOTER COMPACTO ===== */
.main-footer {
  background: linear-gradient(135deg, #2d1f3e 0%, #1f1530 100%);
  color: #ffffff;
  padding: 50px 24px 24px;
  position: relative;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 150, 221, 0.3), transparent);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer Content */
.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 1100px;
  margin: 0 auto;
}

/* Brand */
.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, #a996dd 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  font-size: 14px;
  margin: 0;
}

/* Links */
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
  transition: all 0.2s ease;
}

.footer-column a:hover {
  color: #a996dd;
  padding-left: 4px;
}

/* Social */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(169, 150, 221, 0.12);
  border-radius: 50%;
  color: #a996dd;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(169, 150, 221, 0.15);
  margin-bottom: 0;
  padding: 0;
}

.footer-social a:hover {
  background: rgba(169, 150, 221, 0.25);
  transform: translateY(-3px);
  border-color: rgba(169, 150, 221, 0.4);
  padding-left: 0;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
}

/* Footer Info (Antigo - Manter para compatibilidade) */
.footer-info {
  padding: 40px 24px;
  background: var(--dark);
  color: var(--white);
  text-align: center;
}

.footer-info p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
}

.footer-info .address {
  margin-top: 16px;
  font-weight: 600;
  color: var(--primary-light);
}

/* =====================================================
   RESPONSIVO - MOBILE FIRST
   ===================================================== */

@media (max-width: 1100px) {
  .topbar {
    padding: 16px 24px;
    height: 68px;
  }

  main {
    padding-top: 68px;
  }

  .mobile-menu {
    top: 68px;
  }

  .left-section {
    gap: 24px;
  }

  .logo {
    font-size: 24px;
  }

  .nav-left a,
  .nav-right a {
    padding: 8px 14px;
    font-size: 13px;
  }

  .nav-right .btn-header-primary {
    padding: 8px 20px !important;
  }

  .nav-right .btn-header-secondary {
    padding: 6px 18px !important;
  }
}

@media (max-width: 968px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 24px;
  }

  .hero-content {
    text-align: center;
    padding-right: 0;
  }

  .hero-image-wrapper {
    order: -1;
    justify-content: center;
  }

  .hero-image-circle {
    width: 320px;
    height: 320px;
  }

  .hero-decorative-circle-1 {
    width: 350px;
    height: 350px;
  }

  .hero-decorative-circle-2 {
    width: 390px;
    height: 390px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 17px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .section-title {
    font-size: 32px;
  }

  .steps-grid,
  .audience-grid,
  .differentials-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .academy-features {
    grid-template-columns: 1fr;
  }

  /* Footer Responsivo */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    max-width: 100%;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .footer-column {
    text-align: center;
  }

  .footer-column a {
    padding-left: 0 !important;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .topbar {
    padding: 14px 20px;
    height: 64px;
  }

  main {
    padding-top: 64px;
  }

  .mobile-menu {
    top: 64px;
    max-height: calc(100vh - 64px);
  }

  .hero {
    padding: 60px 0;
  }
}

@media (max-width: 640px) {
  .hero-wrapper {
    gap: 40px;
  }

  .hero-image-circle {
    width: 260px;
    height: 260px;
  }

  .hero-decorative-circle-1 {
    width: 290px;
    height: 290px;
  }

  .hero-decorative-circle-2 {
    width: 330px;
    height: 330px;
  }

  .hero {
    padding: 40px 0 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: 28px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  /* Footer Mobile */
  .main-footer {
    padding: 40px 20px 20px;
  }

  .footer-content {
    gap: 30px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-logo {
    font-size: 24px;
  }

  .footer-tagline {
    font-size: 13px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 20px;
  }

  .topbar {
    padding: 12px 16px;
    height: 60px;
  }

  main {
    padding-top: 60px;
  }

  .mobile-menu {
    top: 60px;
    padding: 16px;
    max-height: calc(100vh - 60px);
  }

  .hero {
    padding: 30px 0 50px;
  }

  .hero-wrapper {
    gap: 30px;
  }

  .hero-image-circle {
    width: 240px;
    height: 240px;
  }

  .hero-decorative-circle-1 {
    width: 270px;
    height: 270px;
  }

  .hero-decorative-circle-2 {
    width: 310px;
    height: 310px;
  }
}