/* ============================================
   CORAL CAMARGO - PSICÓLOGO ORIENTADOR
   Modern Psychology Website
   ============================================ */

/* --- CSS Variables --- */
:root {
  /* Colors - Teal from logo */
  --primary: #0e918e;
  --primary-light: #12b5b1;
  --primary-dark: #0a706e;
  --primary-50: rgba(14, 145, 142, 0.05);
  --primary-100: rgba(14, 145, 142, 0.1);
  --primary-200: rgba(14, 145, 142, 0.2);

  --accent: #0bbab6;
  --accent-light: #3dd4d0;
  --accent-dark: #0a706e;

  --neutral-50: #fafaf8;
  --neutral-100: #f5f3f0;
  --neutral-200: #e8e4df;
  --neutral-300: #d4cfc8;
  --neutral-400: #a09a91;
  --neutral-500: #757069;
  --neutral-600: #5a5650;
  --neutral-700: #3d3a36;
  --neutral-800: #2a2825;
  --neutral-900: #1a1917;

  --white: #ffffff;
  --bg: #fdfcfb;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-py: clamp(4rem, 8vw, 7rem);

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.6s;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.06);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--neutral-700);
  background-color: var(--bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

/* --- Section Base --- */
.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 2rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.25rem;
  height: 2px;
  background: var(--primary);
  transform: translateY(-50%);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--neutral-800);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.text-accent {
  color: var(--primary);
  font-style: italic;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--neutral-600);
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn-icon {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #1ebe5a;
  border-color: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-icon-svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s var(--ease);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all 0.4s ease;
}

.navbar.scrolled .nav-logo-img {
  filter: none;
  height: 48px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  transition: width 0.3s var(--ease);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--white);
}

.navbar.scrolled .nav-link {
  color: var(--neutral-500);
}

.navbar.scrolled .nav-link:hover {
  color: var(--neutral-800);
}

.navbar.scrolled .nav-link::after {
  background: var(--primary);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 2px;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--neutral-200);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  z-index: 100;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-bottom: none;
  border-right: none;
  rotate: 45deg;
  border-radius: 3px 0 0 0;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--neutral-600);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.dropdown-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.dropdown-item:hover {
  background: var(--primary-50);
  color: var(--neutral-800);
  padding-left: 1.1rem;
}

.dropdown-divider {
  height: 1px;
  background: var(--neutral-200);
  margin: 0.35rem 0.5rem;
}

.dropdown-item-all {
  font-weight: 600;
  color: var(--primary);
}

.dropdown-item-all:hover {
  color: var(--primary-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-nav {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

.navbar:not(.scrolled) .btn-nav {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

.navbar:not(.scrolled) .btn-nav:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar.scrolled .mobile-toggle span {
  background: var(--neutral-700);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    135deg,
    #0a1a1a 0%,
    #0a3d3c 30%,
    var(--primary-dark) 60%,
    #0e5a58 100%
  );
}

/* Variante con imagen (descomentar para activar):
.hero-bg {
  background: url('images/hero-bg.jpg') center/cover no-repeat;
}
.hero-gradient {
  background: linear-gradient(135deg, rgba(10,26,26,0.85) 0%, rgba(10,61,60,0.75) 30%, rgba(10,112,110,0.7) 60%, rgba(14,90,88,0.8) 100%);
  z-index: 1;
}
*/

.hero-gradient {
  position: absolute;
  inset: 0;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 25% 25%, var(--white) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, var(--white) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #6ee7a0;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-title .text-accent {
  color: var(--accent-light);
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

.stat-icon svg {
  width: 16px;
  height: 16px;
  color: var(--accent-light);
}

.stat-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.stat-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.15);
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  animation: float 3s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
}

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

/* ============================================
   ABOUT SECTION
   ============================================ */
.section-about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-100), var(--neutral-100));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.placeholder-icon {
  width: 80px;
  height: 80px;
  color: var(--primary);
  opacity: 0.3;
}

.image-placeholder span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--primary);
  opacity: 0.5;
}

.image-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(14, 145, 142, 0.15), transparent);
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  box-shadow: var(--shadow-lg);
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.about-image {
  position: relative;
}

.about-badge svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.badge-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neutral-800);
}

.badge-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--neutral-400);
}

.about-intro {
  font-size: 1.15rem;
  color: var(--neutral-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-text {
  font-size: 1rem;
  color: var(--neutral-600);
  margin-bottom: 2rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--neutral-50);
  transition: all 0.3s ease;
}

.feature:hover {
  background: var(--primary-50);
  transform: translateY(-2px);
}

.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--primary-100);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.feature h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.15rem;
}

.feature p {
  font-size: 0.9rem;
  color: var(--neutral-400);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.section-services {
  background: var(--neutral-50);
}

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

.service-card {
  display: block;
  text-decoration: none;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--neutral-200);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--primary-100);
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrap {
  background: var(--primary);
}

.service-icon-wrap svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
  transition: color 0.3s ease;
}

.service-card:hover .service-icon-wrap svg {
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 1rem;
  color: var(--neutral-600);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.service-link:hover {
  gap: 0.6rem;
}

.service-link:hover svg {
  transform: translateX(2px);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.section-process {
  background: var(--white);
}

.process-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
}

.process-card {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.process-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-100);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--primary-50);
  border: 2px solid var(--primary-200);
}

.process-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.process-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.5rem;
}

.process-card p {
  font-size: 0.95rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

.process-connector {
  display: flex;
  align-items: center;
  padding-top: 5rem;
}

.process-connector svg {
  width: 24px;
  height: 24px;
  color: var(--neutral-300);
}

.process-cta {
  text-align: center;
}

.cta-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--neutral-600);
  padding: 0.5rem 1rem;
  background: var(--neutral-50);
  border-radius: var(--radius-xl);
  border: 1px solid var(--neutral-200);
}

.cta-badge svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

/* ============================================
   APPROACH SECTION
   ============================================ */
.section-approach {
  background: var(--neutral-50);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.approach-quote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--neutral-600);
  line-height: 1.7;
  padding: 1.5rem;
  border-left: 3px solid var(--primary);
  background: var(--primary-50);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 1.5rem;
}

.approach-quote cite {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 500;
  color: var(--primary);
  margin-top: 0.75rem;
}

.approach-text {
  font-size: 1rem;
  color: var(--neutral-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.approach-values {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.value-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-200);
  transition: all 0.3s var(--ease);
}

.value-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-200);
}

.value-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--primary-100);
}

.value-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.value-text {
  flex: 1;
}

.value-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.35rem;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.section-testimonials {
  background: var(--neutral-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--neutral-200);
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: #f59e0b;
  fill: #f59e0b;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--neutral-700);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--neutral-100);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-100);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-name {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--neutral-800);
}

.testimonial-detail {
  display: block;
  font-size: 0.85rem;
  color: var(--neutral-500);
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   HERO URGENCY
   ============================================ */

.hero-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 1.5rem;
  animation: pulse-subtle 2s ease-in-out infinite;
}

.urgency-icon {
  width: 16px;
  height: 16px;
}

@keyframes pulse-subtle {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

/* ============================================
   STICKY FREE CONSULTATION BADGE
   ============================================ */

.sticky-badge {
  position: fixed;
  top: 50%;
  right: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  z-index: 800;
  background: var(--primary);
  color: var(--white);
  padding: 1rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: -2px 0 10px rgba(14, 145, 142, 0.3);
  transform: translateY(-50%);
}

.sticky-badge:hover {
  background: var(--primary-dark);
  padding-right: 1.75rem;
}

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

/* ============================================
   EXIT INTENT POPUP
   ============================================ */

.exit-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fade-in 0.3s ease;
}

.exit-overlay.active {
  display: flex;
}

.exit-popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: slide-up 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.exit-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--neutral-400);
  padding: 0.25rem;
  transition: color 0.2s;
}

.exit-popup-close:hover {
  color: var(--neutral-700);
}

.exit-popup-close svg {
  width: 24px;
  height: 24px;
}

.exit-popup-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.exit-popup-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.exit-popup h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--neutral-800);
  margin-bottom: 0.75rem;
}

.exit-popup p {
  font-size: 1rem;
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.exit-popup .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.exit-popup .exit-dismiss {
  font-size: 0.85rem;
  color: var(--neutral-400);
  cursor: pointer;
  border: none;
  background: none;
  padding: 0.5rem;
  transition: color 0.2s;
}

.exit-popup .exit-dismiss:hover {
  color: var(--neutral-600);
}

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

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================
   ARTICLES SECTION
   ============================================ */
.section-articles {
  background: var(--white);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.article-card {
  display: block;
  text-decoration: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  transition: all 0.4s var(--ease);
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.article-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-100), var(--neutral-100));
}

.article-placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--primary);
  opacity: 0.4;
}

.article-date {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--neutral-600);
}

.article-body {
  padding: 1.5rem;
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.article-body p {
  font-size: 0.95rem;
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
}

.article-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.article-link:hover svg {
  transform: translateX(4px);
}

/* ============================================
   CTA SECTION
   ============================================ */
.section-cta {
  background: var(--neutral-50);
  padding: 3rem 0;
}

.cta-card {
  position: relative;
  background: linear-gradient(135deg, var(--neutral-900), var(--primary-dark));
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-content h2 .text-accent {
  color: var(--accent-light);
}

.cta-content > p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}

.cta-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-features span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}

.cta-features svg {
  width: 18px;
  height: 18px;
  color: var(--accent-light);
}

.cta-decoration {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.cta-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  top: -100px;
  right: -50px;
}

.cta-circle-2 {
  width: 200px;
  height: 200px;
  top: auto;
  right: auto;
  bottom: -80px;
  left: -40px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.section-contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-desc {
  font-size: 1.05rem;
  color: var(--neutral-600);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral-200);
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: var(--primary-200);
  background: var(--primary-50);
  transform: translateX(4px);
}

.method-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--primary-100);
}

.method-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.contact-method h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--neutral-800);
}

.contact-method p {
  font-size: 0.9rem;
  color: var(--neutral-600);
}

/* Calendly Widget */
.contact-calendly-wrap {
  background: var(--neutral-50);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 0;
  border: 1px solid var(--neutral-200);
  overflow: hidden;
}

.calendly-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 1rem;
  text-align: center;
}

.calendly-inline-widget {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 1050px;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 1rem;
    right: 1rem;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--neutral-900);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo-link {
  display: inline-block;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
  color: rgba(255,255,255,0.5);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,0.7);
}

.footer-links h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
}

.footer-disclaimer {
  font-size: 0.75rem !important;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s var(--ease);
  box-shadow: var(--shadow-xl);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-article {
  max-width: 780px;
}

.modal-close {
  position: sticky;
  top: 1rem;
  float: right;
  margin: 1rem 1rem 0 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--neutral-100);
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--neutral-200);
  transform: rotate(90deg);
}

.modal-close svg {
  width: 20px;
  height: 20px;
  color: var(--neutral-600);
}

.modal-content {
  padding: 2.5rem;
  padding-top: 0;
}

/* Service Modal Content */
.modal-service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--primary-100);
  margin-bottom: 1.5rem;
}

.modal-service-icon svg {
  width: 30px;
  height: 30px;
  color: var(--primary);
}

.modal-content h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.modal-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.modal-content p {
  font-size: 0.95rem;
  color: var(--neutral-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.modal-content .modal-highlight {
  background: var(--primary-50);
  border-left: 3px solid var(--primary);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.25rem 0;
  font-style: italic;
  color: var(--neutral-700);
}

.modal-content ul {
  list-style: none;
  margin: 1rem 0;
}

.modal-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

.modal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.modal-cta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--neutral-200);
  text-align: center;
}

.modal-cta p {
  font-size: 0.9rem;
  color: var(--neutral-500);
  margin-bottom: 1rem;
}

/* Article Modal Content */
.article-modal-header {
  margin-bottom: 2rem;
}

.article-modal-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.article-modal-meta span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--neutral-400);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.article-modal-meta span svg {
  width: 14px;
  height: 14px;
}

.article-modal-body p {
  font-size: 1rem;
  color: var(--neutral-600);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.article-modal-body .article-emphasis {
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--primary-dark);
  text-align: center;
  padding: 1.5rem;
  margin: 1.5rem 0;
  background: var(--primary-50);
  border-radius: var(--radius-md);
}

/* Modal scrollbar */
.modal::-webkit-scrollbar {
  width: 6px;
}

.modal::-webkit-scrollbar-track {
  background: transparent;
}

.modal::-webkit-scrollbar-thumb {
  background: var(--neutral-300);
  border-radius: 3px;
}

@media (max-width: 768px) {
  .modal-overlay {
    padding: 1rem;
    align-items: flex-end;
  }

  .modal {
    max-height: 90vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .modal-content {
    padding: 1.5rem;
    padding-top: 0;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
}

[data-animate="fade-right"] {
  transform: translateX(-30px);
}

[data-animate="fade-left"] {
  transform: translateX(30px);
}

[data-animate].visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid,
  .approach-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    gap: 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu .nav-link {
    color: var(--neutral-700);
    padding: 0.75rem 0;
    display: block;
    border-bottom: 1px solid var(--neutral-100);
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    min-width: auto;
    padding: 0 0 0 0.5rem;
    display: none;
    background: transparent;
  }

  .dropdown-menu::before {
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-item {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }

  .dropdown-divider {
    margin: 0.25rem 0;
  }

  .btn-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-logo-img {
    height: 42px;
  }

  .navbar.scrolled .nav-logo-img {
    height: 36px;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .hero-urgency {
    font-size: 0.8rem;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 0.75rem;
  }

  .stat-divider {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    flex-direction: column;
    align-items: center;
  }

  .process-connector {
    transform: rotate(90deg);
    padding-top: 0;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 2rem;
  }

  .value-card {
    padding: 1.25rem;
  }

  .cta-card {
    padding: 2.5rem 1.5rem;
  }

  .contact-grid {
    gap: 2rem;
  }

  .contact-calendly-wrap {
    padding: 1rem 1rem 0;
  }

  .calendly-inline-widget {
    min-height: 900px !important;
  }

  .exit-popup {
    padding: 2rem 1.5rem;
  }

  .exit-popup h3 {
    font-size: 1.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .cta-features {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cta-badges {
    flex-direction: column;
    gap: 0.5rem;
  }

  .approach-grid {
    gap: 2rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .contact-info-card {
    padding: 1.25rem;
  }
}
