/* ==========================================
   ASC ADVOGADOS - SEMANTIC DESIGN SYSTEM STYLES
   ========================================== */

:root {
  /* Color Palette tokens - Warm Light Theme */
  --surface: #FAF6F0; /* Warm Light Cream */
  --surface-container-lowest: #F5EFEB;
  --surface-container-low: #F8F3EC;
  --surface-container: #FFFDFB; /* Pure Alabaster Panel */
  --on-surface: #2D221C; /* Espresso Dark */
  --on-surface-variant: #7A685D; /* Muted Warm Taupe */
  --primary: #0A6A7A; /* Deep Teal Accent */
  --primary-container: #065462; /* Darker Teal */
  --on-primary: #FAF6F0; /* Contrast light text */
  --border: rgba(10, 106, 122, 0.16);
  --border-active: rgba(10, 106, 122, 0.45);
  
  /* Fonts */
  --font-heading: 'Playfair Display', 'Cinzel', serif;
  --font-body: 'Manrope', 'Poppins', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--surface);
  color: var(--on-surface);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Selection highlight */
::selection {
  background-color: var(--primary);
  color: var(--on-primary);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

/* Decorative Background Glow Blobs */
.bg-glow-1, .bg-glow-2 {
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 106, 122, 0.06) 0%, rgba(250, 246, 240, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

.bg-glow-1 {
  top: 5%;
  left: -200px;
}

.bg-glow-2 {
  top: 50%;
  right: -200px;
}

/* Typography elements */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--on-surface);
  letter-spacing: 0.02em;
}

/* Header & Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.8rem 0;
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(250, 246, 240, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(45, 34, 28, 0.04);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Pure CSS ASC Logo styling */
.brand-logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-text-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--on-surface);
  line-height: 1;
}

.logo-sub-wrapper {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
  padding-left: 12px;
}

.logo-sub-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--on-surface);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
}

.logo-sub-desc {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--on-surface-variant);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--on-surface-variant);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a:hover {
  color: var(--on-surface);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-action-btn .btn-consult {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--on-surface);
  border: 1px solid var(--primary);
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  transition: var(--transition-smooth);
  background: transparent;
}

.nav-action-btn .btn-consult:hover {
  background: var(--primary);
  color: var(--on-primary);
  box-shadow: 0 4px 15px rgba(189, 152, 130, 0.2);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 19px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--on-surface);
  transition: var(--transition-smooth);
}

/* Button UI Components */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-container));
  color: var(--on-primary);
  border: none;
  box-shadow: 0 8px 24px rgba(189, 152, 130, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-20deg);
  animation: shine 4.4s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  15% { left: 200%; }
  100% { left: 200%; }
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(189, 152, 130, 0.45);
}

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

.btn-secondary {
  background: transparent;
  color: var(--on-surface);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: rgba(189, 152, 130, 0.04);
  transform: translateY(-4px);
}

/* Hero Section - Redesigned for Premium B2C Luxury Law Firm Aesthetics */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 145px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background-color: #FAF6F0; /* Warm Ivory */
}

/* Subtle background paper texture and radial gradient */
.hero-bg-texture {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, #2D221C 1px, transparent 0);
  background-size: 24px 24px;
  z-index: 1;
}

.hero-bg-radial {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.85) 0%, rgba(250, 246, 240, 0) 70%);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
}

/* Left Column Styling */
.hero-left-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.8rem;
}

@media (max-width: 1024px) {
  .hero-left-content {
    align-items: center;
  }
}

.hero-badge-wrapper {
  display: inline-flex;
}

.hero-badge {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary); /* Deep Teal */
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading); /* Playfair Display */
  font-size: clamp(2rem, 8vw, 3.8rem);
  line-height: 1.25;
  font-weight: 400;
  color: var(--on-surface); /* Espresso Dark */
  letter-spacing: -0.01em;
}

.hero-title .highlight {
  font-style: italic;
  font-family: var(--font-heading);
  color: var(--primary-container);
  font-weight: 400;
}

.hero-desc {
  font-family: var(--font-body); /* Manrope */
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--on-surface-variant); /* Muted Warm Taupe */
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  width: 100%;
}

@media (max-width: 1024px) {
  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 580px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Premium Buttons Styling */
.btn-primary-luxury {
  background: var(--primary); /* Dark Teal */
  color: var(--on-primary);
  border-radius: 50px; /* Fully rounded */
  padding: 1rem 2.2rem;
  box-shadow: 0 10px 25px rgba(10, 106, 122, 0.15);
  border: 1px solid var(--primary);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-container);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
  border-radius: 50px;
}

.btn-primary-luxury:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(10, 106, 122, 0.3);
  border-color: var(--primary-container);
}

.btn-primary-luxury:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-secondary-luxury {
  background: transparent;
  color: var(--on-surface);
  border: 1px solid rgba(45, 34, 28, 0.15); /* Espresso outline */
  border-radius: 50px;
  padding: 1rem 2.2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.arrow-icon {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  width: 16px;
  height: 16px;
}

.btn-secondary-luxury:hover {
  background: rgba(45, 34, 28, 0.03);
  border-color: var(--on-surface);
  transform: translateY(-4px);
}

.btn-secondary-luxury:hover .arrow-icon {
  transform: translateX(5px);
}

.btn-whatsapp-luxury {
  background: #25D366; /* WhatsApp Brand Green */
  color: #FFFFFF !important;
  border: 1px solid #25D366;
  border-radius: 50px;
  padding: 1rem 2.2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-weight: 600;
  text-decoration: none;
}

.btn-whatsapp-luxury:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.3);
}

.whatsapp-svg-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Trust Section below buttons */
.hero-trust-indicators {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(10, 106, 122, 0.15);
  padding-top: 2rem;
  width: 100%;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .hero-trust-indicators {
    justify-content: center;
    gap: 1.5rem;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--on-surface-variant);
  font-weight: 500;
}

.trust-icon {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Right Column: High-End Editorial Composition */
.hero-right-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.editorial-composition {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

/* Large soft beige circle behind portrait */
.editorial-circle {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background-color: #EFE9DF; /* Soft Beige */
  z-index: 1;
}

/* Thin decorative lines */
.editorial-line {
  position: absolute;
  background-color: rgba(10, 106, 122, 0.12);
  z-index: 2;
}

.editorial-line-v {
  top: 0;
  bottom: 0;
  left: 15%;
  width: 1px;
}

.editorial-line-h {
  left: 0;
  right: 0;
  bottom: 35%;
  height: 1px;
}

/* Soft gradients and textures */
.editorial-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(250, 246, 240, 1) 0%, rgba(250, 246, 240, 0) 40%);
  z-index: 4;
  pointer-events: none;
}

.editorial-paper-decor {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 70px;
  height: 90px;
  border: 1px dashed rgba(10, 106, 122, 0.2);
  border-radius: 4px;
  z-index: 2;
  opacity: 0.6;
}

/* Logo Wrapper and Image for Hero Section */
.logo-hero-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 490px;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-img {
  width: 85%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(45, 34, 28, 0.06);
  transition: transform 0.5s ease-out;
}

.editorial-composition:hover .hero-logo-img {
  transform: scale(1.03);
}

/* Stats Section */
.stats-section {
  padding: 5rem 0;
  background-color: var(--surface-container-low);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary-container);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--on-surface-variant);
  font-weight: 400;
}

/* Section Header Shared */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-container);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 1.2rem;
  color: var(--on-surface);
}

.section-description {
  font-size: 1rem;
  color: var(--on-surface-variant);
  font-weight: 300;
}

/* Interactive Quiz Section */
.quiz-section {
  padding: 8rem 0;
}

.quiz-container {
  max-width: 760px;
  margin: 0 auto;
  background: var(--surface-container);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(45, 34, 28, 0.05);
  position: relative;
  overflow: hidden;
}

.quiz-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: rgba(189, 152, 130, 0.08);
}

.quiz-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-container));
  transition: width 0.4s ease;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

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

.quiz-step-header {
  margin-bottom: 1.5rem;
}

.quiz-step-count {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-container);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.quiz-question {
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 2rem;
  color: var(--on-surface);
  font-family: var(--font-body);
  font-weight: 600;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.quiz-option-card {
  background: var(--surface-container-low);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.4rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: block;
  position: relative;
}

.quiz-option-card input[type="radio"] {
  display: none;
}

.quiz-option-card:hover {
  border-color: var(--primary);
  background: rgba(189, 152, 130, 0.03);
  transform: translateY(-2px);
}

.quiz-option-card.selected {
  border-color: var(--primary-container);
  background: var(--surface-container-lowest);
  box-shadow: 0 0 20px rgba(189, 152, 130, 0.08);
}

.quiz-option-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-container);
  margin-bottom: 0.4rem;
}

.quiz-option-desc {
  font-size: 0.88rem;
  color: var(--on-surface-variant);
  font-weight: 300;
}

.quiz-nav-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.btn-quiz-back {
  background: transparent;
  color: var(--on-surface-variant);
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition-smooth);
}

.btn-quiz-back:hover {
  color: var(--on-surface);
}

/* Quiz Results Panel */
.quiz-results {
  display: none;
  text-align: center;
  padding: 1.5rem 0;
  animation: fadeIn 0.6s ease-out;
}

.quiz-results.active {
  display: block;
}

.results-gauge-container {
  position: relative;
  width: 200px;
  height: 100px;
  margin: 0 auto 2.5rem auto;
  overflow: hidden;
}

.results-gauge-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 12px solid rgba(45, 34, 28, 0.04);
  box-sizing: border-box;
}

.results-gauge-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 12px solid var(--primary);
  border-top-color: transparent;
  border-left-color: transparent;
  box-sizing: border-box;
  transform: rotate(-135deg); /* -135deg (0%) to 45deg (100%) */
  transition: transform 1.5s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.5s ease;
}

.results-percentage {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-container);
  line-height: 1;
}

.results-risk-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 12px rgba(45, 34, 28, 0.04);
}

.results-risk-pill.risk-low {
  background: rgba(197, 210, 193, 0.25);
  color: #588053;
  border: 1px solid rgba(197, 210, 193, 0.5);
}

.results-risk-pill.risk-medium {
  background: rgba(232, 220, 213, 0.35);
  color: var(--primary-container);
  border: 1px solid var(--border);
}

.results-risk-pill.risk-high {
  background: rgba(189, 152, 130, 0.18);
  color: #A6654E;
  border: 1px solid rgba(189, 152, 130, 0.3);
}

.results-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.results-desc {
  font-size: 0.98rem;
  color: var(--on-surface-variant);
  max-width: 55ch;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}

/* Services Showcase Section */
.services {
  padding: 8rem 0;
  background-color: var(--surface-container-low);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.service-card {
  background: var(--surface-container);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.8rem;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(45, 34, 28, 0.015);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 15px 35px rgba(45, 34, 28, 0.05);
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: var(--surface-container-lowest);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-container);
  margin-bottom: 1.8rem;
  border: 1px solid var(--border);
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--on-surface);
}

.service-desc {
  font-size: 0.95rem;
  color: var(--on-surface-variant);
  font-weight: 300;
  line-height: 1.7;
}

/* Trajectory (About) Section */
.about {
  padding: 8rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-card-frame {
  position: relative;
  border-radius: 16px;
  padding: 12px;
  background: var(--surface-container);
  border: 1px solid var(--border);
  box-shadow: 0 20px 45px rgba(45, 34, 28, 0.04);
}

.about-card-frame::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 20px;
  border: 1px solid var(--border);
  pointer-events: none;
}

.about-frame-img {
  width: 100%;
  max-width: 500px;
  height: 520px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 10px;
  display: block;
  filter: sepia(0.04) contrast(1.02) brightness(0.98);
}

.about-content {
  max-width: 600px;
}

.about-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-container);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.2rem;
}

.about-title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 1.8rem;
  color: var(--on-surface);
}

.about-desc {
  font-size: 1rem;
  color: var(--on-surface-variant);
  margin-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.about-desc strong {
  color: var(--on-surface);
  font-weight: 600;
}

.about-checklist {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.about-checklist-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--on-surface);
}

.checklist-icon {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Team Section */
.team-section {
  padding: 8rem 0;
  border-top: 1px solid var(--border);
}

.team-container {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  margin-top: 4rem;
}

.team-member-row {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  background: var(--surface-container-low);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(45, 34, 28, 0.01);
}

.team-member-row:hover {
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(45, 34, 28, 0.05);
}

.team-member-row.reverse {
  flex-direction: row-reverse;
}

.team-member-visual {
  flex: 0 0 200px;
  display: flex;
  justify-content: center;
}

.team-member-monogram {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: rgba(10, 106, 122, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(45, 34, 28, 0.04);
  transition: var(--transition-smooth);
}

.team-member-row:hover .team-member-monogram {
  transform: scale(1.05);
  background: rgba(10, 106, 122, 0.08);
  box-shadow: 0 12px 30px rgba(10, 106, 122, 0.15);
}

.monogram-letters {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--on-surface);
  letter-spacing: 0.05em;
}

.team-member-info {
  flex: 1;
}

.team-member-name {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  color: var(--on-surface);
}

.team-member-role {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-container);
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.team-member-desc {
  font-size: 0.95rem;
  color: var(--on-surface-variant);
  margin-bottom: 1.8rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 65ch;
}

.team-member-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.spec-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--surface-container);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--on-surface);
  font-weight: 400;
}

.spec-icon {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

/* Footer Section */
footer {
  background: var(--surface-container-lowest);
  border-top: 1px solid var(--border);
  padding: 5rem 0 3.5rem 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  max-height: 48px;
  width: auto;
}

.footer-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--on-surface-variant);
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--on-surface);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(122, 104, 93, 0.6);
}

.footer-credits a {
  color: var(--primary-container);
  text-decoration: none;
  font-weight: 500;
}

.footer-credits a:hover {
  text-decoration: underline;
}

/* Floating WhatsApp Widget Styles */
.whatsapp-float-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  font-family: var(--font-body);
}

.whatsapp-float-trigger {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition-smooth);
  position: relative;
}

.whatsapp-float-trigger:hover {
  background: #20ba5a;
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
}

.whatsapp-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary-container);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--surface);
}

.whatsapp-dropdown {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: var(--surface-container);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(45, 34, 28, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.whatsapp-float-container.active .whatsapp-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.whatsapp-dropdown-header {
  background: rgba(10, 106, 122, 0.04);
  padding: 1.2rem;
  border-bottom: 1px solid var(--border);
}

.whatsapp-dropdown-header h4 {
  font-size: 1rem;
  color: var(--primary-container);
  margin-bottom: 0.3rem;
}

.whatsapp-dropdown-header p {
  font-size: 0.78rem;
  color: var(--on-surface-variant);
  line-height: 1.4;
}

.whatsapp-dropdown-body {
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--surface-container-low);
}

.whatsapp-contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  border-radius: 8px;
  text-decoration: none;
  background: var(--surface-container);
  border: 1px solid var(--border);
  transition: var(--transition-smooth);
}

.whatsapp-contact-item:hover {
  border-color: var(--primary);
  background: rgba(10, 106, 122, 0.03);
  transform: translateX(-4px);
}

.whatsapp-avatar-monogram {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  background: rgba(10, 106, 122, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--on-surface);
  flex-shrink: 0;
}

.whatsapp-contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.whatsapp-contact-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--on-surface);
}

.whatsapp-contact-desc {
  font-size: 0.75rem;
  color: var(--on-surface-variant);
}

.whatsapp-arrow {
  width: 16px;
  height: 16px;
  color: var(--on-surface-variant);
  transition: var(--transition-smooth);
}

.whatsapp-contact-item:hover .whatsapp-arrow {
  color: var(--primary-container);
  transform: translateX(2px);
}

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */

@media (max-width: 1024px) {
  .hero-grid {
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-tilt-card {
    max-width: 420px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-content {
    max-width: 100%;
  }
  
  .about-visual {
    order: 2;
  }
  
  .team-member-row, .team-member-row.reverse {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 2rem;
    gap: 2rem;
  }
  
  .team-member-specs {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* Header Navigation Menu Toggle */
  .menu-toggle {
    display: flex;
  }
  
  .logo-main {
    font-size: 1.8rem;
  }
  
  .logo-sub-title {
    font-size: 0.78rem;
  }
  
  .logo-sub-desc {
    font-size: 0.52rem;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100dvh;
    background: var(--surface-container);
    border-left: 1px solid var(--border);
    flex-direction: column;
    padding: 7rem 2.5rem 3rem 2.5rem;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: -10px 0 35px rgba(45, 34, 28, 0.05);
    z-index: 999;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-action-btn {
    display: none; /* Hide top CTA on mobile */
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .quiz-container {
    padding: 2rem 1.5rem;
  }
  
  .quiz-question {
    font-size: 1.15rem;
  }
  
  .quiz-option-card {
    padding: 1rem;
  }
  
  .quiz-option-title {
    font-size: 0.95rem;
  }
  
  .quiz-option-desc {
    font-size: 0.8rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .whatsapp-dropdown {
    width: calc(100vw - 60px);
  }
}

/* ==========================================
   ASC ADVOCACIA - NEW CUSTOM SECTIONS
   ========================================== */

.hero-container-single {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero-content-single {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-title-single {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  line-height: 1.25;
  color: var(--on-surface);
  margin-bottom: 0.5rem;
}

.hero-title-single .highlight {
  color: var(--primary-container);
}

.hero-desc-single {
  font-size: 1.15rem;
  color: var(--on-surface-variant);
  font-weight: 300;
  max-width: 70ch;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hero-actions-single {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

@media (max-width: 600px) {
  .hero-actions-single {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions-single .btn {
    width: 100%;
    justify-content: center;
  }
}

.hero-subtitle-top {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-container);
  letter-spacing: 0.1em;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.services-3-cols {
  grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 900px) {
  .services-3-cols {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 600px) {
  .services-3-cols {
    grid-template-columns: 1fr !important;
  }
}

.btn-card-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.8rem;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}
.btn-card-action:hover {
  color: var(--primary-container);
  transform: translateX(4px);
}

/* Team Card Grid Styles */
.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
@media (max-width: 900px) {
  .team-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .team-cards-grid {
    grid-template-columns: 1fr;
  }
}

.team-member-card {
  background: var(--surface-container-low);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(45, 34, 28, 0.015);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-member-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(45, 34, 28, 0.05);
}

.member-visual-wrapper {
  margin: 0 auto 1.5rem auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary);
  box-shadow: 0 8px 20px rgba(45, 34, 28, 0.04);
  transition: var(--transition-smooth);
}

.member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: var(--transition-smooth);
}

.team-member-card:hover .member-visual-wrapper {
  transform: scale(1.03);
  border-color: var(--primary-container);
}

.team-member-card:hover .member-img {
  transform: scale(1.05);
}

.member-info {
  width: 100%;
}

.member-name {
  font-size: 1.3rem;
  color: var(--on-surface);
  margin-bottom: 0.3rem;
}

.member-role {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-container);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.member-desc {
  font-size: 0.88rem;
  color: var(--on-surface-variant);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-weight: 300;
}

.member-specs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.member-specs .spec-tag {
  background: var(--surface-container);
  border: 1px solid var(--border);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.72rem;
  color: var(--on-surface);
}

/* Instagram Reels Section */
.instagram-section {
  padding: 8rem 0;
  background-color: var(--surface-container-low);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
@media (max-width: 1024px) {
  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .reels-grid {
    grid-template-columns: 1fr;
  }
}

.reel-card {
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  box-shadow: 0 8px 24px rgba(45, 34, 28, 0.03);
  border: 1px solid var(--border);
  transition: var(--transition-smooth);
}
.reel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(45, 34, 28, 0.08);
  border-color: var(--primary);
}

.reel-thumbnail {
  width: 100%;
  aspect-ratio: 9/16;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 1.2rem;
}

.reel-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 106, 122, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: var(--transition-smooth);
}
.reel-card:hover .reel-overlay {
  background-color: rgba(10, 106, 122, 0.3);
  opacity: 1;
}

.play-btn-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--surface-container);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
}
.reel-card:hover .play-btn-circle {
  transform: scale(1.1);
  background-color: var(--primary);
  color: var(--on-primary);
}

.play-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.reel-title-overlay {
  position: relative;
  z-index: 10;
}
.reel-title-overlay h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.reel-action-tag {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.instagram-cta-container {
  text-align: center;
  margin-top: 3.5rem;
}

/* FAQ Accordion Styles */
.faq-section {
  padding: 8rem 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 4rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: var(--surface-container);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition-smooth);
}
.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 1.8rem;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--on-surface);
  transition: var(--transition-smooth);
}
.faq-question:hover {
  color: var(--primary-container);
}

.faq-arrow {
  width: 20px;
  height: 20px;
  color: var(--on-surface-variant);
  transition: transform 0.3s ease;
}
.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: var(--surface-container-low);
}
.faq-answer p {
  padding: 0 1.8rem 1.5rem 1.8rem;
  font-size: 0.95rem;
  color: var(--on-surface-variant);
  font-weight: 300;
  line-height: 1.7;
}

/* Contact Section & Form Styles */
.contact-section {
  padding: 8rem 0;
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

.contact-info {
  max-width: 500px;
}

.contact-description {
  font-size: 1rem;
  color: var(--on-surface-variant);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.contact-points {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-point-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.point-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(10, 106, 122, 0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.contact-point-item h5 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--on-surface);
  margin-bottom: 0.2rem;
}

.contact-point-item p {
  font-size: 0.88rem;
  color: var(--on-surface-variant);
  font-weight: 300;
}

.contact-card {
  background: var(--surface-container);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(45, 34, 28, 0.03);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--on-surface-variant);
}
.form-group input, .form-group textarea {
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-container-low);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--on-surface);
  transition: var(--transition-smooth);
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary);
  background: var(--surface-container-lowest);
  outline: none;
  box-shadow: 0 0 0 4px rgba(10, 106, 122, 0.1);
}

.form-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 2rem 0;
  color: var(--on-surface-variant);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.form-divider::before, .form-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border);
}
.form-divider:not(:empty)::before {
  margin-right: .75em;
}
.form-divider:not(:empty)::after {
  margin-left: .75em;
}

.wa-action-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}

.btn-wa-green {
  width: 100%;
  justify-content: center;
  background-color: #25D366;
  color: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.btn-wa-green:hover {
  background-color: #128C7E;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

.wa-subtext {
  font-size: 0.78rem;
  color: var(--on-surface-variant);
  font-weight: 300;
}

/* Footer Info Bar Styles */
.footer-info-bar {
  text-align: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.footer-address {
  font-size: 0.9rem;
  color: var(--on-surface);
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.footer-oab {
  font-size: 0.82rem;
  color: var(--primary-container);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--on-surface-variant);
  font-weight: 300;
  font-style: italic;
  max-width: 70ch;
  margin: 0 auto;
  line-height: 1.5;
}

.inline-icon {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: 2px;
  color: var(--primary);
}

/* WhatsApp Floating Button Pulse Effect */
.whatsapp-pulse {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0;
  animation: wapulse 2s infinite;
  pointer-events: none;
}
@keyframes wapulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* ==========================================
   ASC ADVOCACIA - PREMIUM HERO MICRO-INTERACTIONS
   ========================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes visualReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleCircle {
  from {
    transform: translateX(-50%) scale(0.85);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}

@keyframes slowFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Left Side Staggered Entrance */
.gsap-hero-left {
  opacity: 0;
  animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-badge-wrapper {
  animation-delay: 0.15s;
}

.hero-title {
  animation-delay: 0.3s;
}

.hero-desc {
  animation-delay: 0.45s;
}

.hero-actions {
  animation-delay: 0.6s;
}

.hero-trust-indicators {
  animation-delay: 0.75s;
}

/* Right Side Composition Entrance and Float */
.gsap-hero-right {
  opacity: 0;
  animation: visualReveal 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.45s;
}

.editorial-circle {
  animation: scaleCircle 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.25s;
}

.editorial-composition {
  animation: slowFloat 8s ease-in-out infinite;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .hero-desc {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .hero-trust-indicators {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
  }
}

@media (max-width: 480px) {
  .editorial-composition {
    max-width: 300px;
    height: 360px;
  }
  .editorial-circle {
    width: 220px;
    height: 220px;
  }
  .portrait-wrapper {
    max-height: 340px;
  }
  .hero-trust-indicators {
    padding-top: 1.2rem;
  }
}

