/* ==========================================================================
   ADVOGADA DRA. VANESSA LIMA - DIREITO IMOBILIÁRIO & FAMÍLIA
   Design System: Minimalista Moderno Corporativo
   ========================================================================== */

:root {
  /* Core Colors - Monocromático Elegante & Tons de Cinza / Grafite */
  --brand-primary: #18181B;     /* Grafite Escuro */
  --brand-secondary: #27272A;   /* Cinza Antracite */
  --brand-accent: #3F3F46;      /* Cinza Mineral Accent */
  --brand-accent-hover: #09090B;/* Grafite Profundo */
  --brand-light: #F8FAFC;       /* Off-white */
  
  --bg: #FFFFFF;
  --bg-subtle: #F8FAFC;
  --surface: #FFFFFF;
  --surface-hover: #F1F5F9;
  --border: #E2E8F0;
  --border-focus: #18181B;
  
  --text-main: #0F172A;
  --text-muted: #475569;
  --text-light: #64748B;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 12px 28px -5px rgba(15, 23, 42, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px rgba(15, 23, 42, 0.2);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  
  --max-w: 1200px;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode Overrides */
html.dark {
  --bg: #090D16;
  --bg-subtle: #0F172A;
  --surface: #1E293B;
  --surface-hover: #334155;
  --border: #334155;
  --border-focus: #94A3B8;
  
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-light: #CBD5E1;
  
  --brand-primary: #E2E8F0;
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, .brand-text strong {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.25;
  font-weight: 700;
}

p {
  color: var(--text-muted);
}

/* Top Bar Announcement */
.top-bar {
  background: linear-gradient(90deg, #0F172A 0%, #1E293B 100%);
  color: #FFFFFF;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-info {
  display: flex;
  gap: 20px;
}
.top-bar-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.top-bar-info i {
  color: #94A3B8;
}

/* Sticky Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  transition: var(--transition);
}

html.dark .header {
  background: rgba(9, 13, 22, 0.94);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
}

.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-text strong {
  font-size: 18px;
  letter-spacing: -0.3px;
}
.brand-text span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--brand-accent);
}



/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: #0F172A;
  color: #FFFFFF;
  border: 1px solid #334155;
}

.btn-primary:hover {
  background: #1E293B;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: #475569;
}

.btn-secondary {
  background: var(--brand-primary);
  color: #FFFFFF;
}

.btn-secondary:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

html.dark .btn-secondary {
  color: #090D16;
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  background: var(--bg-subtle);
}

.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 17px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.btn-outline-hero:hover {
  background: #FFFFFF;
  color: #0F172A;
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}
.btn-ghost:hover {
  color: var(--text-main);
  background: var(--bg-subtle);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 17px;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: var(--radius-sm);
}

/* HERO SECTION FULL-WIDTH PARALLAX */
.hero {
  position: relative;
  width: 100%;
  min-height: 85vh;
  padding: 90px 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #FFFFFF;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%; /* Aumentar a altura para permitir o movimento do parallax */
  background-image: url('pexels-pixabay-462205.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg, 
    rgba(15, 20, 28, 0.82) 0%, 
    rgba(24, 30, 41, 0.86) 50%, 
    rgba(15, 20, 28, 0.94) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  color: #F8FAFC;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.2px;
}

.hero-title {
  font-size: clamp(34px, 4.5vw, 54px);
  margin-bottom: 22px;
  letter-spacing: -0.8px;
  color: #FFFFFF;
  line-height: 1.2;
}

.hero-title span.highlight, #heroTitleHighlight {
  color: #FFFFFF;
  background: linear-gradient(135deg, #FFFFFF 0%, #CBD5E1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.hero-desc {
  font-size: 19px;
  color: #CBD5E1;
  margin-bottom: 32px;
  max-width: 720px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
  max-width: 680px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #CBD5E1;
  font-weight: 500;
}

.trust-item i {
  color: #94A3B8;
}

/* Sections */
.section {
  padding: 70px 0;
}

.section-subtle {
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.section-title {
  font-size: 32px;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
}

/* Service Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(15, 44, 89, 0.06);
  color: var(--brand-primary);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: var(--transition);
}

html.dark .service-icon {
  background: rgba(56, 189, 248, 0.12);
}

.service-card:hover .service-icon {
  background: var(--brand-primary);
  color: #FFFFFF;
}

html.dark .service-card:hover .service-icon {
  color: #090D16;
}

.service-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-bullets {
  list-style: none;
  margin-bottom: 20px;
  padding: 0;
}

.service-bullets li {
  font-size: 13.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.service-bullets li i {
  color: var(--brand-accent);
  font-size: 12px;
}

.niche-panel {
  display: block;
}

/* Interactive Quiz Banner Section */
.quiz-banner {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: #FFFFFF;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.quiz-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(60px);
}

.quiz-banner-content h3 {
  color: #FFFFFF;
  font-size: 28px;
  margin-bottom: 12px;
}

.quiz-banner-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  margin-bottom: 24px;
}

.quiz-banner-steps {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.quiz-step-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
}

.quiz-step-badge i {
  color: var(--brand-accent);
}

/* Real Microcases */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
}

.case-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 8px;
}

.case-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.case-desc {
  font-size: 14px;
  color: var(--text-muted);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.about-photo-wrapper {
  position: relative;
}

.about-photo-wrapper img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.about-badge-experience {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--brand-primary);
  color: #FFFFFF;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

html.dark .about-badge-experience {
  color: #0F172A;
}

.about-badge-experience strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  color: inherit;
}
.about-badge-experience span {
  font-size: 12px;
  opacity: 0.9;
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.about-content p {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-highlight-item i {
  color: var(--brand-accent);
  font-size: 18px;
  margin-top: 3px;
}

.about-highlight-item div strong {
  display: block;
  font-size: 15px;
}
.about-highlight-item div span {
  font-size: 13px;
  color: var(--text-muted);
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item summary {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 14px;
  color: var(--brand-accent);
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 24px 20px;
  font-size: 14.5px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* Modais */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 20px;
}

.modal[aria-hidden="false"] {
  display: grid;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
}

.modal-dialog {
  position: relative;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  animation: modalPop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-subtle);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--border);
  color: var(--text-main);
}

/* Form Styles */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(15, 44, 89, 0.1);
}

/* Interactive Quiz Modal Specifics */
.quiz-step {
  display: none;
}
.quiz-step.active {
  display: block;
}

.quiz-progress {
  height: 6px;
  background: var(--border);
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background: var(--brand-accent);
  width: 33.33%;
  transition: width 0.3s ease;
}

.quiz-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.quiz-option-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
}

.quiz-option-card:hover {
  border-color: var(--brand-primary);
  background: var(--bg-subtle);
}

.quiz-option-card.selected {
  border-color: var(--brand-accent);
  background: rgba(217, 119, 6, 0.06);
}

.quiz-option-card i {
  font-size: 20px;
  color: var(--brand-primary);
}

.quiz-option-card strong {
  font-size: 14px;
  display: block;
}

/* Diagnostic Output Card */
.diagnostic-result-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
}

.diagnostic-result-card h4 {
  color: var(--brand-primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.checklist-box {
  background: var(--surface);
  border: 1px dashed var(--brand-accent);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 14px;
}

.checklist-box h5 {
  font-size: 14px;
  color: var(--brand-accent);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.checklist-box ul {
  list-style: none;
  padding: 0;
}

.checklist-box li {
  font-size: 13.5px;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.checklist-box li i {
  color: #10B981;
  font-size: 13px;
  margin-top: 3px;
}

/* Footer */
.footer {
  background: #0F172A;
  color: #F8FAFC;
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: #94A3B8;
  font-size: 14px;
  margin: 14px 0 20px;
  max-width: 320px;
}

.footer-title {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-logo-box {
  background: #FFFFFF;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links-list a:hover {
  color: #FFFFFF;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--brand-accent);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #64748B;
}

/* Floating Contact Button */
.floating-contact-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  background: #0F172A;
  color: #FFFFFF;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  border: 1px solid #334155;
  text-decoration: none;
  transition: var(--transition);
}

.floating-contact-btn:hover {
  transform: scale(1.08);
  background: #1E293B;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* Responsiveness */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .quiz-banner {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .top-bar-info {
    font-size: 11px;
    gap: 10px;
  }
  .hero-title {
    font-size: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 28px;
  }
}

/* Toast Notification */
#toastContainer {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.toast {
  background: #0F172A;
  color: #FFFFFF;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateX(100%);
  animation: slideIn 0.5s forwards, slideOut 0.5s forwards 4.5s;
}

html.dark .toast {
  background: #F8FAFC;
  color: #0F172A;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast.hide {
  animation: slideOut 0.5s forwards;
}

.toast i {
  color: #10B981;
  font-size: 20px;
}

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

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(120%);
  }
}
