/* ========================================
   CENTRO DE BIENESTAR PSICOFÍSICO
   Stylesheet - Psicoterapia Transpersonal
   ======================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --color-primary:     #8B7355;   /* Warm brown - primary accent */
  --color-primary-dark:#6B5B45;   /* Darker brown */
  --color-primary-light:#F5F0E8;  /* Warm cream background */
  --color-secondary:   #C4A882;   /* Soft tan */
  --color-accent:      #D4956A;   /* Terracotta */
  --color-text:        #3A3028;   /* Deep warm brown text */
  --color-text-light:  #7A6E64;   /* Muted brown */
  --color-white:       #FFFFFF;
  --color-bg:          #FDFAF5;   /* Warm off-white page bg */
  --color-footer:      #2E2419;   /* Deep dark brown footer */
  --font-heading:      'Playfair Display', serif;
  --font-body:         'Inter', sans-serif;
  --radius:            12px;
  --radius-lg:         20px;
  --shadow:            0 4px 24px rgba(139,115,85,0.12);
  --shadow-hover:      0 8px 40px rgba(139,115,85,0.22);
  --transition:        all 0.3s ease;
  --section-pad:       100px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.25; color: var(--color-text); }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
p { margin-bottom: 1rem; color: var(--color-text-light); }
p:last-child { margin-bottom: 0; }
mark { background: linear-gradient(120deg, rgba(196,168,130,0.35) 0%, rgba(196,168,130,0.35) 100%); padding: 0 4px; border-radius: 4px; color: inherit; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section_space { padding: var(--section-pad) 0; }
.section_space_sm { padding: 60px 0; }
.row { display: flex; flex-wrap: wrap; gap: 30px; }
.row.no-gap { gap: 0; }
.col-12 { width: 100%; }
.col-6 { width: calc(50% - 15px); }
.col-4 { width: calc(33.333% - 20px); }
.col-3 { width: calc(25% - 22.5px); }
.text-center { text-align: center; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.d-flex { display: flex; }

/* ---------- Section Heading ---------- */
.section_heading { margin-bottom: 60px; }
.section_heading .eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
  padding: 6px 16px;
  background: var(--color-primary-light);
  border-radius: 50px;
}
.section_heading h2 { margin-bottom: 16px; }
.section_heading p { font-size: 1.05rem; max-width: 580px; }
.section_heading.text-center p { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn .btn_icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: var(--transition);
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 18px rgba(139,115,85,0.3);
}
.btn-primary .btn_icon { background: rgba(255,255,255,0.2); }
.btn-primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139,115,85,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline .btn_icon { background: var(--color-primary-light); color: var(--color-primary); }
.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}
.btn-outline:hover .btn_icon { background: rgba(255,255,255,0.2); color: var(--color-white); }
.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
}
.btn-white .btn_icon { background: var(--color-primary-light); }
.btn-white:hover { background: var(--color-primary-light); transform: translateY(-2px); }

/* WhatsApp Button */
.btn-whatsapp {
  background: #25D366;
  color: var(--color-white);
  box-shadow: 0 4px 18px rgba(37,211,102,0.3);
}
.btn-whatsapp .btn_icon { background: rgba(255,255,255,0.2); }
.btn-whatsapp:hover {
  background: #1ebe5a;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
}

/* Link Button */
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.92rem;
}
.btn-link:hover { color: var(--color-primary-dark); gap: 12px; }
.btn-link .btn_icon { font-size: 0.8rem; }

/* ── Floating AGENDA Button (always visible) ── */
.float_agenda {
  position: fixed;
  bottom: 32px;
  left: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--color-accent), #c07a50);
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(212,149,106,0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: agenda_pulse 2.8s ease-in-out infinite;
}
.float_agenda i { font-size: 1rem; }
.float_agenda:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 36px rgba(212,149,106,0.6);
  color: white;
  animation: none;
}
@keyframes agenda_pulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(212,149,106,0.5); transform: translateY(0); }
  50%       { box-shadow: 0 10px 38px rgba(212,149,106,0.7); transform: translateY(-4px); }
}
@media (max-width: 600px) {
  .float_agenda {
    bottom: 20px; left: 50%;
    transform: translateX(-50%);
    padding: 13px 20px;
    font-size: 0.85rem;
    animation: none;
    box-shadow: 0 6px 24px rgba(212,149,106,0.55);
  }
  .float_agenda:hover { transform: translateX(-50%) translateY(-3px); }
}


/* ---------- HEADER / NAVIGATION ---------- */
.site_header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(253,250,245,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139,115,85,0.1);
  transition: var(--transition);
}
.site_header.scrolled {
  box-shadow: 0 2px 20px rgba(139,115,85,0.12);
}
.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
/* Logo */
.site_logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo_icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}
.logo_text { display: flex; flex-direction: column; line-height: 1.1; }
.logo_name { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--color-text); }
.logo_tagline { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-light); }

/* Nav */
.main_menu nav { display: flex; align-items: center; }
.main_menu ul { display: flex; align-items: center; gap: 6px; }
.main_menu ul li a {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--color-text-light);
  transition: var(--transition);
}
.main_menu ul li a:hover,
.main_menu ul li.active a {
  color: var(--color-primary);
  background: var(--color-primary-light);
}
/* Header CTA */
.header_cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header_phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  transition: var(--transition);
  text-decoration: none;
}
.header_phone i { color: #25D366; font-size: 1rem; }
.header_phone:hover { color: #25D366; }

/* Mobile Toggle */
.mobile_toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.mobile_toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- HERO SECTION ---------- */
.hero_section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-bg) 60%, var(--color-primary-light) 100%);
}
.hero_section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,168,130,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero_section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,149,106,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero_content { padding-right: 40px; position: relative; z-index: 2; }
.hero_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 20px;
  padding: 8px 18px;
  background: var(--color-primary-light);
  border-radius: 50px;
  border: 1px solid rgba(139,115,85,0.2);
}
.hero_eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}
.hero_content h1 { margin-bottom: 20px; }
.hero_content h1 span { color: var(--color-primary); }
.hero_subtitle { font-size: 1.1rem; color: var(--color-text-light); max-width: 520px; margin-bottom: 20px; }
.hero_quote {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-primary);
  padding: 16px 24px;
  border-left: 3px solid var(--color-secondary);
  background: var(--color-primary-light);
  border-radius: 0 12px 12px 0;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero_btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero_stats { display: flex; gap: 36px; flex-wrap: wrap; }
.stat_item { display: flex; flex-direction: column; }
.stat_number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.stat_label { font-size: 0.8rem; color: var(--color-text-light); margin-top: 4px; }
.stat_divider { width: 1px; background: rgba(139,115,85,0.2); }

/* Hero Image */
.hero_image_wrap { position: relative; z-index: 2; }
.hero_image_frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.hero_image_frame img { width: 100%; height: 580px; object-fit: cover; display: block; }
.hero_image_badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 220px;
}
.badge_icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.badge_text { font-size: 0.82rem; color: var(--color-text-light); line-height: 1.4; }
.badge_text strong { display: block; color: var(--color-text); font-weight: 600; margin-bottom: 2px; }

/* Floating leaf decorations */
.leaf_shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.4;
}
.leaf_shape svg { fill: var(--color-secondary); }

/* ---------- BG COLORS ---------- */
.bg_primary_light { background-color: var(--color-primary-light); }
.bg_accent { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%); }

/* ---------- EMPATIA SECTION ---------- */
.empathy_section { padding: var(--section-pad) 0; }
.empathy_inner {
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.empathy_quotes { display: flex; flex-direction: column; gap: 14px; }
.empathy_quote_item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--color-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--color-secondary);
  box-shadow: 0 2px 12px rgba(139,115,85,0.06);
  transition: var(--transition);
}
.empathy_quote_item:hover { transform: translateX(4px); box-shadow: 0 4px 20px rgba(139,115,85,0.12); }
.quote_mark { color: var(--color-secondary); font-size: 1.5rem; font-family: var(--font-heading); line-height: 1; flex-shrink: 0; margin-top: -4px; }
.empathy_quote_item p { margin: 0; font-style: italic; font-size: 0.95rem; color: var(--color-text); }
.empathy_text p { font-size: 1rem; line-height: 1.85; }

/* ---------- SERVICES / PILLARS ---------- */
.pillars_section { padding: var(--section-pad) 0; }
.pillar_card {
  flex: 1;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(139,115,85,0.1);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pillar_card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transform: scaleX(0);
  transition: var(--transition);
}
.pillar_card:hover::before { transform: scaleX(1); }
.pillar_card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.pillar_icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
  transition: var(--transition);
}
.pillar_card:hover .pillar_icon { background: var(--color-primary); color: var(--color-white); }
.pillar_card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.pillar_card p { font-size: 0.92rem; }
.pillars_footer {
  margin-top: 40px;
  padding: 32px 40px;
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  text-align: center;
}
.pillars_footer p { font-size: 1rem; max-width: 620px; margin: 0 auto; line-height: 1.85; }

/* ---------- ABOUT TEASER ---------- */
.about_teaser { padding: var(--section-pad) 0; background: var(--color-primary-light); }
.about_teaser_inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about_teaser_image { position: relative; }
.about_teaser_image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
}
.about_image_accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--color-secondary);
  opacity: 0.3;
  z-index: -1;
}
.about_teaser_content { }
.about_teaser_content h2 { margin-bottom: 20px; }
.about_teaser_content p { font-size: 1rem; line-height: 1.85; margin-bottom: 20px; }
.commitments { margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.commitment_item { display: flex; align-items: flex-start; gap: 14px; }
.commitment_icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.commitment_item h4 { font-size: 0.95rem; margin-bottom: 2px; }
.commitment_item p { font-size: 0.88rem; margin: 0; }

/* ---------- CTA FINAL ---------- */
.cta_section { padding: var(--section-pad) 0; }
.cta_inner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta_inner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta_inner::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta_inner h2 { color: var(--color-white); margin-bottom: 16px; position: relative; z-index: 1; }
.cta_inner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 500px; margin: 0 auto 36px; position: relative; z-index: 1; }
.cta_btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---------- PAGE HEADER ---------- */
.page_hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-primary-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page_hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,168,130,0.12) 0%, transparent 70%);
}
.page_hero .eyebrow { 
  display: inline-flex; 
  align-items: center;
  gap: 8px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--color-primary); margin-bottom: 16px; padding: 8px 18px;
  background: var(--color-primary-light); border-radius: 50px;
  border: 1px solid rgba(139,115,85,0.2);
}
.page_hero h1 { margin-bottom: 16px; position: relative; z-index: 1; }
.page_hero p { font-size: 1.1rem; max-width: 560px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 20px; font-size: 0.85rem; color: var(--color-text-light); }
.breadcrumb a { color: var(--color-primary); }
.breadcrumb span { color: var(--color-text-light); }

/* ---------- SOBRE MÍ PAGE ---------- */
.about_story { padding: var(--section-pad) 0; }
.about_story_grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about_story_image { position: relative; }
.about_story_image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
}
.about_story_image .image_badge {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--color-primary);
  color: white;
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.about_story_image .image_badge strong { display: block; font-family: var(--font-heading); font-size: 1.8rem; line-height: 1; }
.about_story_image .image_badge span { font-size: 0.75rem; opacity: 0.85; }
.about_text h2 { margin-bottom: 20px; }
.about_text h3 { color: var(--color-primary); margin: 36px 0 14px; font-size: 1.3rem; }
.about_text p { font-size: 1rem; line-height: 1.9; }

/* Philosophy / Commitments */
.commitments_grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.commitment_card {
  padding: 24px;
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid rgba(139,115,85,0.1);
  box-shadow: 0 2px 12px rgba(139,115,85,0.06);
  transition: var(--transition);
}
.commitment_card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.commitment_card .icon { font-size: 1.5rem; margin-bottom: 12px; }
.commitment_card h4 { margin-bottom: 6px; font-size: 1rem; }
.commitment_card p { font-size: 0.88rem; margin: 0; }

/* ---------- SERVICES PAGE ---------- */
.service_main { padding: var(--section-pad) 0; }
.service_highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.service_highlight_text h2 { margin-bottom: 20px; }
.service_highlight_text p { font-size: 1rem; line-height: 1.9; margin-bottom: 16px; }
.service_highlight_image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
}
.outcomes { margin: 28px 0; }
.outcomes h3 { margin-bottom: 16px; color: var(--color-primary); font-size: 1.1rem; }
.outcome_item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(139,115,85,0.08);
}
.outcome_item:last-child { border-bottom: none; }
.outcome_item .icon { color: var(--color-primary); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.outcome_item p { margin: 0; font-size: 0.95rem; }

/* Process Steps */
.process_section { padding: var(--section-pad) 0; background: var(--color-primary-light); }
.process_steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.step_card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.step_card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.step_number {
  position: absolute;
  top: -16px;
  left: 28px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(139,115,85,0.3);
}
.step_card h3 { margin: 16px 0 12px; font-size: 1.15rem; }
.step_card p { font-size: 0.92rem; margin: 0; }

/* ---------- CONTACT PAGE ---------- */
.contact_section { padding: var(--section-pad) 0; }
.contact_grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact_info h2 { margin-bottom: 20px; }
.contact_info > p { font-size: 1rem; line-height: 1.85; margin-bottom: 36px; }
.contact_details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact_detail_item { display: flex; align-items: flex-start; gap: 16px; }
.contact_detail_icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact_detail_content h4 { font-size: 0.85rem; color: var(--color-text-light); font-weight: 500; font-family: var(--font-body); margin-bottom: 2px; }
.contact_detail_content p { margin: 0; font-size: 0.95rem; font-weight: 600; color: var(--color-text); }
.office_hours {
  background: var(--color-primary-light);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 28px;
}
.office_hours h4 { font-size: 1rem; margin-bottom: 14px; }
.hours_item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(139,115,85,0.12); font-size: 0.88rem; }
.hours_item:last-child { border-bottom: none; }
.hours_item span:first-child { color: var(--color-text-light); }
.hours_item span:last-child { font-weight: 600; color: var(--color-text); }

/* Contact Form */
.contact_form_wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(139,115,85,0.1);
}
.contact_form_wrap h3 { margin-bottom: 8px; }
.contact_form_wrap > p { font-size: 0.92rem; margin-bottom: 32px; }
.form_group { margin-bottom: 20px; }
.form_group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}
.form_group input,
.form_group textarea,
.form_group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(139,115,85,0.2);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form_group input:focus,
.form_group textarea:focus,
.form_group select:focus {
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(139,115,85,0.1);
}
.form_group input::placeholder,
.form_group textarea::placeholder { color: rgba(122,110,100,0.5); }
.form_group textarea { resize: vertical; min-height: 130px; }
.form_grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form_footer { margin-top: 8px; }
.form_note { font-size: 0.8rem; color: var(--color-text-light); margin-top: 12px; text-align: center; }

/* Map */
.map_section { padding: 0 0 var(--section-pad); }
.map_wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(139,115,85,0.1);
}
.map_wrap iframe { width: 100%; height: 380px; border: none; display: block; }

/* WhatsApp alternate CTA */
.whatsapp_alt {
  text-align: center;
  padding: 36px 32px;
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  margin-top: 24px;
}
.whatsapp_alt p { margin-bottom: 16px; font-size: 0.95rem; }

/* ---------- FOOTER ---------- */
.site_footer { background: var(--color-footer); padding: 72px 0 0; }
.footer_inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.footer_brand .logo_name { color: var(--color-white); }
.footer_brand .logo_tagline { color: rgba(255,255,255,0.5); }
.footer_desc { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.8; margin: 20px 0; }
.footer_social { display: flex; gap: 10px; }
.social_link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: var(--transition);
}
.social_link:hover { background: var(--color-primary); color: white; transform: translateY(-3px); }
.footer_col h4 { color: var(--color-white); font-size: 0.95rem; font-family: var(--font-body); font-weight: 600; margin-bottom: 20px; }
.footer_links { display: flex; flex-direction: column; gap: 10px; }
.footer_links a { font-size: 0.87rem; color: rgba(255,255,255,0.55); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer_links a::before { content: '›'; color: var(--color-secondary); }
.footer_links a:hover { color: var(--color-white); padding-left: 4px; }
.footer_contact_item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer_contact_item i { color: var(--color-secondary); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.footer_contact_item span { font-size: 0.87rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.footer_bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer_bottom p { margin: 0; font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer_bottom a { color: rgba(255,255,255,0.6); }
.footer_bottom a:hover { color: var(--color-white); }
.footer_seo {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  padding-bottom: 4px;
}

/* ---------- FLOATING WHATSAPP BUTTON ---------- */
.float_whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse_green 2.5s infinite;
}
.float_whatsapp:hover { background: #1ebe5a; color: white; transform: scale(1.1); animation: none; }
@keyframes pulse_green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* ---------- BACK TO TOP ---------- */
.backtotop {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.backtotop.visible { opacity: 1; visibility: visible; }
.backtotop:hover { background: var(--color-primary-dark); transform: translateY(-3px); color: white; }

/* ---------- TESTIMONIALS ---------- */
.testimonials_section { padding: var(--section-pad) 0; }
.testimonials_grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial_card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(139,115,85,0.1);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.testimonial_card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.stars { display: flex; gap: 4px; color: #F5A623; margin-bottom: 16px; font-size: 0.9rem; }
.testimonial_text { font-style: italic; font-size: 0.95rem; margin-bottom: 20px; color: var(--color-text); line-height: 1.8; }
.testimonial_author { display: flex; align-items: center; gap: 12px; }
.author_avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author_name { font-weight: 600; font-size: 0.92rem; color: var(--color-text); }
.author_role { font-size: 0.8rem; color: var(--color-text-light); }

/* ---------- UTILITY CLASSES ---------- */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 36px; }
.mt-5 { margin-top: 48px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 36px; }
.mb-5 { margin-bottom: 48px; }

/* ---------- ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .footer_inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --section-pad: 70px; }
  .col-6, .col-4, .col-3 { width: 100%; }
  .hero_section { padding-top: 100px; padding-bottom: 60px; min-height: auto; }
  .hero_content { padding-right: 0; margin-bottom: 40px; }
  .hero_image_frame img { height: 380px; }
  .hero_image_badge { left: 10px; }
  .empathy_inner { grid-template-columns: 1fr; gap: 36px; padding: 40px 30px; }
  .about_teaser_inner { grid-template-columns: 1fr; }
  .about_story_grid { grid-template-columns: 1fr; gap: 40px; }
  .contact_grid { grid-template-columns: 1fr; }
  .service_highlight { grid-template-columns: 1fr; gap: 36px; }
  .process_steps { grid-template-columns: 1fr; }
  .commitments_grid { grid-template-columns: 1fr; }
  .testimonials_grid { grid-template-columns: 1fr; }
  .pillars_section .row { flex-direction: column; }
  .pillar_card { width: 100%; }
  .cta_inner { padding: 48px 30px; }
  .footer_inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .main_menu nav { display: none; }
  .main_menu nav.open { display: flex; position: fixed; top: 80px; left: 0; right: 0; bottom: 0; background: var(--color-bg); padding: 24px; flex-direction: column; z-index: 1000; overflow-y: auto; }
  .main_menu nav.open ul { flex-direction: column; gap: 4px; width: 100%; }
  .main_menu nav.open ul li a { display: block; padding: 14px 16px; font-size: 1.05rem; }
  .mobile_toggle { display: flex; }
  .header_phone { display: none; }
}

@media (max-width: 600px) {
  :root { --section-pad: 56px; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }
  .hero_stats { gap: 20px; }
  .hero_btns { flex-direction: column; align-items: flex-start; }
  .hero_btns .btn { width: 100%; justify-content: center; }
  .cta_btns { flex-direction: column; align-items: center; }
  .cta_btns .btn { width: 100%; justify-content: center; max-width: 320px; }
  .contact_form_wrap { padding: 32px 20px; }
  .empathy_inner { padding: 30px 20px; }
  .form_grid { grid-template-columns: 1fr; }
  .footer_inner { grid-template-columns: 1fr; }
  .footer_bottom { flex-direction: column; text-align: center; }
  .about_story_image img, .service_highlight_image img { height: 300px; }
  .float_whatsapp { bottom: 20px; right: 20px; }
  .backtotop { bottom: 20px; left: 20px; }
}
