/* BRAND KIT - MENTORIA SENHORA DE SI */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /*--roxo-profundo: #4B3A67;     /* Nanã - Sabedoria */
  /*--lavanda-turva: #A89BB4;     /* Cuidado suave */
  /*--terra-andes: #7A4E2D;       /* Pachamama - Força feminina */
  /*--ouro-calmo: #C3A464;        /* Sagrado - CTAs */
  /*--branco-nevoado: #F4F1EC;    /* Fundos, espaços */
  /*--cinza-argiloso: #837C85;    /* Bordas, sombras */
  --argila-viva: #C48A55;       /* Destaques orgânicos */
  /*--folha-cura: #5C6B3C;        /* Renovação */
  --roxo-profundo: #4B3A67;      /* igual ao Tailwind */
  --lavanda-turva: #9B8BB4;      /* usar lavender-turva do Tailwind */
  --terra-andes: #7A4E2D;
  --ouro-calmo: #CFA95D;         /* usar gold-accent do Tailwind */
  --branco-nevoado: #F4F1EC;
  --cinza-argiloso: #837C85;
  --folha-cura: #6B8E5A;         /* igual ao Tailwind */
  --deep-purple: #4A3B5F;  
}

/* Background Images */
.bg-nature {
  background: url('images/bg1.jpg') center center / cover no-repeat fixed;
}

.bg-woman {
  background: url('images/bg2.jpg') center center / cover no-repeat fixed;
}

.bg-organic {
  background: url('images/bg3.jpg') center center / cover no-repeat fixed;
}

body {
  font-family: 'Lato', sans-serif;
  background: var(--branco-nevoado);
  color: var(--roxo-profundo);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--roxo-profundo);
}

h1 { font-size: 3rem; font-weight: 600; }
h2 { font-size: 2.25rem; font-weight: 500; }
h3 { font-size: 1.875rem; font-weight: 500; }

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

@media (min-width: 1280px) {
  .container {
    padding: 0 4rem;
  }
}

/* Header */
.header {
  background: linear-gradient(135deg, var(--roxo-profundo), var(--lavanda-turva));
  box-shadow: 0 2px 8px rgba(75, 58, 103, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.header img {
  height: 50px;
  width: auto;
}

.nav {
  display: none;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
    gap: 2rem;
  }

  .nav a {
    color: var(--branco-nevoado);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    transition: color 0.3s;
  }

  .nav a:hover {
    color: var(--ouro-calmo);
  }
}

.btn-primary {
  background: var(--ouro-calmo);
  color: var(--roxo-profundo);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(195, 164, 100, 0.3);
}

.btn-primary:hover {
  background: var(--terra-andes);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(122, 78, 45, 0.4);
}

.btn-secondary {
  background: #f3f4f6;
  color: #374151;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-secondary:hover {
  background: #e5e7eb;
}

/* Main */
main {
  padding-top: 4rem;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, rgba(75, 58, 103, 0.8), rgba(168, 155, 180, 0.8)), url('images/logo.png') center center / 300px no-repeat;
  background-blend-mode: overlay;
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,60 C300,100 600,20 900,60 C1050,80 1200,40 1200,60 L1200,120 L0,120 Z" fill="rgba(195,164,100,0.2)"/></svg>');
  background-size: cover;
  animation: wave 20s infinite linear;
}

@keyframes wave {
  0% { transform: translateX(0); }
  100% { transform: translateX(-1200px); }
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--branco-nevoado);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 5rem;
  }
}

.hero p {
  font-size: 1.5rem;
  color: var(--lavanda-turva);
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  font-weight: 300;
}

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-white {
  background: var(--branco-nevoado);
}

.section-gray {
  background: linear-gradient(135deg, rgba(168, 155, 180, 0.1), rgba(244, 241, 236, 0.8));
}

.section-purple {
  background: linear-gradient(135deg, var(--roxo-profundo), var(--lavanda-turva));
}

/* Elementos Gráficos Hierárquicos */
.section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--ouro-calmo), transparent);
  opacity: 0.3;
}

.section-white::after {
  background: linear-gradient(90deg, transparent, var(--folha-cura), transparent);
}

.section-purple::after {
  background: linear-gradient(90deg, transparent, var(--branco-nevoado), transparent);
}

/* Folhagens decorativas */
.folhagem-decorativa {
  position: absolute;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.folhagem-top-right {
  top: 2rem;
  right: 2rem;
  width: 120px;
  height: 80px;
}

.folhagem-bottom-left {
  bottom: 2rem;
  left: 2rem;
  width: 100px;
  height: 70px;
  transform: rotate(180deg);
}

/* Ondas decorativas */
.onda-decorativa {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,60 C300,100 600,20 900,60 C1050,80 1200,40 1200,60 L1200,120 L0,120 Z" fill="rgba(195,164,100,0.05)"/></svg>');
  background-size: cover;
  animation: onda-suave 25s infinite linear;
}

@keyframes onda-suave {
  0% { transform: translateX(0); }
  100% { transform: translateX(-1200px); }
}

/* Cards com Glassmorphism aprimorado e melhor legibilidade */
.card {
  background: rgba(244, 241, 236, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(75, 58, 103, 0.15);
  transition: all 0.3s ease;
  border: 1px solid rgba(195, 164, 100, 0.4);
  position: relative;
  overflow: hidden;
  color: var(--roxo-profundo);
}

.card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(195,164,100,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(75, 58, 103, 0.25);
  border-color: rgba(195, 164, 100, 0.6);
  background: rgba(244, 241, 236, 0.98);
}

.card:hover::before {
  opacity: 1;
}

/* Melhorar legibilidade do texto nos cards */
.card h3, .card h4, .card p {
  color: var(--roxo-profundo) !important;
  text-shadow: none !important;
}

.card p {
  opacity: 0.9 !important;
  line-height: 1.6 !important;
  color: var(--roxo-profundo) !important;
}

/* Garantir legibilidade geral do texto */
* {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Melhorar legibilidade em elementos específicos */
.text-deep-purple {
  color: var(--roxo-profundo) !important;
}

.text-lavender-turva {
  color: var(--lavanda-turva) !important;
}

.text-gold-accent {
  color: var(--ouro-calmo) !important;
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--roxo-profundo);
}

.card p {
  color: var(--cinza-argiloso);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Grid */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-cols-1 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Text utilities */
.text-center {
  text-align: center;
}

.text-purple {
  color: var(--roxo-profundo);
}

.text-blue {
  color: var(--lavanda-turva);
}

.text-green {
  color: var(--folha-cura);
}

.text-yellow {
  color: var(--argila-viva);
}

.text-gold {
  color: var(--ouro-calmo);
}

.font-bold {
  font-weight: bold;
}

.font-semibold {
  font-weight: 600;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

/* Onboarding layouts */
.onboarding-blue {
  min-height: 100vh;
  padding: 4rem 0;
  background: #eff6ff;
}

.onboarding-green {
  min-height: 100vh;
  padding: 4rem 0;
  background: #f0fdf4;
}

.onboarding-yellow {
  min-height: 100vh;
  padding: 4rem 0;
  background: #fffbeb;
}

.onboarding-content {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.onboarding-card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  color: #374151;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--terra-andes), var(--argila-viva));
  color: var(--branco-nevoado);
  padding: 5rem 0 3rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--ouro-calmo);
}

.footer .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer .container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--ouro-calmo);
  font-family: 'Playfair Display', serif;
}

.footer ul {
  list-style: none;
}

.footer a {
  color: var(--lavanda-turva);
  text-decoration: none;
  transition: all 0.3s;
  font-family: 'Lato', sans-serif;
}

.footer a:hover {
  color: var(--ouro-calmo);
  transform: translateX(4px);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cinza-argiloso);
  text-align: center;
  color: var(--cinza-argiloso);
}

/* Elementos Visuais - Folhagens */
.folhagem {
  position: absolute;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.folhagem-top-right {
  top: 2rem;
  right: 2rem;
  width: 120px;
  height: 80px;
}

.folhagem-bottom-left {
  bottom: 2rem;
  left: 2rem;
  width: 100px;
  height: 70px;
  transform: rotate(180deg);
}

/* Elementos Visuais - Ondas */
.onda-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,60 C300,100 600,20 900,60 C1050,80 1200,40 1200,60 L1200,120 L0,120 Z" fill="rgba(195,164,100,0.1)"/></svg>');
  background-size: cover;
  animation: onda-flow 20s infinite linear;
}

@keyframes onda-flow {
  0% { transform: translateX(0); }
  100% { transform: translateX(-1200px); }
}

/* Ícones SVG inline */
.icon-fenix {
  width: 48px;
  height: 48px;
  fill: var(--ouro-calmo);
}

.icon-web3 {
  width: 48px;
  height: 48px;
  fill: var(--roxo-profundo);
}

.icon-esg {
  width: 48px;
  height: 48px;
  fill: var(--folha-cura);
}

.icon-vida-simples {
  width: 48px;
  height: 48px;
  fill: var(--argila-viva);
}

.icon-folha {
  width: 24px;
  height: 24px;
  fill: var(--folha-cura);
}

/* Mobile menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--branco-nevoado);
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-mobile {
  display: none;
}

@media (max-width: 767px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-mobile.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--branco-nevoado);
    box-shadow: 0 2px 4px rgba(75, 58, 103, 0.1);
    padding: 1rem;
  }

  .nav-mobile a {
    display: block;
    padding: 0.5rem 0;
    color: var(--roxo-profundo);
    text-decoration: none;
  }
}

/* Elementos Visuais Orgânicos */
.organic-decoration {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--lavanda-turva);
  opacity: 0.1;
  z-index: -1;
}

.section-divider::after {
  content: '';
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0,10 Q25,5 50,10 T100,10" stroke="%23C3A464" stroke-width="2" fill="none"/></svg>');
  height: 20px;
  width: 100%;
  display: block;
}

/* Footer Section Styles */
.footer-section {
  background: linear-gradient(135deg, var(--roxo-profundo) 0%, var(--terra-andes) 100%);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0,0 Q25,10 50,0 T100,0 L100,20 L0,20 Z" fill="%23F4F1EC" opacity="0.1"/></svg>');
  background-repeat: repeat-x;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--ouro-calmo);
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.footer-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--ouro-calmo);
}

.footer-link {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  font-weight: 400;
}

.footer-link:hover {
  color: var(--ouro-calmo);
  padding-left: 0.5rem;
}

.footer-link i {
  margin-right: 0.5rem;
  width: 20px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: var(--ouro-calmo);
  color: white;
  transform: translateY(-3px);
}

.newsletter-form {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.newsletter-input {
  border: none;
  background: rgba(255,255,255,0.2);
  color: white;
  border-radius: 25px;
  padding: 0.8rem 1.5rem;
  width: 100%;
  margin-bottom: 1rem;
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.7);
}

.newsletter-input:focus {
  outline: none;
  background: rgba(255,255,255,0.3);
  color: white;
}

.newsletter-btn {
  background: var(--ouro-calmo);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.newsletter-btn:hover {
  background: var(--terra-andes);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 2rem 0;
  margin-top: 3rem;
  text-align: center;
}

.footer-info {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.contact-item i {
  margin-right: 1rem;
  color: var(--ouro-calmo);
  width: 20px;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .footer-section {
    padding: 3rem 0 1.5rem;
  }
  .footer-logo {
    font-size: 2rem;
  }
}

/* Hero About */
.about-hero {
  background: linear-gradient(135deg, var(--roxo-profundo) 0%, var(--lavanda-turva) 100%);
  color: white;
  padding: 8rem 0 5rem;
  margin-top: 80px;
  position: relative;
}

.about-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0,20 Q25,0 50,20 T100,20 L100,20 L0,20 Z" fill="%23F4F1EC"/></svg>');
  background-repeat: repeat-x;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  opacity: 0.9;
  max-width: 600px;
}

/* Story Section */
.story-section {
  padding: 5rem 0;
}

.story-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--lavanda-turva) 0%, transparent 70%);
  opacity: 0.05;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--roxo-profundo);
  margin-bottom: 2rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--ouro-calmo);
}

/* Arquétipos */
.archetypes-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--branco-nevoado) 0%, rgba(168, 155, 180, 0.1) 100%);
}

.archetype-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.archetype-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.archetype-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  color: white;
  position: relative;
  z-index: 2;
}

.archetype-sabia {
  background: linear-gradient(135deg, var(--roxo-profundo), var(--lavanda-turva));
}

.archetype-curandeira {
  background: linear-gradient(135deg, var(--verde-folha), var(--ouro-calmo));
}

.archetype-guardia {
  background: linear-gradient(135deg, var(--terra-andes), #C48A55);
}

.archetype-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--roxo-profundo);
  margin-bottom: 1rem;
}

/* CTA Final */
.cta-final {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--terra-andes) 0%, var(--verde-folha) 100%);
  color: white;
  text-align: center;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.cta-button {
  background: var(--ouro-calmo);
  color: white;
  border: none;
  padding: 1.5rem 3rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  background: white;
  color: var(--terra-andes);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Animações adicionais para o brief de design */
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-spin-slow {
  animation: spin-slow 60s linear infinite;
}

/* Correções críticas de legibilidade */
p, span, div, h1, h2, h3, h4, h5, h6 {
  color: inherit;
}

/* Garantir que texto em fundos escuros seja legível */
.bg-gradient-to-br, .bg-roxo-profundo, [class*="bg-"] {
  position: relative;
}

.bg-gradient-to-br * , .bg-roxo-profundo *, [class*="bg-"] * {
  position: relative;
  z-index: 1;
}

/* Melhorar contraste em elementos glassmorphism */
.backdrop-blur * {
  color: inherit !important;
}

/* Correção para texto em elementos com gradientes */
.bg-gradient-to-r * {
  color: inherit !important;
}

/* Garantir legibilidade em todas as seções */
.section * {
  color: inherit;
}

/* Correção específica para elementos que podem ter problemas */
.text-white {
  color: #FAF9FC !important;
}

.text-lavender-light {
  color: #E6E6FA !important;
}

.text-soft-white {
  color: #FAF9FC !important;
}

/* Seção Explicação Simples - Versão Fluida e Confortável */
.explanation-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--branco-nevoado) 0%, rgba(168, 155, 180, 0.05) 100%);
}

.explanation-intro {
  text-align: center;
  margin-bottom: 5rem;
}

.explanation-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--roxo-profundo);
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

.explanation-content {
  max-width: 800px;
  margin: 0 auto;
}

.explanation-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--roxo-profundo);
  margin-bottom: 2rem;
}

.explanation-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--terra-andes);
  font-weight: 500;
}

.explanation-block {
  margin-bottom: 6rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(196, 164, 100, 0.1);
}

.explanation-block:last-child {
  border-bottom: none;
  margin-bottom: 4rem;
}

.explanation-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--roxo-profundo);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.explanation-insight {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--terra-andes);
  margin-top: 2rem;
  font-weight: 500;
}

.explanation-icon {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--roxo-profundo), var(--ouro-calmo));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3.5rem;
  margin: 0 auto 2rem;
  box-shadow: 0 15px 40px rgba(75, 58, 103, 0.2);
}

.participants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.participant-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.participant-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.participant-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.participant-item:nth-child(1) .participant-icon {
  background: linear-gradient(135deg, var(--roxo-profundo), var(--lavanda-turva));
}

.participant-item:nth-child(2) .participant-icon {
  background: linear-gradient(135deg, var(--verde-folha), var(--ouro-calmo));
}

.participant-item:nth-child(3) .participant-icon {
  background: linear-gradient(135deg, var(--terra-andes), #C48A55);
}

.participant-item:nth-child(4) .participant-icon {
  background: linear-gradient(135deg, var(--ouro-calmo), var(--verde-folha));
}

.participant-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--roxo-profundo);
  margin-bottom: 1rem;
}

.participant-desc {
  color: var(--cinza-argiloso);
  font-size: 0.95rem;
  line-height: 1.5;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.solution-item {
  text-align: center;
  padding: 2.5rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.solution-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

.solution-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.solution-item:nth-child(1) .solution-icon {
  background: linear-gradient(135deg, var(--ouro-calmo), var(--lavanda-turva));
}

.solution-item:nth-child(2) .solution-icon {
  background: linear-gradient(135deg, var(--verde-folha), var(--ouro-calmo));
}

.solution-item:nth-child(3) .solution-icon {
  background: linear-gradient(135deg, var(--ouro-calmo), var(--verde-folha));
}

.solution-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--roxo-profundo);
  margin-bottom: 1.5rem;
}

.solution-desc {
  color: var(--cinza-argiloso);
  font-size: 1rem;
  line-height: 1.6;
}

.explanation-conclusion {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(244, 241, 236, 0.8), rgba(168, 155, 180, 0.1));
  border-radius: 25px;
  margin-top: 4rem;
}

.conclusion-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--roxo-profundo);
  margin-bottom: 1.5rem;
}

.conclusion-text {
  font-size: 1.3rem;
  color: var(--terra-andes);
  margin-bottom: 2rem;
  font-weight: 500;
}

.conclusion-highlight {
  font-size: 1.4rem;
  color: var(--ouro-calmo);
  font-style: italic;
  font-weight: 600;
}

/* Formatação Nanã - Card elegante */
.nana-card {
  background: linear-gradient(135deg, rgba(244, 241, 236, 0.9), rgba(168, 155, 180, 0.1));
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1px solid rgba(195, 164, 100, 0.2);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.nana-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--roxo-profundo);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.nana-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--roxo-profundo);
  margin-bottom: 2rem;
}

.nana-insight {
  font-size: 1rem;
  font-style: italic;
  color: var(--terra-andes);
  font-weight: 500;
}

/* Formatação Organizar - Lista vertical */
.organize-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 500px;
  margin: 0 auto;
}

.organize-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border: 1px solid rgba(195, 164, 100, 0.1);
  transition: all 0.3s ease;
}

.organize-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.organize-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--roxo-profundo);
  margin-bottom: 0.5rem;
}

.organize-desc {
  color: var(--cinza-argiloso);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Solution Cards - CTA Final */
.solution-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  border: 1px solid rgba(195, 164, 100, 0.15);
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}

.solution-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.2rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.solution-card:nth-child(1) .solution-icon {
  background: linear-gradient(135deg, var(--ouro-calmo), var(--lavanda-turva));
}

.solution-card:nth-child(2) .solution-icon {
  background: linear-gradient(135deg, var(--verde-folha), var(--ouro-calmo));
}

.solution-card:nth-child(3) .solution-icon {
  background: linear-gradient(135deg, var(--ouro-calmo), var(--verde-folha));
}

.solution-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--roxo-profundo);
  margin-bottom: 1rem;
}

.solution-desc {
  color: var(--cinza-argiloso);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Refinamentos Visuais - Sombras e Opacidades Melhoradas */
.story-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(195, 164, 100, 0.1);
}

.story-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--lavanda-turva) 0%, transparent 70%);
  opacity: 0.03;
}

.archetype-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(195, 164, 100, 0.08);
}

.archetype-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.cta-final {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--terra-andes) 0%, var(--verde-folha) 100%);
  color: white;
  text-align: center;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

/* Responsividade adicional */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .about-hero {
    padding: 4rem 0 2rem;
  }
  .archetypes-section,
  .story-section {
    padding: 3rem 0;
  }
  .cta-final {
    padding: 3rem 0;
  }
  .cta-title {
    font-size: 2.2rem;
  }

  .explanation-section {
    padding: 4rem 0;
  }

  .explanation-main-title {
    font-size: 2.2rem;
  }

  .explanation-subtitle {
    font-size: 1.8rem;
  }

  .explanation-block {
    margin-bottom: 4rem;
    padding: 2rem 0;
  }

  .participants-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .explanation-icon {
    width: 140px;
    height: 140px;
    font-size: 2.8rem;
  }

  .conclusion-title {
    font-size: 2rem;
  }
}

/* Correções de Contraste WCAG - Melhor Legibilidade */
.cta-final .relative.bg-white\/10 p,
.cta-final .relative.bg-white\/10 h4 {
 color: #FFFFFF;
 text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Cards da seção Trilhas */
section[style*="background-color: #2D1B3D"] .space-y-3 p {
 color: rgba(255, 255, 255, 0.95);
}

/* Aumentar contraste do texto descritivo em cards glassmorphism escuros */
.backdrop-blur-md p.text-lavender-light\/80,
.backdrop-blur-lg p.text-lavender-light\/80 {
 color: rgba(255, 255, 255, 0.95) !important;
}

/* Garantir legibilidade em elementos com gradientes profundos */
.bg-gradient-to-br.from-\[#2D1B3D\] p,
.bg-gradient-to-br.from-\[#4B3A67\] p {
 color: rgba(255, 255, 255, 0.95) !important;
}

/* Correção específica para cards CTA Final */
.cta-final .relative p {
 color: #FFFFFF !important;
 text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}