/* ===========================
   Dra. Sofía Hernández — CSS
   =========================== */

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

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

:root {
  --sage:        #7B9E87;
  --sage-light:  #A8C4A2;
  --sage-pale:   #D6E8D1;
  --sage-dark:   #5C7D6A;
  --sage-deep:   #4A6657;
  --whatsapp:      #1C8049;
  --whatsapp-dark: #15693B;
  --beige:       #F5F0E8;
  --beige-mid:   #EDE6D6;
  --beige-dark:  #D4C5A9;
  --white:       #FAFAFA;
  --text-dark:   #2C2C2C;
  --text-mid:    #5C5C5C;
  --text-light:  #696969;
  --border:      #E2DAD0;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.10);
  --transition:  0.28s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { color: var(--text-mid); }

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

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

ul { list-style: none; }

/* --- Utilities --- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--beige { background: var(--beige); }
.section--sage-pale { background: var(--sage-pale); }

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-deep);
  background: var(--sage-pale);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.section-header p {
  margin-top: 16px;
  font-size: 1.05rem;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--sage);
  border-radius: 2px;
  margin: 20px auto 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--sage-dark);
  color: #fff;
  box-shadow: 0 4px 16px rgba(92,125,106,0.35);
}
.btn-primary:hover {
  background: var(--sage-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,102,87,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--sage-deep);
  border: 1.5px solid var(--sage);
}
.btn-outline:hover {
  background: var(--sage-dark);
  color: #fff;
  border-color: var(--sage-dark);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 16px rgba(28,128,73,0.35);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
}

.btn-whatsapp svg,
.btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
}

.navbar__bar {
  background: rgba(250,250,250,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.navbar.scrolled .navbar__bar { box-shadow: var(--shadow-sm); }

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.navbar__logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
}

.navbar__logo-title {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--sage-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--sage);
  border-radius: 1px;
  transition: width var(--transition);
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--sage-deep);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

.navbar__cta { margin-left: 8px; }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar__mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  gap: 4px;
  overflow-y: auto;
  z-index: 99;
}

.navbar__mobile a {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}

.navbar__mobile a:last-child { border-bottom: none; }

.navbar__mobile .btn {
  margin-top: 12px;
  justify-content: center;
}

/* --- Footer --- */
.footer {
  background: #2C2C2C;
  color: #ccc;
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 12px;
}

.footer__brand-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #aaa;
  max-width: 280px;
}

.footer__col-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col ul li a {
  font-size: 0.9rem;
  color: #aaa;
  transition: color var(--transition);
}

.footer__col ul li a:hover { color: #fff; }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #aaa;
  margin-bottom: 12px;
}

.footer__contact-item svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--sage-light);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: #999;
}

.footer__bottom a { color: var(--sage-light); }
.footer__bottom a:hover { color: #fff; }

/* --- WhatsApp Floating --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(28,128,73,0.4);
  transition: all var(--transition);
  animation: pulse-wa 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: var(--whatsapp-dark);
  box-shadow: 0 8px 28px rgba(28,128,73,0.5);
  animation: none;
}

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

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(28,128,73,0.4); }
  50% { box-shadow: 0 4px 32px rgba(28,128,73,0.6), 0 0 0 8px rgba(28,128,73,0.08); }
}

/* --- Page Hero (interior pages) --- */
.page-hero {
  padding: 144px 0 80px;
  background: var(--beige);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--sage-pale);
  opacity: 0.5;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -60px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: var(--beige-dark);
  opacity: 0.3;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 { margin-bottom: 16px; }
.page-hero p  { font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

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

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.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; }

/* ============================================================
   PAGE — INICIO
   ============================================================ */

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--beige);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero__bg-circle-1 {
  position: absolute;
  top: -100px; right: -120px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sage-pale) 0%, transparent 70%);
  opacity: 0.7;
}

.hero__bg-circle-2 {
  position: absolute;
  bottom: -80px; left: -100px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--beige-mid) 0%, transparent 70%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__tag { margin-bottom: 20px; }

.hero__title {
  margin-bottom: 20px;
}

.hero__title em {
  font-style: italic;
  color: var(--sage-dark);
}

.hero__subtitle {
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero__stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--sage-dark);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 4px;
}

.hero__image-wrap {
  position: relative;
}

.hero__image-frame {
  position: relative;
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  overflow: hidden;
  background: var(--sage-pale);
  aspect-ratio: 4 / 5;
  max-width: 420px;
  margin: 0 auto;
}

.hero__avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(135deg, var(--sage-pale) 0%, var(--beige-mid) 100%);
}

.hero__avatar-placeholder svg {
  width: 120px;
  height: 120px;
  color: var(--sage);
  opacity: 0.6;
}

.hero__avatar-placeholder span {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--sage-dark);
  opacity: 0.7;
}

.hero__badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
}

.hero__badge-icon {
  width: 40px; height: 40px;
  background: var(--sage-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__badge-icon svg { width: 20px; height: 20px; color: var(--sage-dark); }

.hero__badge-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}

.hero__badge-text span {
  font-size: 0.76rem;
  color: var(--text-light);
}

.hero__badge-2 {
  bottom: auto;
  top: 32px;
  left: auto;
  right: -24px;
}

/* Intro Strip */
.intro-strip {
  background: var(--sage);
  padding: 40px 0;
}

.intro-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.intro-strip__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 32px;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.intro-strip__item:last-child { border-right: none; }

.intro-strip__item svg { width: 28px; height: 28px; color: rgba(255,255,255,0.8); flex-shrink: 0; }

.intro-strip__item strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
}

.intro-strip__item span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

/* Services Preview */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  text-align: center;
}

.service-card:hover {
  border-color: var(--sage-light);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-card__icon {
  width: 64px; height: 64px;
  background: var(--sage-pale);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--sage);
}

.service-card:hover .service-card__icon svg { color: #fff; }

.service-card__icon svg { width: 28px; height: 28px; color: var(--sage-dark); transition: color var(--transition); }

.service-card h3 { margin-bottom: 10px; }
.service-card p  { font-size: 0.9rem; }
.service-card a  { display: inline-block; margin-top: 16px; font-size: 0.85rem; font-weight: 600; color: var(--sage-deep); }
.service-card a:hover { color: var(--sage-dark); }

/* About Preview */
.about-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-preview__image {
  position: relative;
}

.about-preview__img-frame {
  border-radius: 32px;
  overflow: hidden;
  background: var(--sage-pale);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.about-preview__img-frame svg {
  width: 100px;
  height: 100px;
  color: var(--sage);
  opacity: 0.5;
}

.about-preview__img-frame span,
.about-story__img-frame span,
.service-detail-item__icon-bg span,
.contact-photo-frame span {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--sage-dark);
  opacity: 0.7;
}

.about-preview__accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--sage-light);
  border-radius: 24px;
  z-index: -1;
}

.about-preview__accent-2 {
  top: auto; left: auto;
  bottom: -20px; right: -20px;
  background: var(--beige-mid);
  border: none;
  z-index: -1;
}

.about-preview__content .section-tag { margin-bottom: 12px; }
.about-preview__content h2 { margin-bottom: 20px; }
.about-preview__content p  { margin-bottom: 16px; }

.about-preview__list {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-preview__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-mid);
}

.about-preview__list li::before {
  content: '';
  width: 20px; height: 20px;
  background: var(--sage-pale);
  border-radius: 50%;
  border: 2px solid var(--sage);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235C7D6A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* Testimonial Preview */
.testimonials-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-card__quote {
  font-size: 2.5rem;
  color: var(--sage-light);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 12px;
}

.testimonial-card__text {
  font-size: 0.92rem;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-card__stars svg { width: 16px; height: 16px; color: #F4B942; fill: #F4B942; }

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--sage-deep);
  background: var(--sage-pale);
  flex-shrink: 0;
}

.testimonial-card__author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.testimonial-card__author-detail {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.cta-banner .container { position: relative; z-index: 1; }

.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-whatsapp { margin: 0 auto; }

/* ============================================================
   PAGE — SOBRE MÍ
   ============================================================ */

.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.about-story__img {
  position: sticky;
  top: 100px;
}

.about-story__img-frame {
  border-radius: 32px;
  overflow: hidden;
  background: var(--sage-pale);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.about-story__img-frame svg {
  width: 100px; height: 100px;
  color: var(--sage); opacity: 0.5;
}

.about-story__credentials {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 20px;
  border: 1px solid var(--border);
}

.about-story__credentials h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 16px;
}

.credential-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.credential-item:last-child { margin-bottom: 0; }

.credential-item__dot {
  width: 8px; height: 8px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.credential-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.credential-item span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.about-story__content h2 { margin-bottom: 24px; }
.about-story__content p  { margin-bottom: 18px; }

.about-story__values {
  margin-top: 40px;
}

.about-story__values h3 {
  margin-bottom: 24px;
  font-size: 1.3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-card {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
}

.value-card__icon {
  width: 36px; height: 36px;
  background: var(--sage-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.value-card__icon svg { width: 18px; height: 18px; color: var(--sage-dark); }
.value-card h4 { font-size: 0.95rem; margin-bottom: 6px; }
.value-card p  { font-size: 0.82rem; }

/* ============================================================
   PAGE — SERVICIOS
   ============================================================ */

.services-detail {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.service-detail-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-detail-item:nth-child(even) .service-detail-item__visual { order: 2; }
.service-detail-item:nth-child(even) .service-detail-item__content { order: 1; }

.service-detail-item__visual {
  position: relative;
}

.service-detail-item__icon-bg {
  aspect-ratio: 1;
  max-width: 380px;
  background: var(--beige);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto;
  border: 1px solid var(--border);
}

.service-detail-item__icon-bg svg {
  width: 120px; height: 120px;
  color: var(--sage);
  opacity: 0.6;
}

.service-detail-item__content .section-tag { margin-bottom: 10px; }
.service-detail-item__content h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 16px; }
.service-detail-item__content p  { margin-bottom: 16px; }

.service-includes {
  margin: 24px 0;
  background: var(--beige);
  border-radius: var(--radius);
  padding: 20px 24px;
  border: 1px solid var(--border);
}

.service-includes h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 14px;
}

.service-includes ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.service-includes li svg {
  width: 16px; height: 16px;
  color: var(--sage);
  flex-shrink: 0;
}

/* ============================================================
   PAGE — TESTIMONIOS
   ============================================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.testimonial-full-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* ============================================================
   PAGE — CONTACTO
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 36px; }

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-item__icon {
  width: 44px; height: 44px;
  background: var(--sage-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item__icon svg { width: 20px; height: 20px; color: var(--sage-dark); }

.contact-info-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.contact-info-item span {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.contact-hours {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 20px 24px;
  border: 1px solid var(--border);
  margin-bottom: 28px;
}

.contact-hours h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 12px;
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}

.contact-hours-row:last-child { border-bottom: none; }
.contact-hours-row span:first-child { font-weight: 500; color: var(--text-dark); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 { margin-bottom: 8px; }
.contact-form-wrap > p { font-size: 0.9rem; margin-bottom: 28px; }

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(123,158,135,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235C5C5C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 12px;
}

.form-note svg { width: 14px; height: 14px; vertical-align: middle; color: var(--whatsapp); }

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color var(--transition);
}

.faq-item__question:hover { color: var(--sage-deep); }

.faq-item__question svg {
  width: 18px; height: 18px;
  color: var(--sage);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-item__question { color: var(--sage-deep); }
.faq-item.open .faq-item__question svg { transform: rotate(180deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item__answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  line-height: 1.8;
}

.faq-item.open .faq-item__answer { max-height: 300px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .hero__grid,
  .about-preview__grid,
  .about-story__grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__image-wrap { display: none; }

  .about-story__img { position: static; }

  .service-detail-item {
    grid-template-columns: 1fr;
  }

  .service-detail-item:nth-child(even) .service-detail-item__visual,
  .service-detail-item:nth-child(even) .service-detail-item__content {
    order: unset;
  }

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

  .hero__stats { gap: 20px; }

  .intro-strip__grid { grid-template-columns: 1fr; gap: 0; }
  .intro-strip__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .intro-strip__item:last-child { border-bottom: none; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }

  .navbar__links { display: none; }
  .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__mobile.open { display: flex; }

  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; text-align: center; }

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

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

  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { text-align: center; justify-content: center; }

  .contact-form-wrap { padding: 24px 20px; }
}
