/* ===========================================
   Dra. Sofía Sánchez – Neumóloga e Internista
   Hoja de estilos centralizada
   =========================================== */

:root {
  --navy: #0d1f2d;
  --teal: #2a7f7f;
  --teal-light: #3aa8a8;
  --cream: #f5f0e8;
  --warm-white: #fdfcf9;
  --gray: #6b7280;
  --light-gray: #e8e4dc;
  --accent: #c8a96e;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--navy);
  font-size: 16px;
  line-height: 1.6;
}

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

/* ===========================================
   NAV
   =========================================== */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(253,252,249,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-gray);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--teal); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }

.nav-cta {
  background: var(--teal);
  color: white !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--navy) !important; color: white !important; }

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); display: block; transition: 0.3s; }

/* MOBILE NAV */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--light-gray);
  padding: 1.5rem 5%;
  flex-direction: column;
  gap: 1rem;
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.95rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}
.mobile-menu .btn-primary { color: white !important; text-align: center; justify-content: center; }

/* ===========================================
   HERO
   =========================================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 68px;
}

.hero-left {
  background: var(--navy);
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 6% 4rem;
  position: relative; overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute; top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(42,127,127,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(42,127,127,0.15);
  border: 1px solid rgba(42,127,127,0.3);
  color: var(--teal-light);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  width: fit-content;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s ease both;
}
.hero-tag::before { content: '●'; font-size: 0.5rem; }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-title em { font-style: italic; color: var(--accent); }

.hero-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  max-width: 420px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s 0.2s ease both;
  font-weight: 300;
}

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-bottom: 3rem;
  animation: fadeUp 0.6s 0.3s ease both;
}

.badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
}

.hero-cta-group {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.4s ease both;
}

/* ===========================================
   BUTTONS
   =========================================== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--teal);
  color: white;
  text-decoration: none;
  padding: 0.9rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.25s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--teal-light); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 0.9rem 1.8rem;
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  transition: all 0.25s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); color: white; }

.whatsapp-btn {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--whatsapp);
  color: white;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.25s;
  font-size: 0.95rem;
}
.whatsapp-btn:hover { background: var(--whatsapp-dark); transform: translateY(-1px); }
.wa-icon { font-size: 1.4rem; }

/* ===========================================
   HERO RIGHT (info cards)
   =========================================== */
.hero-right {
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 5%;
  gap: 2rem;
}

.info-card {
  background: white;
  border-radius: 8px;
  padding: 1.75rem;
  border: 1px solid var(--light-gray);
  animation: fadeUp 0.6s ease both;
}
.info-card + .info-card { animation-delay: 0.15s; }

.info-card-header {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1rem;
}

.icon-circle {
  width: 38px; height: 38px;
  background: rgba(42,127,127,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
}

.hours-grid { display: grid; gap: 0.4rem; }

.hours-row {
  display: flex; justify-content: space-between;
  font-size: 0.88rem;
  color: var(--gray);
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--light-gray);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 500; color: var(--navy); }
.hours-open { color: var(--teal); font-weight: 500; }

/* ===========================================
   SECTIONS
   =========================================== */
section { padding: 6rem 5%; }

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

/* ===========================================
   ABOUT
   =========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-visual { position: relative; }

.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

.about-photo-placeholder::after {
  content: '👩‍⚕️';
  font-size: 8rem;
  opacity: 0.15;
}

.about-photo-placeholder .placeholder-text {
  position: absolute;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  text-align: center;
  padding: 1rem;
}

.floating-stat {
  position: absolute;
  background: white;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border: 1px solid var(--light-gray);
}

.floating-stat.stat-1 { bottom: -20px; right: -30px; }
.floating-stat.stat-2 { top: 40px; left: -30px; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
}
.stat-label { font-size: 0.75rem; color: var(--gray); margin-top: 0.2rem; }

.about-content p {
  color: var(--gray);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  font-weight: 300;
}

.credentials {
  margin-top: 2.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}

.credential-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem;
  background: var(--cream);
  border-radius: 4px;
  border-left: 3px solid var(--teal);
}

.cred-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }

.cred-title {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.cred-sub { font-size: 0.82rem; color: var(--gray); }

/* ===========================================
   SERVICIOS
   =========================================== */
#servicios { background: var(--navy); color: white; }
#servicios .section-label { color: var(--teal-light); }
#servicios .section-title { color: white; }

.services-intro { max-width: 1200px; margin: 0 auto; }

.services-intro > p {
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin-bottom: 3rem;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(42,127,127,0.3); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1rem; font-weight: 500; color: white; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.87rem; color: rgba(255,255,255,0.5); font-weight: 300; line-height: 1.6; }

/* ===========================================
   PROCESO / CÓMO ES LA CONSULTA
   =========================================== */
#proceso { background: var(--warm-white); }

.process-wrap { max-width: 1200px; margin: 0 auto; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.process-step {
  background: white;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  padding: 1.75rem;
  position: relative;
}

.process-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--teal);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.process-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.process-step p { font-size: 0.88rem; color: var(--gray); font-weight: 300; }

/* ===========================================
   POR QUÉ ELEGIR / TRUST
   =========================================== */
#por-que { background: var(--cream); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 2.5rem auto 0;
}

.trust-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--light-gray);
  display: flex; flex-direction: column; gap: 0.75rem;
}

.trust-icon {
  width: 48px; height: 48px;
  background: rgba(42,127,127,0.1);
  color: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.trust-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 600;
}

.trust-card p { font-size: 0.9rem; color: var(--gray); font-weight: 300; }

/* ===========================================
   TESTIMONIOS
   =========================================== */
#testimonios { background: var(--warm-white); }

.testimonials-wrap { max-width: 1200px; margin: 0 auto; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  display: flex; flex-direction: column; gap: 1rem;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  position: absolute;
  top: 0.5rem; left: 1.25rem;
  font-size: 4rem;
  color: var(--teal);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-stars { color: var(--accent); font-size: 0.95rem; letter-spacing: 0.15em; }

.testimonial-card p {
  font-style: italic;
  color: var(--navy);
  font-weight: 300;
  font-size: 0.95rem;
  position: relative; z-index: 1;
}

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

.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 500;
  font-size: 0.95rem;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}
.testimonial-meta { font-size: 0.78rem; color: var(--gray); }

/* ===========================================
   UBICACIÓN
   =========================================== */
#ubicacion { background: var(--cream); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  height: 420px;
}

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

.location-details { display: flex; flex-direction: column; gap: 1.5rem; }

.detail-item {
  display: flex; gap: 1rem;
  padding: 1.25rem;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--light-gray);
}

.detail-icon {
  width: 42px; height: 42px;
  background: rgba(42,127,127,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.detail-text h4 { font-weight: 500; font-size: 0.9rem; color: var(--navy); margin-bottom: 0.3rem; }
.detail-text p { font-size: 0.85rem; color: var(--gray); }

/* ===========================================
   FAQ
   =========================================== */
#faq { background: var(--warm-white); }

.faq-wrap { max-width: 860px; margin: 0 auto; }

.faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  background: white;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--teal); }

.faq-item summary {
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-weight: 500;
  font-size: 1rem;
  color: var(--navy);
  display: flex; justify-content: space-between; align-items: center;
  list-style: none;
  position: relative;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--teal);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ===========================================
   BLOG (cards en home)
   =========================================== */
#blog { max-width: 100%; }

.blog-intro {
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 1rem;
}

.blog-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }

.blog-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}

.blog-content { padding: 1.5rem; }

.blog-tag {
  display: inline-block;
  background: rgba(42,127,127,0.1);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-card p { font-size: 0.85rem; color: var(--gray); font-weight: 300; }

.blog-meta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--light-gray);
  font-size: 0.78rem;
  color: var(--gray);
}

/* ===========================================
   BLOG POST (página individual)
   =========================================== */
.post-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #14334a 100%);
  color: white;
  padding: 8rem 5% 5rem;
  position: relative;
  overflow: hidden;
}

.post-hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(42,127,127,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.post-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative; z-index: 2;
}

.breadcrumbs {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;
}
.breadcrumbs a { color: var(--teal-light); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs .sep { opacity: 0.5; }

.post-tag {
  display: inline-block;
  background: rgba(42,127,127,0.25);
  border: 1px solid rgba(42,127,127,0.4);
  color: var(--teal-light);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.post-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: white;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.post-title em { font-style: italic; color: var(--accent); }

.post-lead {
  color: rgba(255,255,255,0.7);
  font-size: 1.08rem;
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 720px;
}

.post-meta {
  display: flex; gap: 1.25rem; flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  align-items: center;
}
.post-meta .author {
  display: flex; gap: 0.6rem; align-items: center;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.post-meta .dot { opacity: 0.4; }
.author-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
}

.post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 5%;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #2a3441;
}

.post-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 2.5vw, 2.1rem);
  font-weight: 500;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
  line-height: 1.25;
}

.post-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}

.post-body p { margin-bottom: 1.25rem; font-weight: 300; }
.post-body strong { color: var(--navy); font-weight: 600; }
.post-body em { color: var(--teal); font-style: italic; }

.post-body ul, .post-body ol {
  margin: 0 0 1.5rem 1.5rem;
  font-weight: 300;
}
.post-body li { margin-bottom: 0.5rem; }
.post-body ul li::marker { color: var(--teal); }

.post-body a {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: rgba(42,127,127,0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.post-body a:hover { text-decoration-color: var(--teal); }

.post-callout {
  background: var(--cream);
  border-left: 4px solid var(--teal);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-weight: 300;
}
.post-callout strong { display: block; color: var(--navy); margin-bottom: 0.5rem; font-size: 1rem; }
.post-callout p { font-size: 0.95rem; margin-bottom: 0; color: var(--gray); }

.post-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  color: white;
  padding: 2.5rem;
  border-radius: 12px;
  margin: 3rem 0;
  text-align: center;
}
.post-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: white;
  margin-bottom: 0.75rem;
}
.post-cta p { color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; }
.post-cta .whatsapp-btn { display: inline-flex; background: white; color: var(--whatsapp-dark); }
.post-cta .whatsapp-btn:hover { background: var(--navy); color: white; }

.related-posts {
  background: var(--cream);
  padding: 5rem 5%;
}
.related-posts-inner {
  max-width: 1200px; margin: 0 auto;
}
.related-posts h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 2rem;
}

/* ===========================================
   FLOATING WHATSAPP BUTTON
   =========================================== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: flex; align-items: center; gap: 0.6rem;
}

.floating-cta-pill {
  background: white;
  color: var(--navy);
  padding: 0.65rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  text-decoration: none;
  white-space: nowrap;
  display: flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--light-gray);
  animation: slideInFromRight 0.5s 1.5s ease both;
  transition: all 0.25s;
}
.floating-cta-pill:hover { background: var(--cream); transform: translateX(-2px); }
.floating-cta-pill .dot {
  width: 8px; height: 8px;
  background: var(--whatsapp);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.floating-whatsapp {
  background: var(--whatsapp);
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.8rem;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: all 0.25s;
  position: relative;
  animation: bounceIn 0.6s 1s ease both;
}
.floating-whatsapp:hover { background: var(--whatsapp-dark); transform: scale(1.08); }

.floating-whatsapp::before {
  content: '';
  position: absolute;
  top: -4px; left: -4px; right: -4px; bottom: -4px;
  border: 2px solid var(--whatsapp);
  border-radius: 50%;
  opacity: 0.5;
  animation: ringPulse 2s infinite;
}

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

@keyframes ringPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes bounceIn {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

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

/* ===========================================
   CTA STRIP
   =========================================== */
.cta-strip {
  background: var(--teal);
  padding: 5rem 5%;
  text-align: center;
}

.cta-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: white;
  margin-bottom: 1rem;
}

.cta-strip p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; font-weight: 300; }

.cta-strip .btn-primary {
  background: white;
  color: var(--teal);
  font-size: 1rem;
}
.cta-strip .btn-primary:hover { background: var(--navy); color: white; }

/* ===========================================
   FOOTER
   =========================================== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  padding: 4rem 5% 2rem;
}

.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col p, .footer-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  text-decoration: none;
  margin-bottom: 0.6rem;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal-light); }

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: white;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}
.footer-logo span { color: var(--teal-light); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.82rem;
}

/* ===========================================
   ANIMATIONS
   =========================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta-desktop { display: none; }
  .hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 3rem 5% 2rem; min-height: 70vh; }
  .hero-right { padding: 2rem 5%; }

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual { display: none; }

  .location-grid { grid-template-columns: 1fr; }
  .map-container { height: 320px; }

  .floating-stat { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .floating-cta-pill { display: none; }
  .floating-cta { bottom: 18px; right: 18px; }

  .post-hero { padding: 6rem 5% 3rem; }
  .post-body { padding: 3rem 5%; font-size: 1rem; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 4rem 5%; }
  .post-cta { padding: 1.75rem 1.25rem; }
}
