/* ============================================
   ARMONÍA PODOLÓGICA — Design System
   Warm, Golden, Premium Aesthetic
   ============================================ */

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

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary palette — warm golds & earth */
  --gold-50:  #FDF8EE;
  --gold-100: #F9EDCF;
  --gold-200: #F2D89E;
  --gold-300: #E8BF64;
  --gold-400: #D4A83B;
  --gold-500: #C8973E;
  --gold-600: #A87830;
  --gold-700: #8B5E24;
  --gold-800: #6B4226;
  --gold-900: #4A2D1A;

  /* Neutral palette — warm grays */
  --warm-50:  #FAFAF7;
  --warm-100: #F5F3EE;
  --warm-200: #E8E4DC;
  --warm-300: #D4CEC3;
  --warm-400: #B5ADA0;
  --warm-500: #968D7E;
  --warm-600: #7A7169;
  --warm-700: #5E5650;
  --warm-800: #3D3733;
  --warm-900: #1F1B18;

  /* Accent */
  --accent-green: #7A9E7E;
  --accent-rose:  #C9827A;
  --accent-cream: #FFF8F0;

  /* Semantic */
  --bg-primary:   var(--warm-50);
  --bg-secondary: var(--gold-50);
  --bg-card:      #FFFFFF;
  --text-primary: var(--warm-900);
  --text-secondary: var(--warm-600);
  --text-accent:  var(--gold-600);

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

  /* Spacing scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-soft: 0 2px 16px rgba(107, 66, 38, 0.06);
  --shadow-medium: 0 4px 24px rgba(107, 66, 38, 0.10);
  --shadow-strong: 0 8px 40px rgba(107, 66, 38, 0.14);
  --shadow-gold: 0 4px 20px rgba(200, 151, 62, 0.25);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-normal: 0.4s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);
}

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

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--warm-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 500; }
h4 { font-size: 1.15rem; font-weight: 500; }

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 65ch;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: 40px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-200));
  border-radius: 2px;
}

/* ---------- Utility ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section-padding {
  padding: var(--space-4xl) 0;
}

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

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

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

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 151, 62, 0.3); }
  50%      { box-shadow: 0 0 20px 4px rgba(200, 151, 62, 0.15); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-lg) 0;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 20px rgba(107, 66, 38, 0.08);
  padding: var(--space-sm) 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-logo img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--warm-900);
}

.navbar:not(.scrolled) .nav-logo-text {
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--warm-600);
  position: relative;
  padding: var(--space-xs) 0;
}

.navbar:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-300));
  border-radius: 2px;
  transition: width var(--transition-fast);
}

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

.nav-links a:hover {
  color: var(--gold-600);
}

.navbar:not(.scrolled) .nav-links a:hover {
  color: #fff;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-full);
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  transition: all var(--transition-fast) !important;
  box-shadow: var(--shadow-gold);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200, 151, 62, 0.35) !important;
  color: #fff !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--warm-800);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.navbar:not(.scrolled) .nav-toggle span {
  background: #fff;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(31, 27, 24, 0.78) 0%,
    rgba(74, 45, 26, 0.55) 50%,
    rgba(31, 27, 24, 0.70) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero h1 {
  color: #fff;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s var(--ease-out) both;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.8s var(--ease-out) 0.15s both;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold);
  transition: all var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(200, 151, 62, 0.40);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Floating badge */
.hero-badge {
  position: absolute;
  bottom: 12%;
  right: 8%;
  z-index: 2;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  animation: float 4s ease-in-out infinite, fadeInRight 1s var(--ease-out) 0.5s both;
}

.hero-badge .badge-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.hero-badge .badge-text {
  color: #fff;
}

.hero-badge .badge-text strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
}

.hero-badge .badge-text span {
  font-size: 0.82rem;
  opacity: 0.75;
}

/* scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeInUp 1s var(--ease-out) 0.8s both;
}

.scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: pulse-glow 2s ease-in-out infinite;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: var(--bg-primary);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-200), transparent);
}

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
}

.services-header p {
  margin: var(--space-md) auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  border: 1px solid var(--warm-200);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: var(--gold-200);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold-50), var(--gold-100));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: var(--space-lg);
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  transform: scale(1.08);
}

.service-card:hover .service-icon span {
  filter: brightness(10);
}

.service-card h3 {
  margin-bottom: var(--space-sm);
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.65;
}

.service-price {
  display: inline-block;
  margin-top: var(--space-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--gold-600);
}

/* ============================================
   APPOINTMENT (AGENDAR CITA)
   ============================================ */
.appointment {
  background: linear-gradient(135deg, var(--warm-900), var(--gold-900));
  position: relative;
  overflow: hidden;
}

.appointment::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 151, 62, 0.08), transparent);
}

.appointment-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.appointment-info h2 {
  color: #fff;
  margin-bottom: var(--space-lg);
}

.appointment-info h2 span {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.appointment-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-2xl);
}

.appointment-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.appointment-features li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.appointment-features li .feat-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(200, 151, 62, 0.15);
  border: 1px solid rgba(200, 151, 62, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* Appointment form */
.appointment-form-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}

.appointment-form-card h3 {
  color: #fff;
  margin-bottom: var(--space-xl);
  text-align: center;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-400);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(200, 151, 62, 0.15);
}

.form-group select option {
  background: var(--warm-800);
  color: #fff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  margin-top: var(--space-sm);
  box-shadow: var(--shadow-gold);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200, 151, 62, 0.4);
}

/* Appointment header (centered) */
.appointment-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto var(--space-2xl);
}

.appointment-header h2 {
  color: #fff;
  margin-bottom: var(--space-md);
}

.appointment-header h2 span {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.appointment-header p {
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto;
}

/* Booking tabs */
.booking-tabs {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.booking-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  position: relative;
}

.booking-tab:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}

.booking-tab.active {
  background: rgba(200, 151, 62, 0.15);
  border-color: var(--gold-400);
  color: #fff;
  box-shadow: 0 0 20px rgba(200, 151, 62, 0.15);
}

.booking-tab svg {
  flex-shrink: 0;
}

.tab-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: #fff;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

/* Booking panels */
.booking-panel {
  display: none;
  animation: fadeInUp 0.5s var(--ease-out) both;
}

.booking-panel.active {
  display: block;
}

/* Cal.com embed */
.calcom-embed-wrapper {
  flex: 1;
  min-width: 0;
}

.calcom-embed {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 480px;
}

/* Cal.com setup instructions */
.calcom-setup {
  padding: var(--space-3xl) var(--space-2xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.calcom-setup .setup-icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-lg);
  opacity: 0.7;
}

.calcom-setup h3 {
  color: #fff;
  margin-bottom: var(--space-md);
}

.calcom-setup > p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  max-width: 400px;
  margin-bottom: var(--space-2xl);
}

.setup-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: left;
  width: 100%;
  max-width: 420px;
}

.setup-step {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  padding: var(--space-md) var(--space-lg);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.step-number {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
}

.setup-step code {
  background: rgba(200, 151, 62, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--gold-300);
}

/* Cal.com note box */
.calcom-note {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-top: var(--space-2xl);
  padding: var(--space-lg);
  background: rgba(200, 151, 62, 0.1);
  border: 1px solid rgba(200, 151, 62, 0.2);
  border-radius: var(--radius-md);
}

.calcom-note-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.calcom-note p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}

/* WhatsApp form button */
.form-submit-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.form-submit-whatsapp:hover {
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.form-submit-whatsapp svg {
  flex-shrink: 0;
}

/* Form subtitle */
.form-subtitle {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.88rem !important;
  text-align: center;
  margin-bottom: var(--space-xl) !important;
}

/* Cal.com inline embed active state */
.calcom-embed iframe {
  width: 100%;
  min-height: 600px;
  border: none;
}


/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--bg-secondary);
}

.contact-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
}

.contact-header p {
  margin: var(--space-md) auto 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-xl);
}

.contact-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  border: 1px solid var(--warm-200);
  transition: all var(--transition-normal);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--gold-200);
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold-50), var(--gold-100));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto var(--space-lg);
  transition: all var(--transition-fast);
}

.contact-card:hover .contact-icon {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  transform: scale(1.1);
}

.contact-card h4 {
  margin-bottom: var(--space-sm);
}

.contact-card p {
  font-size: 0.92rem;
  margin: 0 auto;
}

.contact-card a {
  color: var(--gold-600);
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--gold-500);
}

/* ============================================
   LOCATION / MAP
   ============================================ */
.location {
  background: var(--bg-primary);
  position: relative;
}

.location-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.location-info h2 {
  margin-bottom: var(--space-lg);
}

.location-info > p {
  margin-bottom: var(--space-2xl);
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--warm-200);
}

.schedule-item .day {
  font-weight: 600;
  color: var(--warm-800);
}

.schedule-item .hours {
  color: var(--gold-600);
  font-weight: 500;
}

.location-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 3px solid var(--warm-200);
  aspect-ratio: 4 / 3;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold-50), var(--warm-100));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  color: var(--warm-500);
  font-size: 0.95rem;
}

.map-placeholder .map-icon {
  font-size: 3rem;
  opacity: 0.4;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--warm-900);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand .nav-logo-text {
  color: #fff;
  margin-bottom: var(--space-md);
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 300px;
  line-height: 1.7;
}

.footer-column h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-column a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--transition-fast);
}

.footer-column a:hover {
  color: var(--gold-300);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.social-links {
  display: flex;
  gap: var(--space-md);
}

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-fast);
  animation: pulse-glow 2.5s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ============================================
   TOAST / SUCCESS MESSAGE
   ============================================ */
.toast {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 1100;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-strong);
  border-left: 4px solid var(--accent-green);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  transform: translateX(120%);
  transition: transform var(--transition-normal);
}

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

.toast-icon {
  font-size: 1.3rem;
}

.toast-text {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--warm-800);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .appointment-wrapper,
  .location-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .hero-badge {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 100px var(--space-2xl) var(--space-2xl);
    gap: var(--space-lg);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
    transition: right var(--transition-normal);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--warm-700) !important;
    font-size: 1.05rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

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

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

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

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
  }

  .nav-overlay.show {
    display: block;
  }

  .hero-content {
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

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

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .container {
    padding: 0 var(--space-md);
  }

  .section-padding {
    padding: var(--space-3xl) 0;
  }
}
