/* Reset e estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fafbfc;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Cores do tema - Paleta Feminina e Suave */
:root {
  /* Brand - Rosa suave e delicado (feminino) */
  --brand-50: #fdf2f8;
  --brand-100: #fce7f3;
  --brand-200: #fbcfe8;
  --brand-300: #f9a8d4;
  --brand-400: #f472b6;
  --brand-500: #ec4899; /* Rosa suave */
  --brand-600: #db2777; /* Rosa médio */
  --brand-700: #be185d;
  --brand-900: #831843;
  
  /* Nature - Verde suave e natural (feminino) */
  --nature-50: #f0fdf4;
  --nature-100: #dcfce7;
  --nature-200: #bbf7d0;
  --nature-300: #86efac;
  --nature-400: #4ade80;
  --nature-500: #22c55e; /* Verde suave */
  --nature-600: #16a34a; /* Verde médio */
  --nature-700: #15803d;
  --nature-800: #166534;
  --nature-900: #14532d;
  --nature-950: #052e16;
  
  /* Success Green - Verde de sucesso suave */
  --success-500: #22c55e;
  --success-600: #16a34a;
  --success-700: #15803d;
  
  /* Gray - Tons mais suaves e modernos com melhor contraste */
  --gray-50: #fafbfc;
  --gray-100: #f4f6f8;
  --gray-200: #e8ecf0;
  --gray-300: #d1d9e0;
  --gray-400: #9ca8b3;
  --gray-500: #6b7885;
  --gray-600: #4a5568;
  --gray-700: #2d3748;
  --gray-800: #1a202c;
  --gray-900: #0d1117;
  
  /* Text colors com melhor contraste */
  --text-primary: #1a1a1a;
  --text-secondary: #4a5568;
  --text-tertiary: #6b7885;
  --text-on-light: #2d3748;
  
  /* Red - Vermelho suave e rosado (feminino) */
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-200: #fecaca;
  --red-300: #fca5a5;
  --red-400: #f87171;
  --red-500: #f87171; /* Vermelho suave */
  --red-600: #ef4444; /* Vermelho médio */
  --red-700: #dc2626;
  --red-800: #b91c1c;
  
  /* Yellow/Orange - Amarelo/laranja suave e quente */
  --yellow-400: #facc15;
  --yellow-500: #eab308;
  --yellow-600: #ca8a04;
  --orange-500: #fb923c;
  --orange-600: #f97316;
  
  /* Blue - Azul suave para confiança */
  --blue-500: #60a5fa;
  --blue-600: #3b82f6;
  --blue-700: #2563eb;
  
  /* Purple - Roxo suave para premium */
  --purple-500: #c084fc;
  --purple-600: #a855f7;
  
  /* Pink - Rosa adicional para feminino */
  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-200: #fbcfe8;
  --pink-300: #f9a8d4;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
}

/* Animações */
@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes pulse-slow {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes slide-in {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.02);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.8s ease-out;
}

.animate-fade-in-up-delay {
  animation: fade-in-up 0.8s ease-out 0.2s both;
}

.animate-fade-in-up-delay-2 {
  animation: fade-in-up 0.8s ease-out 0.6s both;
}

.animate-scale-in {
  animation: scale-in 0.8s ease-out 0.4s both;
}

.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

.section-hero {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-pulse-slow {
  animation: pulse-slow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-slide-in {
  animation: slide-in 0.5s ease-out;
}

/* Utilitários */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 4rem;
  }
}

/* Header Banner - Background suave com texto destacado */
.header-banner {
  background: linear-gradient(135deg, #fef7f0 0%, #fef2f8 100%);
  color: #7c2d12;
  text-align: center;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(252, 231, 243, 0.6);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .header-banner {
    font-size: 1rem;
  }
}

/* Botões */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .btn {
    font-size: 1.25rem;
    padding: 1.25rem 2.5rem;
  }
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
  color: white;
  box-shadow: 0 8px 25px -5px rgba(34, 197, 94, 0.4), 0 0 0 0 rgba(34, 197, 94, 0.5);
  position: relative;
  overflow: hidden;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 50%, #166534 100%);
  box-shadow: 0 15px 40px -5px rgba(34, 197, 94, 0.6), 0 0 0 4px rgba(34, 197, 94, 0.25);
  transform: translateY(-3px) scale(1.02);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 5px 20px -5px rgba(34, 197, 94, 0.4);
}

.btn-full {
  width: 100%;
}

.btn-nature {
  background: linear-gradient(to right, var(--nature-500), var(--nature-600));
  color: white;
}

.btn-nature:hover {
  background: linear-gradient(to right, var(--nature-600), var(--nature-700));
}

/* Seções - Backgrounds suaves e neutros */
.section {
  padding: 5rem 1rem;
  background-color: #ffffff;
}

.section.bg-white {
  background-color: #ffffff;
}

.section.bg-gray-50,
.section[class*="bg-gradient-to-b"][class*="from-green-50"],
.section[class*="bg-gradient-to-b"][class*="from-white"] {
  background: linear-gradient(to bottom, #fafbfc 0%, #ffffff 100%);
}

.section.bg-gradient-to-b[class*="from-green-50"] {
  background: linear-gradient(to bottom, #f0fdf4 0%, #ffffff 50%, #ffffff 100%);
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 2rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 7rem 2rem;
  }
}

/* Ajustes específicos de padding para seções - inline styles têm prioridade */
.section[style*="padding-top: 3rem"] {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.section[style*="padding-top: 4rem"] {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.section[style*="padding-top: 5rem"] {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

/* Cards - Design suave com texto fluido */
.card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(232, 236, 240, 0.8);
  position: relative;
  overflow: hidden;
  color: var(--text-primary);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--nature-400), var(--nature-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  opacity: 0.6;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
  border-color: rgba(34, 197, 94, 0.15);
}

/* Cards com texto fluido - melhor espaçamento e legibilidade */
.card p,
.card li,
.card span {
  line-height: 1.75;
  color: var(--text-on-light);
}

.card h1,
.card h2,
.card h3,
.card h4 {
  color: var(--text-primary);
  line-height: 1.4;
  font-weight: 700;
}

/* Shadow utilities */
.shadow-3xl {
  box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.25);
}

/* Grid */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(1, 1fr);
}

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

.grid-3 {
  grid-template-columns: repeat(1, 1fr);
}

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

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

/* Texto - Melhorias de legibilidade e hierarquia */
.text-center {
  text-align: center;
}

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

/* Melhorias gerais de legibilidade */
p, li, span, div {
  color: var(--text-on-light);
  line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  line-height: 1.4;
  font-weight: 700;
}

/* Textos em backgrounds claros */
.bg-white p,
.bg-white li,
.bg-white span,
.bg-gray-50 p,
.bg-gray-50 li,
.bg-gray-50 span {
  color: var(--text-on-light);
}

/* Textos em backgrounds escuros */
.bg-gray-900 p,
.bg-gray-900 li,
.bg-gray-900 span,
.bg-gray-800 p,
.bg-gray-800 li,
.bg-gray-800 span {
  color: var(--gray-200);
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .text-3xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  
  .text-4xl {
    font-size: 3rem;
    line-height: 1;
  }
  
  .text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  
  .text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}

@media (min-width: 1024px) {
  .text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  
  .text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}

.font-bold {
  font-weight: 700;
}

.font-black {
  font-weight: 900;
}

/* Cores de texto - Melhor contraste e legibilidade */
.text-gray-900 {
  color: var(--text-primary);
  font-weight: 700;
}

.text-gray-800 {
  color: var(--text-on-light);
  font-weight: 600;
}

.text-gray-700 {
  color: var(--text-secondary);
  font-weight: 500;
}

.text-gray-600 {
  color: var(--text-secondary);
  font-weight: 400;
}

.text-gray-500 {
  color: var(--text-tertiary);
  font-weight: 400;
}

.text-white {
  color: white;
}

.text-brand-600 {
  color: var(--brand-600);
}

.text-brand-500 {
  color: var(--brand-500);
}

.text-nature-600 {
  color: var(--nature-600);
}

.text-nature-500 {
  color: var(--nature-500);
}

.text-red-600 {
  color: var(--red-600);
}

/* Backgrounds - Tons suaves e neutros */
.bg-white {
  background-color: #ffffff;
}

.bg-gray-50 {
  background-color: var(--gray-50);
}

.bg-gray-100 {
  background-color: var(--gray-100);
}

.bg-gray-900 {
  background-color: var(--gray-900);
}

/* Backgrounds com gradientes suaves */
.bg-gradient-to-b[class*="from-green-50"] {
  background: linear-gradient(to bottom, #f0fdf4 0%, #ffffff 100%);
}

.bg-gradient-to-b[class*="from-white"] {
  background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
}

.bg-brand-50 {
  background-color: var(--brand-50);
}

.bg-brand-100 {
  background-color: var(--brand-100);
}

.bg-brand-500 {
  background-color: var(--brand-500);
}

.bg-brand-600 {
  background-color: var(--brand-600);
}

.bg-brand-900 {
  background-color: var(--brand-900);
}

.bg-nature-50 {
  background-color: var(--nature-50);
}

.bg-nature-100 {
  background-color: var(--nature-100);
}

/* Textos em backgrounds nature - melhor contraste */
.bg-nature-50 p,
.bg-nature-50 span,
.bg-nature-50 li,
.bg-nature-100 p,
.bg-nature-100 span,
.bg-nature-100 li {
  color: var(--text-on-light);
  font-weight: 500;
}

.bg-nature-50 h1,
.bg-nature-50 h2,
.bg-nature-50 h3,
.bg-nature-100 h1,
.bg-nature-100 h2,
.bg-nature-100 h3 {
  color: var(--text-primary);
}

.bg-nature-500 {
  background-color: var(--nature-500);
}

.bg-nature-600 {
  background-color: var(--nature-600);
}

.bg-red-50 {
  background-color: var(--red-50);
}

.bg-red-100 {
  background-color: var(--red-100);
}

.bg-gradient-brand {
  background: linear-gradient(to right, var(--brand-500), var(--brand-600));
}

.bg-gradient-nature {
  background: linear-gradient(to right, var(--nature-500), var(--nature-600));
}

/* Spacing */
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

/* Flexbox */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

/* Sticky CTA Mobile - Background suave com texto destacado */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to right, var(--nature-500), var(--nature-600));
  color: white;
  z-index: 100;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  font-weight: 600;
}

.sticky-cta.hidden {
  transform: translateY(100%);
}

@media (min-width: 768px) {
  .sticky-cta {
    display: none;
  }
}

/* Sales Notifications - Card suave com texto legível */
.sales-notification {
  position: fixed;
  bottom: 5rem;
  right: 1rem;
  background: #ffffff;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  max-width: 300px;
  z-index: 90;
  animation: slide-in 0.5s ease-out;
  border: 1px solid var(--gray-200);
  line-height: 1.6;
}

.sales-notification p {
  color: var(--text-on-light);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .sales-notification {
    bottom: 2rem;
  }
}

/* Countdown Timer */
.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

.countdown-timer {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: #7c2d12;
  background: linear-gradient(135deg, #fef7f0 0%, #fef2f8 100%);
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-size: 1rem;
  border: 1px solid rgba(252, 231, 243, 0.6);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  line-height: 1.5;
}

.countdown-timer:hover {
  background: linear-gradient(135deg, #fef2f8 0%, #fce7f3 100%);
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: rgba(252, 207, 232, 0.8);
}

.countdown-timer .timer-time {
  color: #c2410c;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

/* FAQ Accordion - Texto fluido e legível */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  text-align: left;
  background-color: var(--gray-50);
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-primary);
  transition: all 0.3s ease;
  line-height: 1.5;
}

.faq-question:hover {
  background-color: var(--gray-100);
  color: var(--text-on-light);
}

.faq-answer {
  padding: 1.5rem;
  background-color: #ffffff;
  color: var(--text-secondary);
  line-height: 1.8;
  display: none;
  font-size: 1rem;
}

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

/* Tabelas */
.table-container {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 0.75rem;
  text-align: left;
}

thead th {
  font-weight: 700;
  border-bottom: 2px solid var(--gray-300);
}

tbody tr {
  border-bottom: 1px solid var(--gray-200);
}

tbody tr:last-child {
  border-bottom: none;
}

/* Footer - Background suave com texto legível */
.footer {
  background-color: #1a202c;
  color: var(--gray-400);
  padding: 3rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.8;
}

.footer p {
  color: var(--gray-400);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .footer {
    padding-bottom: 3rem;
  }
}

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

/* Estilos adicionais para melhorar legibilidade em cards e seções */
.prose,
.prose-lg {
  color: var(--text-on-light);
  line-height: 1.8;
}

.prose p,
.prose-lg p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
  color: var(--text-on-light);
}

.prose h1,
.prose h2,
.prose h3,
.prose-lg h1,
.prose-lg h2,
.prose-lg h3 {
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.prose ul,
.prose ol,
.prose-lg ul,
.prose-lg ol {
  color: var(--text-on-light);
  line-height: 1.8;
}

.prose li,
.prose-lg li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
  color: var(--text-on-light);
}

/* Scrollbar customizada */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Focus visible */
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 2px;
}

/* Melhorias adicionais de legibilidade e hierarquia visual */
/* Ajustes para seções com backgrounds específicos */
section[class*="bg-gradient"] p,
section[class*="bg-gradient"] li,
section[class*="bg-gradient"] span {
  color: var(--text-on-light);
  line-height: 1.8;
}

section[class*="bg-gradient"] h1,
section[class*="bg-gradient"] h2,
section[class*="bg-gradient"] h3 {
  color: var(--text-primary);
  line-height: 1.4;
}

/* Ajustes para elementos inline com backgrounds coloridos */
span[class*="bg-green"],
span[class*="bg-nature"],
span[class*="bg-brand"] {
  color: var(--text-primary);
  font-weight: 700;
}

/* Suavização de backgrounds fortes - aplicando tons mais suaves */
[class*="from-pink-400"],
[class*="via-pink-500"],
[class*="to-pink-400"] {
  background: linear-gradient(to right, #fce7f3, #fbcfe8) !important;
}

[class*="from-pink-400"][class*="via-pink-500"][class*="to-pink-400"] {
  background: linear-gradient(to right, #fce7f3, #fbcfe8) !important;
}

/* Textos em elementos com gradientes rosa - melhor contraste */
[class*="from-pink"] p,
[class*="from-pink"] span,
[class*="from-pink"] h1,
[class*="from-pink"] h2,
[class*="from-pink"] h3,
[class*="from-pink"] h4,
[class*="from-pink"] h5,
[class*="via-pink"] p,
[class*="via-pink"] span,
[class*="via-pink"] h1,
[class*="via-pink"] h2,
[class*="via-pink"] h3 {
  color: #7c2d12 !important;
  font-weight: 600;
}

[class*="from-pink"] .text-white,
[class*="via-pink"] .text-white {
  color: #7c2d12 !important;
  font-weight: 700;
}

/* Melhorias para listas */
ul, ol {
  color: var(--text-on-light);
  line-height: 1.8;
}

ul li, ol li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
  color: var(--text-on-light);
}

/* Ajustes para elementos de destaque com melhor contraste */
.text-green-700,
.text-green-800,
.text-nature-600,
.text-nature-700 {
  color: #15803d;
  font-weight: 700;
}

.text-green-600,
.text-nature-500 {
  color: #16a34a;
  font-weight: 600;
}

/* Backgrounds suaves para elementos destacados */
.bg-green-100,
.bg-nature-100 {
  background-color: #f0fdf4;
}

.bg-green-50,
.bg-nature-50 {
  background-color: #fafbfc;
}

/* Responsive utilities */
.hidden {
  display: none;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-5 > * + * {
  margin-top: 1.25rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

.space-y-12 > * + * {
  margin-top: 3rem;
}

.whitespace-pre-line {
  white-space: pre-line;
}

.transform {
  transform: translateZ(0);
}

.-skew-x-3 {
  transform: skewX(-12deg);
}

.-skew-x-6 {
  transform: skewX(-12deg);
}

.rotate-45 {
  transform: rotate(45deg);
}

.translate-x-10 {
  transform: translateX(2.5rem);
}

.translate-y-6 {
  transform: translateY(1.5rem);
}

.underline {
  text-decoration: underline;
}

.decoration-4 {
  text-decoration-thickness: 4px;
}

.underline-offset-4 {
  text-underline-offset: 0.5rem;
}

.line-through {
  text-decoration: line-through;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-90 {
  opacity: 0.9;
}

.opacity-40 {
  opacity: 0.4;
}

.cursor-pointer {
  cursor: pointer;
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.hover\:text-white:hover {
  color: white;
}

.hover\:text-gray-300:hover {
  color: var(--gray-300);
}

.hover\:text-gray-700:hover {
  color: var(--gray-700);
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .md\:block {
    display: block;
  }
  
  .md\:flex {
    display: flex;
  }
  
  .md\:hidden {
    display: none;
  }
  
  .md\:w-2\/3 {
    width: 66.666667%;
  }
  
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .md\:flex-row {
    flex-direction: row;
  }
  
  .md\:items-start {
    align-items: flex-start;
  }
  
  .md\:justify-start {
    justify-content: flex-start;
  }
  
  .md\:text-left {
    text-align: left;
  }
}

/* Additional utility classes */
.bg-gradient-to-b {
  background: linear-gradient(to bottom, var(--gray-50), #ffffff);
}

.bg-gradient-to-br {
  background: linear-gradient(to bottom right, var(--gray-50), var(--gray-100));
}

.bg-gradient-to-r {
  background: linear-gradient(to right, var(--nature-500), var(--nature-600));
}

/* Gradientes suaves para elementos específicos */
.bg-gradient-to-r[class*="from-pink"] {
  background: linear-gradient(to right, #fce7f3, #fbcfe8);
}

.bg-gradient-to-br[class*="from-pink"] {
  background: linear-gradient(to bottom right, #fce7f3, #fbcfe8);
}

/* Ajuste para textos em gradientes coloridos - melhor contraste */
.bg-gradient-to-r[class*="from-pink"] p,
.bg-gradient-to-r[class*="from-pink"] span,
.bg-gradient-to-r[class*="from-pink"] h1,
.bg-gradient-to-r[class*="from-pink"] h2,
.bg-gradient-to-r[class*="from-pink"] h3,
.bg-gradient-to-br[class*="from-pink"] p,
.bg-gradient-to-br[class*="from-pink"] span,
.bg-gradient-to-br[class*="from-pink"] h1,
.bg-gradient-to-br[class*="from-pink"] h2,
.bg-gradient-to-br[class*="from-pink"] h3 {
  color: #7c2d12;
  font-weight: 600;
}

.border-l-4 {
  border-left-width: 4px;
}

.border-l-8 {
  border-left-width: 8px;
}

.border-2 {
  border-width: 2px;
}

.border-4 {
  border-width: 4px;
}

.border-y-4 {
  border-top-width: 4px;
  border-bottom-width: 4px;
}

.border-t {
  border-top-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-b-2 {
  border-bottom-width: 2px;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.inline-flex {
  display: inline-flex;
}

.inline-block {
  display: inline-block;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-auto {
  overflow-x: auto;
}

.z-10 {
  z-index: 10;
}

.z-50 {
  z-index: 50;
}

.z-90 {
  z-index: 90;
}

.z-100 {
  z-index: 100;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.75;
}

.tracking-tighter {
  letter-spacing: -0.05em;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.uppercase {
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

.shrink-0 {
  flex-shrink: 0;
}

.flex-grow {
  flex-grow: 1;
}

.flex-1 {
  flex: 1 1 0%;
}

.w-full {
  width: 100%;
}

.w-1 {
  width: 0.25rem;
}

.w-2 {
  width: 0.5rem;
}

.w-8 {
  width: 2rem;
}

.w-12 {
  width: 3rem;
}

.w-14 {
  width: 3.5rem;
}

.w-16 {
  width: 4rem;
}

.w-24 {
  width: 6rem;
}

.w-32 {
  width: 8rem;
}

.w-40 {
  width: 10rem;
}

.w-px {
  width: 1px;
}

.h-1 {
  height: 0.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.h-12 {
  height: 3rem;
}

.h-14 {
  height: 3.5rem;
}

.h-24 {
  height: 6rem;
}

.h-32 {
  height: 8rem;
}

.h-40 {
  height: 10rem;
}

.h-80 {
  height: 20rem;
}

.h-96 {
  height: 24rem;
}

.h-full {
  height: 100%;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-r-lg {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.rounded-r-2xl {
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.rounded-bl-xl {
  border-bottom-left-radius: 0.75rem;
}

.object-cover {
  object-fit: cover;
}

.object-top {
  object-position: top;
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.min-h-screen {
  min-height: 100vh;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.font-medium {
  font-weight: 500;
}

.font-light {
  font-weight: 300;
}

.font-serif {
  font-family: serif;
}

.text-yellow-400 {
  color: var(--yellow-400);
}

.text-yellow-100 {
  color: #fef9c3;
}

.bg-yellow-100 {
  background-color: #fef9c3;
}

.bg-yellow-400 {
  background-color: var(--yellow-400);
}

.bg-yellow-500 {
  background-color: var(--yellow-500);
}

.bg-yellow-600 {
  background-color: #ca8a04;
}

.text-green-600 {
  color: #16a34a;
}

.text-green-800 {
  color: #166534;
}

.bg-green-50 {
  background-color: #f0fdf4;
}

.bg-green-100 {
  background-color: #dcfce7;
}

.border-green-100 {
  border-color: #dcfce7;
}

.border-green-200 {
  border-color: #bbf7d0;
}

.border-green-500 {
  border-color: var(--nature-500);
}

.text-red-300 {
  color: #fca5a5;
}

.text-red-400 {
  color: var(--red-400);
}

.text-red-500 {
  color: var(--red-500);
}

.text-red-800 {
  color: #991b1b;
}

.bg-red-200 {
  background-color: #fecaca;
}

.bg-red-300 {
  background-color: #fca5a5;
}

.bg-red-400 {
  background-color: var(--red-400);
}

.bg-red-500 {
  background-color: var(--red-500);
}

.bg-red-600 {
  background-color: var(--red-600);
}

.bg-red-800 {
  background-color: #991b1b;
}

.bg-red-950 {
  background-color: #450a0a;
}

.border-red-200 {
  border-color: #fecaca;
}

.border-red-300 {
  border-color: #fca5a5;
}

.border-red-400 {
  border-color: var(--red-400);
}

.border-red-500 {
  border-color: var(--red-500);
}

.border-red-800 {
  border-color: #991b1b;
}

.border-nature-200 {
  border-color: var(--nature-200);
}

.border-nature-300 {
  border-color: var(--nature-300);
}

.border-nature-500 {
  border-color: var(--nature-500);
}

.border-nature-800 {
  border-color: var(--nature-800);
}

.border-gray-100 {
  border-color: var(--gray-100);
}

.border-gray-200 {
  border-color: var(--gray-200);
}

.border-gray-300 {
  border-color: var(--gray-300);
}

.border-brand-200 {
  border-color: #fce7f3;
}

.border-brand-300 {
  border-color: #fbcfe8;
}

.border-brand-400 {
  border-color: #f9a8d4;
}

.border-brand-500 {
  border-color: var(--brand-500);
}

.border-brand-700 {
  border-color: var(--brand-700);
}

.bg-nature-200 {
  background-color: var(--nature-200);
}

.bg-nature-300 {
  background-color: var(--nature-300);
}

.bg-nature-800 {
  background-color: var(--nature-800);
}

.bg-nature-900 {
  background-color: var(--nature-900);
}

.bg-nature-950 {
  background-color: var(--nature-950);
}

.border-nature-800 {
  border-color: var(--nature-800);
}

.text-nature-200 {
  color: var(--nature-200);
}

.text-nature-300 {
  color: var(--nature-300);
}

.text-nature-700 {
  color: var(--nature-700);
}

.text-nature-800 {
  color: var(--nature-800);
}

.text-brand-100 {
  color: var(--brand-100);
}

.text-brand-200 {
  color: #fce7f3;
}

.text-brand-700 {
  color: var(--brand-700);
}

.bg-brand-200 {
  background-color: #fce7f3;
}

.bg-brand-300 {
  background-color: #fbcfe8;
}

.bg-brand-400 {
  background-color: #f9a8d4;
}

.bg-brand-700 {
  background-color: var(--brand-700);
}

.bg-gray-200 {
  background-color: var(--gray-200);
}

.bg-gray-300 {
  background-color: var(--gray-300);
}

.bg-gray-800 {
  background-color: var(--gray-800);
}

.text-gray-300 {
  color: var(--gray-300);
}

.text-gray-400 {
  color: var(--gray-400);
}

.border-gray-400 {
  border-color: var(--gray-400);
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (min-width: 768px) {
  .md\:h-96 {
    height: 24rem;
  }
}

@media (min-width: 1024px) {
  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}

/* Chart Styles - SVG Area Chart */
.h-72 {
  height: 18rem;
}

svg {
  display: block;
}

.chart-svg {
  min-height: 380px;
}

.chart-mobile {
  height: 22rem;
  min-height: 380px;
  position: relative;
}

/* Mobile chart improvements */
@media (max-width: 767px) {
  /* Aumentar altura do gráfico no mobile */
  .chart-mobile {
    height: 22rem !important;
    min-height: 350px !important;
    padding: 1rem !important;
  }
  
  .chart-mobile svg {
    min-height: 350px !important;
  }
  
  /* Aumentar tamanho dos textos no mobile */
  .chart-mobile svg text {
    font-size: 12px !important;
    font-weight: 600 !important;
  }
  
  /* Header do gráfico no mobile */
  .chart-mobile + div,
  div[class*="bg-gray-100"][class*="px-"] {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* Backdrop blur effect */
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.backdrop-blur-md {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Opacity utilities */
.opacity-10 {
  opacity: 0.1;
}

.opacity-20 {
  opacity: 0.2;
}

.bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.bg-white\/20 {
  background-color: rgba(255, 255, 255, 0.2);
}

.bg-white\/50 {
  background-color: rgba(255, 255, 255, 0.5);
}

.bg-black\/70 {
  background-color: rgba(0, 0, 0, 0.7);
}

.bg-red-950\/50 {
  background-color: rgba(69, 10, 10, 0.5);
}

.bg-red-900\/50 {
  background-color: rgba(127, 29, 29, 0.5);
}

.bg-nature-950\/50 {
  background-color: rgba(5, 46, 22, 0.5);
}

.bg-nature-900\/50 {
  background-color: rgba(20, 83, 45, 0.5);
}

.border-red-800\/50 {
  border-color: rgba(153, 27, 27, 0.5);
}

.border-nature-800\/50 {
  border-color: rgba(22, 101, 52, 0.5);
}

.border-brand-700\/50 {
  border-color: rgba(190, 24, 93, 0.5);
}

.text-white\/80 {
  color: rgba(255, 255, 255, 0.8);
}

.text-brand-100 {
  color: var(--brand-100);
}

.text-brand-200 {
  color: #fce7f3;
}

.text-red-200 {
  color: #fecaca;
}

.text-red-300 {
  color: #fca5a5;
}

.text-nature-200 {
  color: var(--nature-200);
}

.text-nature-300 {
  color: var(--nature-300);
}

.text-gray-300 {
  color: var(--gray-300);
}

.bg-gray-100 {
  background-color: var(--gray-100);
}

.bg-gray-200 {
  background-color: var(--gray-200);
}

.bg-gray-800 {
  background-color: var(--gray-800);
}

.bg-green-500 {
  background-color: var(--nature-500);
}

.bg-green-400 {
  background-color: var(--nature-400);
}

.bg-nature-400 {
  background-color: #4ade80;
}

.bg-red-400 {
  background-color: var(--red-400);
}

.border-gray-100 {
  border-color: var(--gray-100);
}

.border-gray-200 {
  border-color: var(--gray-200);
}

.border-gray-300 {
  border-color: var(--gray-300);
}

.border-brand-200 {
  border-color: #fce7f3;
}

.border-brand-300 {
  border-color: #fbcfe8;
}

.border-brand-400 {
  border-color: #f9a8d4;
}

.border-brand-500 {
  border-color: var(--brand-500);
}

.border-brand-700 {
  border-color: var(--brand-700);
}

.border-red-500 {
  border-color: var(--red-500);
}

.border-red-600 {
  border-color: var(--red-600);
}

.border-green-500 {
  border-color: var(--nature-500);
}

.border-nature-400 {
  border-color: #4ade80;
}

.border-nature-500 {
  border-color: var(--nature-500);
}

.border-nature-600 {
  border-color: var(--nature-600);
}

.text-green-500 {
  color: var(--nature-500);
}

.text-green-600 {
  color: var(--nature-600);
}

.text-green-700 {
  color: var(--nature-700);
}

.text-green-800 {
  color: var(--nature-800);
}

.text-red-800 {
  color: #991b1b;
}

.text-yellow-400 {
  color: var(--yellow-400);
}

.bg-yellow-100 {
  background-color: #fef9c3;
}

.bg-yellow-400 {
  background-color: var(--yellow-400);
}

.bg-yellow-500 {
  background-color: var(--yellow-500);
}

.bg-yellow-600 {
  background-color: #ca8a04;
}

.bg-green-50 {
  background-color: var(--nature-50);
}

.bg-green-100 {
  background-color: var(--nature-100);
}

/* Textos em backgrounds verdes - melhor contraste */
.bg-green-50 p,
.bg-green-50 span,
.bg-green-50 li,
.bg-green-100 p,
.bg-green-100 span,
.bg-green-100 li {
  color: var(--text-on-light);
  font-weight: 500;
}

.bg-green-50 h1,
.bg-green-50 h2,
.bg-green-50 h3,
.bg-green-100 h1,
.bg-green-100 h2,
.bg-green-100 h3 {
  color: var(--text-primary);
}

.bg-red-50 {
  background-color: var(--red-50);
}

.bg-red-100 {
  background-color: var(--red-100);
}

.bg-red-500 {
  background-color: var(--red-500);
}

.bg-red-600 {
  background-color: var(--red-600);
}

.bg-red-800 {
  background-color: #991b1b;
}

.bg-red-950 {
  background-color: #450a0a;
}

.bg-nature-200 {
  background-color: var(--nature-200);
}

.bg-nature-300 {
  background-color: var(--nature-300);
}

.bg-nature-400 {
  background-color: #4ade80;
}

.bg-nature-800 {
  background-color: var(--nature-800);
}

.bg-nature-900 {
  background-color: var(--nature-900);
}

.bg-nature-950 {
  background-color: var(--nature-950);
}

.border-red-200 {
  border-color: #fecaca;
}

.border-red-300 {
  border-color: #fca5a5;
}

.border-red-400 {
  border-color: var(--red-400);
}

.border-red-800 {
  border-color: #991b1b;
}

.border-nature-200 {
  border-color: var(--nature-200);
}

.border-nature-300 {
  border-color: var(--nature-300);
}

.border-nature-800 {
  border-color: var(--nature-800);
}

.border-green-100 {
  border-color: var(--nature-100);
}

.border-green-200 {
  border-color: var(--nature-200);
}

/* Blur utilities */
.blur-2xl {
  filter: blur(40px);
  -webkit-filter: blur(40px);
}

.blur-3xl {
  filter: blur(64px);
  -webkit-filter: blur(64px);
}

/* Transform utilities */
.-rotate-1 {
  transform: rotate(-1deg);
}

/* Ring utilities */
.ring-4 {
  box-shadow: 0 0 0 4px var(--brand-100);
}

/* Gradient utilities */
.bg-gradient-to-br {
  background: linear-gradient(to bottom right, var(--brand-500), var(--brand-600));
}

.from-brand-500 {
  --tw-gradient-from: var(--brand-500);
}

.to-brand-600 {
  --tw-gradient-to: var(--brand-600);
}

.from-yellow-400 {
  --tw-gradient-from: var(--yellow-400);
}

.to-yellow-600 {
  --tw-gradient-to: #ca8a04;
}

/* Decoration utilities */
.decoration-2 {
  text-decoration-thickness: 2px;
}

.decoration-red-400 {
  text-decoration-color: var(--red-400);
}

.decoration-nature-300 {
  text-decoration-color: var(--nature-300);
}

/* Gap utilities */
.gap-1 {
  gap: 0.25rem;
}

.gap-1\.5 {
  gap: 0.375rem;
}

/* Text size utilities */
.text-7xl {
  font-size: 4.5rem;
  line-height: 1;
}

.text-8xl {
  font-size: 6rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .md\:text-8xl {
    font-size: 6rem;
    line-height: 1;
  }
}

/* Items baseline */
.items-baseline {
  align-items: baseline;
}

/* Min width */
.min-w-0 {
  min-width: 0;
}

/* Max width */
.max-w-xs {
  max-width: 20rem;
}

.max-w-sm {
  max-width: 24rem;
}

/* Position utilities */
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.-mr-10 {
  margin-right: -2.5rem;
}

.-mt-10 {
  margin-top: -2.5rem;
}

/* Group hover */
.group:hover .group-hover\:scale-105 {
  transform: scale(1.05);
}

/* Transition duration */
.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.duration-700 {
  transition-duration: 700ms;
}

/* Hover scale */
.hover\:scale-\[1\.01\]:hover {
  transform: scale(1.01);
}

/* Shadow utilities */
.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-\[0_-4px_6px_-1px_rgba\(0\,0\,0\,0\.1\)\] {
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Border radius utilities */
.rounded-bl-xl {
  border-bottom-left-radius: 0.75rem;
}

/* Padding utilities */
.pt-20 {
  padding-top: 5rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

/* Margin utilities */
.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

/* Font utilities */
.font-light {
  font-weight: 300;
}

.font-serif {
  font-family: serif;
}

/* Border width utilities */
.border-b-2 {
  border-bottom-width: 2px;
}

/* Text decoration */
.decoration-4 {
  text-decoration-thickness: 4px;
}

/* Background pattern (simulado) */
.bg-\[url\(\.\.\.\)\] {
  /* Pattern será aplicado via CSS se necessário */
}

