/* Root Variables - Luxury Editorial Theme */
/* Version: 2.0.1 - CSS Fix Applied - March 3, 2026 */
:root {
  --primary: #0A1C15; /* Extremely dark green, almost black */
  --primary-light: #1B4332;
  --secondary: #B19B72; /* Refined muted gold */
  --secondary-light: #E5D5B3;
  --bg-color: #F8F7F3; /* Warm off-white / paper */
  --text-dark: #1A1A1A;
  --text-medium: #4A4A4A;
  --text-light: #8C8C8C;
  --white: #FFFFFF;
  
  --transition-fast: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  
  --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.08);
  
  --space-sm: 1rem;
  --space-md: 2.5rem;
  --space-lg: 5rem;
  --space-xl: 10rem;
}

/* Reset & Basic Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 10001;
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

/* Base Texture / Noise for depth */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Typography - Bold & Distinctive */
h1, h2, h3, h4, h5, .serif {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.1;
  color: var(--primary);
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Containers & Layouts */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}

/* Buttons - Elegant & Minimalist */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  transition: var(--transition-fast);
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover::after {
  transform: translateY(0);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--secondary-light);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-light);
}

.btn-outline {
  border-color: var(--secondary);
  color: var(--white);
  background: transparent;
}

.btn-outline.dark {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--secondary);
  color: var(--primary);
}

/* Header - Floating Editorial Style */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0;
  z-index: 1000;
  transition: var(--transition-fast);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header.scrolled {
  padding: 1rem 0;
  background-color: rgba(248, 247, 243, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
}

.logo-img {
  height: 75px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

/* Logo branco visível por padrão */
.logo-light {
  opacity: 1;
}

.logo-dark {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Quando scrollar, esconde logo branco e mostra logo escuro */
.header.scrolled .logo-light,
.header.dark .logo-light {
  opacity: 0;
}

.header.scrolled .logo-dark,
.header.dark .logo-dark {
  opacity: 1;
}

/* Para páginas com hero claro, always show dark logo */
.header.light-hero .logo-light {
  opacity: 0;
}

.header.light-hero .logo-dark {
  opacity: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.header.scrolled .menu-toggle,
.header.dark .menu-toggle,
.header.light-hero .menu-toggle {
  border-color: rgba(10, 28, 21, 0.35);
}

.menu-toggle-bar {
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: var(--transition-fast);
}

.header.scrolled .menu-toggle-bar,
.header.dark .menu-toggle-bar,
.header.light-hero .menu-toggle-bar {
  background: var(--primary);
}

.menu-open .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-link {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  position: relative;
  transition: color 0.3s ease;
}

.header.scrolled .nav-link,
.header.dark .nav-link {
  color: var(--primary);
}

/* Para páginas com hero claro, always dark */
.header.light-hero .nav-link {
  color: var(--primary);
}

/* Header para Páginas de Artigos - Fundo Branco Limpo */
.header.article {
  background-color: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.5rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header.article.scrolled {
  background-color: var(--white);
  padding: 1.5rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header.article .logo-light {
  opacity: 0;
}

.header.article .logo-dark {
  opacity: 1;
}

.header.article .nav-link {
  color: var(--primary);
  font-weight: 400;
}

.header.article .nav-link::after {
  background-color: var(--secondary);
}

.header.article .nav-link:hover::after,
.header.article .nav-link.active::after {
  width: 100%;
}

.header.article .menu-toggle {
  border-color: rgba(10, 28, 21, 0.2);
}

.header.article .menu-toggle-bar {
  background: var(--primary);
}

.header.article .btn-outline {
  color: var(--primary);
  border-color: var(--primary);
}

.header.article .btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Animations & Scroll Reveals */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Show all reveals after DOM loads - don't wait for scroll */
.reveal {
  animation: showOnLoad 0.01s ease-in forwards;
}

@keyframes showOnLoad {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.5s; }

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: scale(1.05);
  filter: brightness(0.6) sepia(0.2) hue-rotate(-20deg) contrast(1.1);
  animation: slowZoom 20s infinite alternate linear;
}

@keyframes slowZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(10, 28, 21, 0.9) 0%, rgba(10, 28, 21, 0.4) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 10vh;
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}

.hero-text-box {
  grid-column: 2 / 10;
}

.hero-subtitle {
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
  color: var(--secondary);
  margin-bottom: 2rem;
  display: block;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  color: var(--white) !important;
  line-height: 1;
  margin-bottom: 2.5rem;
}

.hero-title i {
  color: var(--secondary);
  font-style: italic;
  font-weight: 500;
}

.hero-desc {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin-bottom: 3rem;
  font-weight: 300;
}

/* Asymmetric Section - About */
.section-about {
  background-color: var(--bg-color);
  overflow: hidden;
}

.about-header {
  grid-column: 2 / 12;
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 2rem;
}

.about-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  max-width: 500px;
}

.about-stat {
  text-align: right;
}

.about-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--secondary);
  line-height: 1;
  display: block;
}

.about-content {
  grid-column: 2 / 12;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text p {
  font-size: 1.25rem;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about-img-wrapper {
  position: relative;
}

.about-img {
  position: relative;
  width: 100%;
  height: auto;
  box-shadow: var(--shadow-xl);
  border-radius: 8px;
}

/* Elegant Cards - Services */
.section-services {
  background-color: var(--primary);
  color: var(--white);
}

.services-top {
  grid-column: 2 / 12;
  text-align: center;
  margin-bottom: var(--space-lg);
}

.services-top h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.services-top p {
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  grid-column: 2 / 12;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.service-card {
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition-slow);
}

.service-card:hover {
  border-top-color: var(--secondary);
  transform: translateY(-10px);
}

.service-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 2rem;
  display: block;
}

.service-title {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.service-desc {
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  font-size: 1.1rem;
}

/* Minimal Footer */
.footer {
  background-color: #050E0A;
  color: rgba(255,255,255,0.82);
  padding: 6rem 0 2rem;
}

.footer-grid {
  grid-column: 2 / 12;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 2.5rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: 75px;
  width: auto;
  margin-bottom: 1.25rem;
  margin-left: 0;
  margin-right: auto;
  object-fit: contain;
  display: block;
}

.footer-desc {
  max-width: 280px;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 5rem;
}

.footer-title {
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-links a {
  color: inherit;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 2px;
}

.footer-bottom {
  text-align: center;
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}

/* Page Headers (Internal pages) */
.page-header {
  padding-top: 200px;
  padding-bottom: 80px;
  background-color: var(--bg-color);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.page-title {
  font-size: clamp(3rem, 6vw, 5rem);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Utility constraints */
.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-md) 0;
}

.content-wrapper p {
  font-size: 1.15rem;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

/* Contact layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.contact-value {
  font-size: 1.25rem;
  color: var(--text-dark);
}

.modern-form input,
.modern-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding: 1rem 0;
  margin-bottom: 2.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.modern-form input:focus,
.modern-form textarea:focus {
  outline: none;
  border-bottom-color: var(--primary);
}

@media (max-width: 1024px) {
  .about-content, .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { 
    grid-template-columns: 1fr 1fr; 
    gap: 2.5rem;
  }
  
  .footer-col:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .menu-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    width: min(92vw, 360px);
    background: rgba(248, 247, 243, 0.98);
    border: 1px solid rgba(10, 28, 21, 0.12);
    box-shadow: var(--shadow-md);
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: var(--transition-fast);
  }
  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-list { display: flex; gap: 0.75rem; flex-direction: column; align-items: flex-start; }
  .nav-link,
  .header.scrolled .nav-link,
  .header.dark .nav-link,
  .header.light-hero .nav-link {
    color: var(--primary);
  }
  .nav-list .btn {
    width: 100%;
  }
  .grid, .hero-grid { grid-template-columns: 1fr; padding: 0 1rem;}
  .hero-text-box, .about-header, .about-content, .services-top, .services-grid, .footer-grid { grid-column: 1 / -1; }
  .services-grid, .footer-grid { grid-template-columns: 1fr; }
  .about-stat { text-align: left; margin-top: 1rem;}
  .about-header { flex-direction: column; align-items: flex-start; }
  
  /* Mobile responsiveness improvements */
  .container {
    padding: 0 1.5rem;
  }
  
  .section {
    padding: var(--space-md) 0;
  }
  
  .page-header {
    padding-top: 140px;
    padding-bottom: 60px;
  }
  
  .page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    padding: 0 1rem;
  }
  
  /* Convert inline grid layouts to vertical stack - photos on top */
  div[style*="grid-template-columns: 1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }
  
  /* Content wrapper improvements */
  .content-wrapper {
    padding: var(--space-md) 1rem;
  }
  
  .content-wrapper h2 {
    font-size: 1.8rem !important;
  }
  
  .content-wrapper p {
    font-size: 1rem !important;
    line-height: 1.7 !important;
  }
  
  /* Header padding for mobile */
  .header {
    padding: 1.25rem 0;
  }
  
  .logo-img {
    height: 60px;
  }
  
  /* Contact form layout */
  .contact-layout {
    gap: 3rem;
  }
  
  .contact-info h2 {
    font-size: 2rem;
  }
  
  /* Form improvements */
  .modern-form input,
  .modern-form textarea {
    padding: 0.85rem 0;
    font-size: 1rem;
  }
  
  /* Footer improvements */
  .footer {
    padding: 4rem 0 1.5rem;
  }
  
  .footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  .footer-title {
    margin-bottom: 1.2rem;
    font-size: 0.75rem;
  }
  
  .footer-links li {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }
  
  /* Section headings */
  h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }
  
  h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }
  
  h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
  }
  
  /* Newsletter improvements */
  .newsletter-content {
    padding: 0 1rem;
  }
  
  /* Blog card improvements */
  .blog-grid {
    padding: 0 1rem;
    gap: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   Why Choose Us Section
   ============================================ */

.section-why {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  width: 100%;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.why-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.why-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.why-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 8px;
  transition: var(--transition-fast);
  border: 1px solid rgba(255,255,255,0.1);
}

.why-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}

.why-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 500;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

.why-card:hover .why-number {
  transform: scale(1.1);
  color: var(--secondary-light);
}

.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.why-card p {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* ============================================
   Testimonials Section
   ============================================ */

.section-testimonials {
  background: var(--bg-color);
}

.testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.testimonials-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.testimonials-header p {
  font-size: 1.1rem;
  color: var(--text-medium);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition-fast);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.testimonial-quote {
  font-size: 5rem;
  line-height: 1;
  color: var(--secondary);
  opacity: 0.3;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.testimonial-author strong {
  color: var(--primary);
  font-size: 1rem;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* ============================================
   Footer Enhancements
   ============================================ */

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  transition: var(--transition-fast);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.footer-social a svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  transform: translateY(-3px);
  color: var(--secondary);
}


/* ============================================
   Newsletter Banner
   ============================================ */

.newsletter-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: var(--space-lg) 0;
  position: relative;
  overflow: hidden;
}

.newsletter-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B19B72' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
  pointer-events: none;
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.newsletter-text h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--white);
}

.newsletter-form {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
}

.newsletter-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.newsletter-input {
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
  width: 100%;
}

.newsletter-input::placeholder {
  color: var(--text-light);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--secondary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(177, 155, 114, 0.1);
}

.newsletter-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.checkbox-input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--secondary);
  border-radius: 4px;
}

.checkbox-label {
  font-size: 0.95rem;
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.privacy-link {
  color: var(--secondary-light);
  text-decoration: underline;
  transition: var(--transition-fast);
}

.privacy-link:hover {
  color: var(--secondary);
}

.newsletter-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
  font-weight: 500;
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--secondary);
}

.btn-secondary:hover {
  background-color: var(--secondary-light);
  border-color: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(177, 155, 114, 0.3);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive Newsletter */
@media (max-width: 1024px) {
  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .newsletter-text p {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .newsletter-banner {
    padding: var(--space-md) 0;
  }
  
  .newsletter-text h2 {
    font-size: 2rem;
  }
  
  .newsletter-form {
    padding: 2rem;
  }
  
  .newsletter-inputs {
    grid-template-columns: 1fr;
  }
  
  .why-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .why-header h2,
  .testimonials-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .newsletter-text h2 {
    font-size: 1.75rem;
  }
  
  .newsletter-form {
    padding: 1.5rem;
  }
  
  .newsletter-btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  
  /* Extra small device optimizations */
  .container {
    padding: 0 1.25rem;
  }
  
  .page-title {
    font-size: 1.8rem;
    padding: 0 0.5rem;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.4rem;
  }
  
  h3 {
    font-size: 1.1rem;
  }
  
  .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }
  
  .hero-desc {
    font-size: 1rem;
  }
  
  .article-hero {
    height: 45vh;
    min-height: 350px;
  }
  
  .article-title {
    font-size: 1.8rem;
  }
}
/* ============================================
   Blog / Journal Styles
   ============================================ */

.blog-grid {
  grid-column: 2 / 12;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 3.5rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  position: relative;
  display: block;
  overflow: hidden;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background-color: var(--primary);
}

.blog-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-fast);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 28, 21, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
}

.blog-card:hover .blog-card-overlay {
  opacity: 1;
}

.blog-card-overlay svg {
  width: 48px;
  height: 48px;
  stroke: var(--secondary);
  fill: none;
  stroke-width: 2;
}

.blog-card-content {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-category {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.blog-card-content h3 {
  font-size: 1.65rem;
  margin-bottom: 1.25rem;
  color: var(--primary);
  line-height: 1.3;
}

.blog-card-content p {
  color: var(--text-medium);
  margin-bottom: 2rem;
  line-height: 1.7;
  flex-grow: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--secondary);
  transition: var(--transition-fast);
  width: fit-content;
}

.blog-read-more svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: var(--transition-fast);
}

.blog-read-more:hover {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
  padding-right: 4px;
}

.blog-read-more:hover svg {
  transform: translateX(4px);
}

/* Responsive Blog Grid */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .blog-card-content {
    padding: 2rem 1.5rem;
  }
  
  .blog-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .blog-card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .blog-category {
    font-size: 0.7rem;
    margin-bottom: 0.85rem;
  }
  
  .blog-read-more {
    font-size: 0.9rem;
  }
}
/* ============================================
   Article Page Styles
   ============================================ */

.article-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: -100px;
  padding-top: 100px;
}

.article-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.article-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 28, 21, 0.85) 0%, rgba(10, 28, 21, 0.9) 100%);
  z-index: 1;
}

.article-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  text-decoration: none;
  transition: var(--transition-fast);
  opacity: 0.95;
}

.article-back:hover {
  opacity: 1;
  transform: translateX(-4px);
}

.article-back svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.article-category {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary-light);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: block;
}

.article-title {
  font-size: 3.5rem;
  line-height: 1.2;
  color: var(--white);
  max-width: 900px;
  margin: 0;
}

.article-section {
  padding: var(--space-lg) 0;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.article-content p {
  margin-bottom: 1.75rem;
}

.article-content .article-subtitle,
.article-content h2,
.article-content h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.article-content h2 {
  font-size: 2.25rem;
}

.article-content h3 {
  font-size: 1.75rem;
}

.article-content ul,
.article-content ol {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.article-content li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.article-content blockquote,
.article-quote {
  border-left: 4px solid var(--secondary);
  padding-left: 2rem;
  margin: 3rem 0;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.article-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  margin: 4rem 0;
}

.article-cta h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.article-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.article-cta .btn {
  margin-top: 1rem;
}

.article-navigation {
  padding-top: 3rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
}

.article-navigation .btn svg {
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ============================================
   LGPD Cookie Consent
   ============================================ */

.cookie-consent-root {
  position: fixed;
  right: 1rem;
  left: auto;
  bottom: 4.5rem;
  z-index: 12000;
  width: min(460px, calc(100vw - 2rem));
  max-width: 460px;
  margin: 0;
}

.cookie-consent-panel,
.cookie-preferences {
  background: var(--bg-color);
  border: 1px solid rgba(10, 28, 21, 0.16);
  box-shadow: var(--shadow-md);
  border-radius: 12px;
  padding: 1.25rem;
}

.cookie-consent-panel h2,
.cookie-preferences h2 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.cookie-consent-panel p,
.cookie-preferences p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.btn-cookie {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-cookie-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-cookie-primary:hover {
  background: var(--primary-light);
}

.btn-cookie-secondary {
  background: transparent;
  color: var(--primary);
  border-color: rgba(10, 28, 21, 0.25);
}

.btn-cookie-secondary:hover {
  border-color: var(--primary);
}

.btn-cookie-link {
  background: transparent;
  color: var(--primary);
  text-decoration: underline;
  padding-left: 0;
}

.cookie-panel-hidden {
  display: none;
}

.cookie-preferences {
  display: none;
}

.cookie-preferences.is-visible {
  display: block;
}

.cookie-preference-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  border-top: 1px solid rgba(10, 28, 21, 0.08);
  padding-top: 0.9rem;
  margin-top: 0.9rem;
}

.cookie-preference-item strong {
  color: var(--primary);
  display: block;
  margin-bottom: 0.2rem;
}

.cookie-preference-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
}

.cookie-manage-button {
  position: fixed;
  right: 1rem;
  left: auto;
  bottom: 1rem;
  z-index: 11999;
  border: 1px solid rgba(10, 28, 21, 0.2);
  background: var(--bg-color);
  color: var(--primary);
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  padding: 0.55rem 0.9rem;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

@media (max-width: 768px) {
  .cookie-consent-root {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 4rem;
    width: auto;
    max-width: none;
  }

  .cookie-consent-actions {
    flex-direction: column;
  }

  .btn-cookie {
    width: 100%;
    text-align: center;
  }

  .cookie-manage-button {
    right: 0.75rem;
    left: auto;
    bottom: 0.75rem;
  }
}

/* Responsive Article */
@media (max-width: 1024px) {
  .article-title {
    font-size: 2.75rem;
  }
  
  .article-content {
    font-size: 1.1rem;
  }
  
  .article-content h2 {
    font-size: 2rem;
  }
  
  .article-content h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .article-hero {
    height: 50vh;
    min-height: 400px;
  }
  
  .article-title {
    font-size: 2.25rem;
    padding: 0 1rem;
  }
  
  .article-content {
    padding: 0 1.5rem;
    font-size: 1.05rem;
  }
  
  .article-content p {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
  }
  
  .article-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
  }
  
  .article-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .article-content ul,
  .article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
  }
  
  .article-content li {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }
  
  .article-content blockquote,
  .article-quote {
    font-size: 1.1rem;
    padding-left: 1.25rem;
    margin: 2.5rem 0;
  }
  
  .article-cta {
    padding: 2rem 1.5rem;
    margin: 3rem 1rem;
    border-radius: 8px;
  }
  
  .article-cta h3 {
    font-size: 1.65rem;
    margin-bottom: 0.85rem;
  }
  
  .article-cta p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

/* ============================================
   Process Timeline - Service Page
   ============================================ */

.process-timeline {
  position: relative;
}

.process-step {
  position: relative;
  margin-bottom: 3rem !important;
  padding-left: 3rem !important;
  border-left: 2px solid var(--secondary) !important;
}

.process-step:last-child {
  margin-bottom: 0 !important;
}

/* Style the circular bullet points */
.process-step > div[style*="border-radius: 50%"] {
  position: absolute !important;
  left: -11px !important;
  top: 0 !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  background: var(--secondary) !important;
  flex-shrink: 0 !important;
  
  /* Create concentric dot inside */
  box-shadow: inset 0 0 0 6px var(--secondary), 
              inset 0 0 0 8px var(--bg-color),
              inset 0 0 0 12px var(--secondary),
              inset 0 0 0 14px var(--bg-color);
  
  transition: var(--transition-fast);
}

.process-step:hover > div[style*="border-radius: 50%"] {
  transform: scale(1.2);
  box-shadow: inset 0 0 0 6px var(--primary), 
              inset 0 0 0 8px var(--bg-color),
              inset 0 0 0 12px var(--primary),
              inset 0 0 0 14px var(--bg-color),
              0 0 0 4px rgba(177, 155, 114, 0.3);
}

.process-step h3 {
  color: var(--primary) !important;
  margin-bottom: 0.5rem !important;
  font-size: 1.1rem !important;
  margin-top: 0 !important;
}

.process-step p {
  color: var(--text-medium) !important;
  margin: 0 !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
}

@media (max-width: 768px) {
  .process-timeline {
    padding: 0 1rem;
  }
  
  .process-step {
    margin-bottom: 2.5rem !important;
    padding-left: 2.5rem !important;
    border-left: 2px solid var(--secondary) !important;
  }
  
  .process-step > div[style*="border-radius: 50%"] {
    left: -9px !important;
    width: 18px !important;
    height: 18px !important;
  }
  
  .process-step h3 {
    font-size: 1rem !important;
  }
  
  .process-step p {
    font-size: 0.9rem !important;
  }
}

/* ============================================================================
   FAQ ACCORDION SECTION
   ========================================================================== */

.faq-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-color) 0%, rgba(177, 155, 114, 0.05) 100%);
  border-top: 1px solid var(--border-color);
}

.faq-header {
  margin-bottom: 4rem;
  text-align: center;
}

.faq-header h2 {
  color: var(--dark-primary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.faq-header .section-desc {
  color: var(--gray-text);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--secondary);
  box-shadow: 0 4px 12px rgba(177, 155, 114, 0.1);
}

.faq-item.active {
  border-color: var(--secondary);
  box-shadow: 0 8px 20px rgba(177, 155, 114, 0.15);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-primary);
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-trigger:hover {
  color: var(--secondary);
}

.faq-item.active .faq-trigger {
  color: var(--secondary);
  background: rgba(177, 155, 114, 0.03);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth), padding var(--transition-smooth);
}

.faq-item.active .faq-content {
  max-height: 800px;
  border-top: 1px solid var(--border-color);
}

.faq-answer {
  padding: 0 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-text);
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  display: block;
}

.faq-answer p {
  margin: 0 0 1rem 0;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  color: var(--dark-primary);
}

.faq-answer a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-fast);
}

.faq-answer a:hover {
  border-bottom-color: var(--secondary);
}

.faq-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-color);
}

.faq-cta-text {
  color: var(--gray-text);
  font-size: 1rem;
}

/* FAQ Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 4rem 0;
  }
  
  .faq-header h2 {
    font-size: 2rem;
  }
  
  .faq-header .section-desc {
    font-size: 1rem;
  }
  
  .faq-trigger {
    padding: 1.25rem;
    font-size: 1rem;
  }
  
  .faq-answer {
    font-size: 0.95rem;
    padding: 0 1.25rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .process-timeline {
    padding: 0;
  }
  
  .process-step {
    margin-bottom: 2rem !important;
    padding-left: 2rem !important;
  }
  
  .process-step > div[style*="border-radius: 50%"] {
    left: -8px !important;
    width: 16px !important;
    height: 16px !important;
  }
  
  .process-step h3 {
    font-size: 0.95rem !important;
    margin-bottom: 0.4rem !important;
  }
  
  .process-step p {
    font-size: 0.85rem !important;
  }
}

/* ============================================
   Mobile Responsiveness Enhancements
   ============================================ */


@media (max-width: 768px) {
  /* Force convert all grid layouts to flex column - using multiple selectors */
  [style*="display: grid"],
  [style*="grid-template-columns"],
  div[style] {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    grid-template-columns: auto !important;
  }
  
  /* Override grid-specific properties */
  [style*="grid-template-columns: 1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    align-items: stretch !important;
  }
  
  /* Ensure children of converted grids have proper width */
  [style*="display: grid"] > *,
  [style*="grid-template-columns"] > * {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  /* Improve image responsiveness */
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* Better padding for text sections */
  main > div,
  main section > div {
    padding: 0 1.5rem;
  }
  
  /* Force proper container padding on all divs */
  main div[style] {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

@media (max-width: 480px) {
  /* Extra small device optimization */
  [style*="display: grid"],
  [style*="grid-template-columns"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }
  
  [style*="display: grid"] > *,
  [style*="grid-template-columns"] > * {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  main > div,
  main section > div {
    padding: 0 1.25rem;
  }
  
  /* Force container padding on extra small */
  main div[style] {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}
