/* ===========================
   GLOBAL STYLES - MOURA
   =========================== */

/* CSS Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Focus styles for accessibility */
*:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

*:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Custom Scrollbar Styling - Mais fina e com esquema de cores refinado */
::-webkit-scrollbar {
  width: 4px; /* Ainda mais fino */
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05); /* Fundo quase invisível */
  border-radius: 2px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #000000 0%, #333333 100%); /* Preto sofisticado */
  border-radius: 2px;
  border: none;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #333333 0%, #000000 100%);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family-primary);
  line-height: 1.6;
  color: #000000; /* Preto absoluto */
  background: #ffffff; /* Branco puro */
  overflow-x: hidden; /* Prevent horizontal scroll */
  
  /* Firefox scrollbar styling */
  scrollbar-width: thin;
  scrollbar-color: #000000 rgba(0, 0, 0, 0.05);
}

/* CSS Custom Properties (Design Tokens) */
:root {
  /* Colors */
  --color-primary: hsl(0, 0%, 0%);
  --color-secondary: hsl(0, 0%, 20%);
  --color-tertiary: hsl(0, 0%, 40%);
  --color-background: hsl(0, 0%, 100%);
  --color-text-primary: hwb(0 0% 100%);
  --color-text-secondary: #333333;
  --color-text-tertiary: hsl(0, 0%, 40%);
  --color-border: hsla(0, 0%, 0%, 0.1);
  --color-shadow: hsla(0, 0%, 0%, 0.05);
  --color-accent: hsl(45, 33%, 63%); /* Cor de destaque */
  --color-accent-accessible: hsl(45, 37%, 46%); /* Cor de destaque com melhor contraste */
  --color-white: hsl(0, 0%, 100%);
  --color-light-gray: hsl(0, 0%, 72%);
  --color-dark-gray: hsl(0, 0%, 18%);
  --color-medium-gray: hsl(0, 0%, 42%);

  /* Typography */
  --font-family-primary: 'Outfit', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-family-heading: 'Outfit', 'Neue Haas Grotesk', sans-serif;
  
  /* Font Weights */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;

  /* Font Sizes */
  --font-size-xs: 0.75rem;      /* 12px */
  --font-size-sm: 0.875rem;     /* 14px */
  --font-size-base: 1rem;       /* 16px */
  --font-size-lg: 1.125rem;     /* 18px */
  --font-size-xl: 1.25rem;      /* 20px */
  --font-size-2xl: 1.5rem;      /* 24px */
  --font-size-3xl: 1.875rem;    /* 30px */
  --font-size-4xl: 2.25rem;     /* 36px */
  --font-size-5xl: 3rem;        /* 48px */
  --font-size-6xl: 4rem;        /* 64px */
  --font-size-7xl: 5rem;        /* 80px */
  --font-size-8xl: 6rem;        /* 96px */
  --font-size-9xl: 7rem;        /* 112px */
  --font-size-hero: clamp(8rem, 15vw, 18rem);

  /* Line Heights */
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  /* Letter Spacing */
  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.05em;
  --letter-spacing-wider: 0.1em;

  /* Spacing */
  --space-xs: 0.5rem;    /* 8px */
  --space-sm: 0.75rem;   /* 12px */
  --space-md: 1rem;      /* 16px */
  --space-lg: 1.5rem;    /* 24px */
  --space-xl: 2rem;      /* 32px */
  --space-2xl: 3rem;     /* 48px */
  --space-3xl: 4rem;     /* 64px */
  --space-4xl: 6rem;     /* 96px */
  --space-5xl: 8rem;     /* 128px */

  /* Border Radius */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-2xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  --shadow-inset: inset 0 0 0 5px var(--color-accent);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-Index Scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  
  /* Sizes */
  --size-icon-sm: 24px;
  --size-icon-md: 32px;
  --size-icon-lg: 50px;
  --size-control-xs: 40px;
  --size-max-height: 500px;
  
  /* Animation values */
  --transform-translateY-5px: translateY(-5px);
  --transform-translateY-20px: translateY(20px);
  --transform-translateX-10px: translateX(10px);
  --transform-translateX-neg-10px: translateX(-10px);
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: var(--letter-spacing-tight);
}

h1 {
  font-size: var(--font-size-5xl);
}

h2 {
  font-size: var(--font-size-4xl);
}

h3 {
  font-size: var(--font-size-3xl);
}

h4 {
  font-size: var(--font-size-2xl);
}

h5 {
  font-size: var(--font-size-xl);
}

h6 {
  font-size: var(--font-size-lg);
}

p {
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-relaxed);
}

/* Links */
a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

a:hover {
  color: var(--color-accent-accessible);
}

/* Efeito de sublinhado animado para links no corpo do texto - apenas no blog */
.blog-post-content p a {
  background-image: linear-gradient(var(--color-accent-accessible), var(--color-accent-accessible)); /* Alterado para cor de destaque com melhor contraste */
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px; /* Começa com sublinhado de largura 0 */
  transition: background-size var(--transition-normal), color var(--transition-normal);
  border-radius: 2px;
}

.blog-post-content p a:hover {
  background-size: 100% 1px; /* Anima a largura do sublinhado para 100% */
}

/* Lists */
ul, ol {
  margin: 0 0 var(--space-md) var(--space-lg);
  padding: 0;
}

li {
  margin-bottom: var(--space-xs);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border: none;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-background);
  letter-spacing: var(--letter-spacing-wide);
}

.btn-primary:hover {
  background-color: var(--color-accent-accessible); /* Alterado para cor de destaque com melhor contraste */
  border-color: var(--color-accent-accessible); /* Alterado para cor de destaque com melhor contraste */
  color: var(--color-background);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-primary);
  border: 2px solid var(--color-text-primary);
  transition: all var(--transition-normal); /* Transição mais completa */
}

.btn-secondary:hover {
  background-color: var(--color-accent-accessible); /* Alterado para cor de destaque com melhor contraste */
  border-color: var(--color-accent-accessible); /* Alterado para cor de destaque com melhor contraste */
  color: var(--color-primary);
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-text-secondary);
  border: none;
}

.btn-ghost:hover {
  color: var(--color-text-primary);
}

/* Scroll snapping container */
/* Scroll snapping container */
.snap-container {
  scroll-snap-type: y mandatory;
  overflow-y: auto;
  overflow-x: hidden; /* Prevent horizontal overflow */
  height: 100vh;
  width: 100vw; /* Make sure it doesn't exceed viewport width */

  /* Ocultar scrollbar no Chrome, Safari, Edge */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE e Edge */
}

.snap-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.snap-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Sections with scroll snapping */
.snap-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  height: 100vh;
}

/* Wrapper for rest content to handle overlaps */
.rest-content-wrapper {
  position: relative;
  z-index: 1;
}


/* Wrapper para layout geral */
.layout-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  :root {
    --font-size-hero: clamp(4rem, 12vw, 8rem);
    --space-2xl: 2rem;
    --space-3xl: 3rem;
    --space-4xl: 4rem;
    --space-5xl: 6rem;
  }
  
  .snap-section {
    height: auto;
    min-height: 100vh;
    padding: var(--space-3xl) var(--space-md);
  }
}

@media (max-width: 480px) {
  :root {
    --font-size-hero: clamp(3rem, 10vw, 6rem);
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
    --space-3xl: 2.5rem;
    --space-4xl: 3rem;
    --space-5xl: 4rem;
  }
  
  .snap-section {
    padding: var(--space-2xl) var(--space-sm);
  }
}

/* Scroll-triggered Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   TYPOGRAPHY HIERARCHY
   =========================== */

/* Hero Text: For the most prominent text, usually in the hero section. */
.text-hero {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-hero);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

/* Section Title: For the main title of each content section. */
.text-title-section {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

/* Section Intro: For introductory paragraphs in sections. */
.text-intro {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  max-width: 65ch; /* Optimal line length for readability */
  margin-bottom: var(--space-xl);
}

/* Body Text: For the main content text. */
.text-body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

/* Editorial blog content body text styling */
.blog-post-content .text-body {
  font-weight: var(--font-weight-light);
  text-align: justify;
  hyphens: none;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
}

/* Editorial blog content styling */
.blog-post-content h1,
.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4,
.blog-post-content h5,
.blog-post-content h6 {
  font-family: var(--font-family-heading);
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  letter-spacing: var(--letter-spacing-tight);
  position: relative;
  font-weight: var(--font-weight-medium);
}

.blog-post-content h1 {
  font-size: var(--font-size-5xl);
  line-height: 1.1;
  margin: var(--space-3xl) 0 var(--space-xl) 0;
}

.blog-post-content h2 {
  font-size: var(--font-size-4xl);
  line-height: 1.2;
  margin: var(--space-3xl) 0 var(--space-xl) 0;
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.blog-post-content h3 {
  font-size: var(--font-size-3xl);
  line-height: 1.25;
  margin: var(--space-xl) 0 var(--space-lg) 0;
}

.blog-post-content h4 {
  font-size: var(--font-size-2xl);
  line-height: 1.3;
  margin: var(--space-lg) 0 var(--space-md) 0;
}

.blog-post-content h5 {
  font-size: var(--font-size-xl);
  line-height: 1.35;
  margin: var(--space-md) 0 var(--space-sm) 0;
}

.blog-post-content h6 {
  font-size: var(--font-size-lg);
  line-height: 1.4;
  margin: var(--space-md) 0 var(--space-sm) 0;
}

/* Reader mode for mobile - optimized for reading */
@media (max-width: 768px) {
  .blog-post-content h1 {
    font-size: var(--font-size-4xl);
    margin: var(--space-2xl) 0 var(--space-lg) 0;
  }

  .blog-post-content h2 {
    font-size: var(--font-size-3xl);
    margin: var(--space-xl) 0 var(--space-lg) 0;
    padding-bottom: var(--space-xs);
    border-bottom: 1px solid var(--color-border);
  }

  .blog-post-content h3 {
    font-size: var(--font-size-2xl);
    margin: var(--space-lg) 0 var(--space-md) 0;
  }

  .blog-post-content h4 {
    font-size: var(--font-size-xl);
    margin: var(--space-md) 0 var(--space-sm) 0;
  }

  .blog-post-content h5 {
    font-size: var(--font-size-lg);
    margin: var(--space-sm) 0 var(--space-xs) 0;
  }

  .blog-post-content h6 {
    font-size: var(--font-size-base);
    margin: var(--space-sm) 0 var(--space-xs) 0;
  }
}

.blog-post-content p {
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  max-width: 65ch;
  text-align: justify;
  position: relative;
  font-weight: var(--font-weight-light);
}

/* Enhanced link styling for better scannability in blog content */
.blog-post-content a {
  position: relative;
}

.blog-post-content a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.3s ease;
  opacity: 0.7;
}

.blog-post-content a:hover::after {
  width: 100%;
}

/* Reader mode for mobile - optimized header layout */
@media (max-width: 768px) {
  .post-header {
    padding: var(--space-lg) var(--space-md);
  }

  .post-title {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-md);
    line-height: var(--line-height-tight);
  }

  .post-meta-top {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
  }

  .post-date-author {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
  }

  .post-stats {
    align-self: flex-start;
  }
}

/* Enhanced list styling for scannability in blog content */
.blog-post-content ul,
.blog-post-content ol {
  margin: var(--space-lg) 0;
  padding-left: var(--space-xl);
  position: relative;
  max-width: 65ch;

.blog-post-content ul li,
.blog-post-content ol li {
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: var(--space-md);
  line-height: var(--line-height-relaxed);
}

.blog-post-content ul li {
  list-style-type: square; /* Usando estilo padrão de lista */
  margin-left: var(--space-md);
}

.blog-post-content ul li::before {
  display: none; /* Removendo o estilo personalizado que criava bullet duplo */
}

.blog-post-content ol li {
  counter-increment: list-counter;
}

.blog-post-content ol li::before {
  content: counter(list-counter) '.';
  position: absolute;
  left: -20px;
  top: 0;
  color: var(--color-accent);
  font-weight: var(--font-weight-light); /* Reduzindo o peso da fonte */
  width: 20px;
}

/* Corrigindo peso da fonte para itens de lista */
.blog-post-content ul li,
.blog-post-content ol li {
  font-weight: var(--font-weight-light);
}

/* Quote Text: For testimonials or pull quotes. */
.text-quote {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-normal);
  color: var(--color-text-primary);
  border-left: 2px solid var(--color-primary);
  padding-left: var(--space-xl);
  margin: var(--space-2xl) 0;
  position: relative;
  background-color: rgba(255, 255, 255, 0.03);
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
  padding: var(--space-xl) var(--space-xl) var(--space-xl) var(--space-xl);
  border-radius: 0 6px 6px 0;
  position: relative;
  overflow: hidden;
}

.text-quote::before {
  content: '“';
  position: absolute;
  top: -10px;
  left: -5px;
  font-size: 3rem;
  color: rgba(0, 0, 0, 0.05);
  font-family: Georgia, serif;
  line-height: 1;
}

.blog-post-content .text-quote {
  text-align: center;
  border-left: none;
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-post-content .text-quote::before {
  content: '“';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  color: rgba(0, 0, 0, 0.05);
  font-family: Georgia, serif;
}

/* Label Text: For smaller text elements like captions or labels. */
.text-label {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-normal);
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

/* Button Text: For text within button components. */
.text-button {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

/* Table of Contents Styling */
.table-of-contents {
  background: linear-gradient(135deg, var(--color-background) 0%, rgba(192, 178, 131, 0.03) 100%);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 0.6rem;
  margin: 1rem 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border-left: 2px solid var(--color-accent);
  backdrop-filter: blur(5px);
}

.table-of-contents .toc-title {
  margin: 0 0 1rem 0;
  color: var(--color-text-primary);
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  padding-left: 0.75rem;
  color: var(--color-accent);
  position: relative;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.table-of-contents .toc-title::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-accent);
  font-size: 0.7rem;
}

.table-of-contents ul {
  list-style-type: none;
  padding-left: 0.25rem;
  margin: 0;
}

.table-of-contents li {
  margin-bottom: 0.8rem;
  padding-left: 0.75rem;
  position: relative;
  line-height: 1.3;
}

.table-of-contents li::before {
  content: '○';
  color: var(--color-accent);
  position: absolute;
  left: 0;
  top: 0.25rem;
  font-size: 0.6rem;
}

.table-of-contents a {
  color: var(--color-text-tertiary);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 0;
  font-size: 1rem;
  position: relative;
  padding: 0.15rem 0.25rem;
  border-radius: 3px;
  text-transform: lowercase;
}

.table-of-contents a::first-letter {
  text-transform: uppercase;
}

.table-of-contents a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.table-of-contents a:hover {
  color: var(--color-accent);
  transform: translateX(2px);
  background-color: rgba(192, 178, 131, 0.05);
  box-shadow: 0 2px 5px rgba(192, 178, 131, 0.1);
}

.table-of-contents a:hover::after {
  width: 100%;
}

/* Newsletter CTA section */
.newsletter-cta {
  margin: 3rem auto;
  padding: 2rem;
  background: linear-gradient(135deg, var(--color-background) 0%, rgba(192, 178, 131, 0.05) 100%);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 800px;
}

.newsletter-cta::before {
  content: "✦";
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  color: var(--color-accent);
  font-size: 1.2rem;
  opacity: 0.6;
}

.newsletter-cta::after {
  content: "✦";
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  color: var(--color-accent);
  font-size: 1.2rem;
  opacity: 0.6;
  transform: rotate(180deg);
}

.newsletter-content {
  position: relative;
  z-index: 1;
}

.newsletter-cta p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}

.btn-subscribe {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  font-size: 0.9rem;
  box-shadow: 0 4px 6px rgba(192, 178, 131, 0.3);
}

.btn-subscribe:hover {
  background-color: var(--color-accent-accessible);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(192, 178, 131, 0.4);
  color: var(--color-white);
}

.btn-subscribe:active {
  transform: translateY(-1px);
}

/* Responsive adjustments for typography */
@media (max-width: 768px) {
  .text-title-section {
    font-size: var(--font-size-3xl);
  }

  .text-intro {
    font-size: var(--font-size-base);
  }

  .text-quote {
    font-size: var(--font-size-xl);
  }
  
  .table-of-contents {
    padding: 0.5rem;
  }
  
  .table-of-contents .toc-title {
    font-size: 0.7rem;
    text-transform: capitalize;
  }
  
  .table-of-contents a {
    font-size: 0.9rem;
  }
  
  .newsletter-cta {
    margin: 2rem 1rem;
    padding: 1.5rem;
  }
  
  .newsletter-cta p {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
  
  .btn-subscribe {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
  }
}

/* Social Share Buttons */
.social-share-buttons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-left: 1rem;
}

.social-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: transparent;
  color: var(--color-text-primary);
  transition: all var(--transition-normal);
  text-decoration: none;
  border: 1px solid var(--color-text-primary);
  cursor: pointer;
  flex-shrink: 0;
}

.social-share-btn:hover {
  color: var(--color-background);
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(192, 178, 131, 0.3);
}

@media (max-width: 768px) {
  .social-share-buttons {
    gap: 0.5rem;
  }
  
  .social-share-btn {
    width: 28px;
    height: 28px;
  }
}

/* Hide scrollbar when overlay is open */
body.overlay-open {
  overflow: hidden;
}

/* Estilos para as caixas de conteúdo destacado do blog */
.blog-post-content .highlighted-content,
.blog-post-content .caution-content,
.blog-post-content .tip-content,
.blog-post-content .note-content {
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
