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

    :root {
      --cream:    #EFEDE7;
      --tan:      #BB9E85;
      --warm-mid: #C1BCAC;
      --light-gray: #DBD9CF;
      --espresso: #472C1D;
      --espresso-light: #6B4230;
      --white:    #FAFAF8;
      --text-dark: #2C1810;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Lato', sans-serif;
      background-color: var(--cream);
      color: var(--espresso);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1rem 2.5rem;
      background: rgba(239,237,231,0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(187,158,133,0.2);
    }

    .nav-logo {
      display: flex; align-items: center; gap: 0.6rem;
      text-decoration: none; cursor: pointer;
    }
    .nav-logo img{height:40px;width:auto;}
    .nav-logo:hover .nav-logo-text { color: var(--espresso-light); }
    .nav-logo-text-upper { font-family: 'Noto Serif Condensed', serif; font-size: 1.1rem; letter-spacing: 0.12em; color: var(--espresso) !important; text-transform: uppercase; }
    .nav-logo-text { font-family: 'Noto Serif Condensed', serif; font-size: 1.1rem; letter-spacing: 0.12em; color: rgba(239,237,231,0.75); text-transform: uppercase; }

    nav a {
      font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--espresso-light); text-decoration: none; font-weight: 700;
      transition: color 0.2s;
    }
    nav a:hover { color: var(--espresso); }

    .nav-cta {
      background: var(--espresso); color: var(--cream) !important;
      padding: 0.55rem 1.4rem; border-radius: 2px;
      letter-spacing: 0.12em; font-weight: 700;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: var(--espresso-light) !important; }
    .nav-links { display: flex; gap: 2rem; align-items: center; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center;
      position: relative; overflow: hidden;
      padding-top: 5rem;
    }

    .hero-bg {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 70% 50%, rgba(187,158,133,0.15) 0%, transparent 60%),
                  radial-gradient(ellipse at 10% 80%, rgba(71,44,29,0.05) 0%, transparent 50%);
      pointer-events: none;
    }

    /* Marble tooth SVG background decoration */
    .hero-tooth-wrap {
      position: relative; display: flex; align-items: center; justify-content: center;
      padding: 3rem 2rem;
    }

    .tooth-glow {
      position: absolute;
      width: 420px; height: 420px;
      background: radial-gradient(circle, rgba(187,158,133,0.22) 0%, transparent 70%);
      border-radius: 50%;
      top: 50%; left: 50%; transform: translate(-50%,-50%);
      pointer-events: none;
    }

    .hero-tooth-svg{width:340px;max-width:90%;position:relative;z-index:1;filter:drop-shadow(0 20px 40px rgba(71,44,29,.18));border-radius:24px;object-fit:contain;}

    .hero-content {
      padding: 3rem 2.5rem 3rem 5vw;
      position: relative; z-index: 1;
    }

    .badge {
      display: inline-block;
      background: var(--tan); color: var(--white);
      font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700;
      padding: 0.35rem 1rem; border-radius: 2px; margin-bottom: 1.5rem;
    }

    .hero-eyebrow {
      font-family: 'Noto Serif Condensed', serif;
      font-size: clamp(0.75rem, 1.2vw, 0.9rem);
      letter-spacing: 0.25em; text-transform: uppercase;
      color: var(--tan); margin-bottom: 0.5rem;
    }

    .hero-title {
      font-family: 'Noto Serif Condensed', serif;
      font-size: clamp(3.2rem, 7vw, 6rem);
      line-height: 0.92; font-weight: 900; text-transform: uppercase;
      color: var(--espresso); margin-bottom: 0.4rem;
      letter-spacing: -0.01em;
    }

    .hero-subtitle {
      font-family: 'Noto Serif', serif;
      font-style: italic; font-size: clamp(1rem, 1.8vw, 1.35rem);
      color: var(--tan); margin-bottom: 1.8rem; line-height: 1.5;
    }

    .hero-desc {
      font-size: 0.95rem; color: var(--espresso-light); line-height: 1.7;
      max-width: 420px; margin-bottom: 2rem;
    }

    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

    .btn-primary {background:linear-gradient(135deg,#2c1810,#6B4230);border-radius:999px;box-shadow:0 10px 30px rgba(0,0,0,.18);
      background: var(--espresso); color: var(--cream);
      padding: 0.85rem 2rem; font-size: 0.82rem; letter-spacing: 0.12em;
      text-transform: uppercase; font-weight: 700; border-radius: 2px;
      text-decoration: none; display: inline-block;
      transition: background 0.2s, transform 0.15s;
      border: 1.5px solid var(--espresso);
    }
    .btn-primary:hover { background: var(--espresso-light); border-color: var(--espresso-light); transform: translateY(-1px); }

    .btn-secondary {backdrop-filter:blur(10px);border-radius:999px;background:rgba(255,255,255,.4);
      background: transparent; color: var(--espresso);
      padding: 0.85rem 2rem; font-size: 0.82rem; letter-spacing: 0.12em;
      text-transform: uppercase; font-weight: 700; border-radius: 2px;
      text-decoration: none; display: inline-block;
      transition: background 0.2s, transform 0.15s;
      border: 1.5px solid var(--espresso);
    }
    .btn-secondary:hover { background: rgba(71,44,29,0.07); transform: translateY(-1px); }

    .hero-validity {
      margin-top: 1.5rem; font-size: 0.78rem; color: var(--warm-mid);
      letter-spacing: 0.05em; display: flex; align-items: center; gap: 0.5rem;
    }
    .hero-validity::before { content: ''; display: block; width: 20px; height: 1px; background: var(--warm-mid); }

    /* ── PROMO STRIP ── */
    .promo-strip {
      background: var(--espresso); color: var(--cream);
      padding: 0.8rem 2rem; overflow: hidden;
    }
    .promo-ticker {
      display: flex; gap: 4rem; white-space: nowrap;
      font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
      animation: ticker 20s linear infinite;
    }
    @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .ticker-sep { color: var(--tan); }

    /* ── SECTION COMMON ── */
    section { padding: 5rem 5vw; }

    .section-label {
      font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
      color: var(--tan); font-weight: 700; margin-bottom: 0.8rem;
    }
    .section-title {
      font-family: 'Noto Serif Condensed', serif;
      font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; text-transform: uppercase;
      color: var(--espresso); line-height: 1; margin-bottom: 1rem;
    }
    .section-sub {
      font-family: 'Noto Serif', serif; font-style: italic;
      font-size: 1rem; color: var(--tan); margin-bottom: 2.5rem;
    }
    .divider {
      width: 48px; height: 2px; background: var(--tan); margin-bottom: 2rem;
    }

    /* ── PROMOTIONS ── */
    .promos { background: var(--white); }

    .promos-header { text-align: center; max-width: 560px; margin: 0 auto 3rem; }

    .promo-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5px; background: var(--light-gray);
      border: 1.5px solid var(--light-gray);
      max-width: 1100px; margin: 0 auto;
    }

    .promo-card {
      background: var(--white); padding: 2.5rem 2rem;
      display: flex; flex-direction: column; gap: 0.6rem;
      transition: background 0.2s;
    }
    .promo-card:hover { background: #F8F6F2; }

    .promo-icon {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--cream); display: flex; align-items: center; justify-content: center;
      margin-bottom: 0.5rem;
    }
    .promo-icon svg { width: 20px; height: 20px; stroke: var(--espresso); fill: none; stroke-width: 1.5; }

    .promo-price {
      font-family: 'Noto Serif Condensed', serif;
      font-size: 2.2rem; font-weight: 900; color: var(--espresso); line-height: 1;
    }
    .promo-price small { font-size: 0.9rem; font-weight: 400; opacity: 0.6; }

    .promo-name {
      font-weight: 700; font-size: 0.82rem; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--espresso); line-height: 1.3;
    }
    .promo-desc { font-size: 0.85rem; color: var(--espresso-light); line-height: 1.6; }

    .tag-free {
      display: inline-block; background: var(--tan); color: var(--white);
      font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
      font-weight: 700; padding: 0.25rem 0.7rem; border-radius: 2px;
    }

    .tag-discount {
      display: inline-block; background: var(--espresso); color: var(--cream);
      font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
      font-weight: 700; padding: 0.25rem 0.7rem; border-radius: 2px;
    }

    /* ── BENEFITS ── */
    .benefits-wrap {
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
      max-width: 1100px; margin: 0 auto;
    }

    .benefit-list { display: flex; flex-direction: column; gap: 2rem; }

    .benefit-item { display: flex; gap: 1.2rem; align-items: flex-start; }

    .benefit-num {
      font-family: 'Noto Serif Condensed', serif;
      font-size: 0.72rem; font-weight: 900; color: var(--tan);
      letter-spacing: 0.1em; padding-top: 0.15rem; flex-shrink: 0; width: 28px;
    }
    .benefit-body h3 {
      font-weight: 700; font-size: 0.9rem; letter-spacing: 0.06em;
      text-transform: uppercase; color: var(--espresso); margin-bottom: 0.3rem;
    }
    .benefit-body p { font-size: 0.88rem; color: var(--espresso-light); line-height: 1.65; }

    .benefits-visual {
      position: relative; display: flex; align-items: center; justify-content: center;
      min-height: 400px;
    }

    .benefits-circle {
      width: 320px; height: 320px; border-radius: 50%;
      border: 1px solid rgba(187,158,133,0.3);
      display: flex; align-items: center; justify-content: center;
      position: relative;
    }
    .benefits-circle::before {
      content: ''; position: absolute; inset: 20px; border-radius: 50%;
      border: 1px solid rgba(187,158,133,0.15);
    }
    .benefits-quote {
      text-align: center; padding: 2rem;
    }
    .benefits-quote blockquote {
      font-family: 'Noto Serif', serif; font-style: italic;
      font-size: 1.1rem; color: var(--espresso); line-height: 1.6;
      margin-bottom: 1rem;
    }
    .benefits-quote cite { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--tan); }

    /* ── CTA SECTION ── */
    .cta-section {
      background: var(--espresso); color: var(--cream);
      text-align: center; padding: 5rem 5vw;
      position: relative; overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute; top: -60%; left: 50%; transform: translateX(-50%);
      width: 600px; height: 600px; border-radius: 50%;
      border: 1px solid rgba(187,158,133,0.12);
      pointer-events: none;
    }
    .cta-section::after {
      content: '';
      position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
      width: 350px; height: 350px; border-radius: 50%;
      border: 1px solid rgba(187,158,133,0.1);
      pointer-events: none;
    }

    .cta-label { color: var(--tan); font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; }
    .cta-title {
      font-family: 'Noto Serif Condensed', serif;
      font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; text-transform: uppercase;
      color: var(--cream); line-height: 0.95; margin-bottom: 0.8rem;
    }
    .cta-sub {
      font-family: 'Noto Serif', serif; font-style: italic;
      font-size: 1.1rem; color: var(--tan); margin-bottom: 2.5rem;
    }

    .cta-cards {
      display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap;
      margin-bottom: 3rem;
    }
    .cta-card {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(187,158,133,0.25);
      border-radius: 2px; padding: 1.2rem 1.6rem; min-width: 160px;
    }
    .cta-card-icon { font-size: 1.4rem; margin-bottom: 0.4rem; color: var(--tan); }
    .cta-card p { font-size: 0.78rem; color: rgba(239,237,231,0.7); line-height: 1.5; }
    .cta-card strong { display: block; font-size: 0.9rem; color: var(--cream); margin-bottom: 0.2rem; }

    .btn-cream {
      background: var(--cream); color: var(--espresso);
      padding: 1rem 2.8rem; font-size: 0.85rem; letter-spacing: 0.15em;
      text-transform: uppercase; font-weight: 700; border-radius: 2px;
      text-decoration: none; display: inline-block;
      transition: background 0.2s, transform 0.15s;
      border: 1.5px solid var(--cream);
    }
    .btn-cream:hover { background: var(--light-gray); border-color: var(--light-gray); transform: translateY(-1px); }

    .location-card {
      display: block;
      color: inherit;
      text-decoration: none;
      transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    }

    .location-card:hover {
      transform: translateY(-4px);
      background: rgba(255,255,255,0.08);
      border-color: var(--tan);
    }

    .maps-link {
      display: inline-block;
      margin-top: 0.75rem;
      color: var(--tan);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .cta-actions {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-map {
      background: transparent;
      color: var(--cream);
      padding: 1rem 2.8rem;
      font-size: 0.85rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      font-weight: 700;
      border-radius: 2px;
      text-decoration: none;
      display: inline-block;
      transition: background 0.2s, transform 0.15s, border-color 0.2s;
      border: 1.5px solid rgba(239,237,231,0.65);
    }

    .btn-map:hover {
      background: rgba(255,255,255,0.08);
      border-color: var(--tan);
      transform: translateY(-1px);
    }

    .map-container {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 3rem auto 0;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(187,158,133,0.28);
      box-shadow: 0 24px 55px rgba(0,0,0,0.22);
    }

    .map-container iframe {
      width: 100%;
      height: 340px;
      border: 0;
      display: block;
      filter: sepia(12%) saturate(85%);
    }


    .cta-tel {
      margin-top: 1.5rem; font-size: 0.8rem; color: rgba(239,237,231,0.5);
      letter-spacing: 0.05em;
    }
    .cta-tel a { color: var(--tan); text-decoration: none; }
    .cta-tel a:hover { color: var(--cream); }

    /* ── FOOTER ── */
    footer {
      background: var(--text-dark); color: rgba(239,237,231,0.6);
      padding: 2.5rem 5vw; display: grid;
      grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: center;
    }

    .footer-logo { display: flex; align-items: center; gap: 0.7rem; }
    .footer-logo svg { width: 28px; height: 28px; opacity: 0.7; }
    .footer-logo-text { font-family: 'Noto Serif Condensed', serif; font-size: 0.9rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream); opacity: 0.8; }

    .footer-center { text-align: center; font-size: 0.75rem; line-height: 1.7; }
    .footer-center a { color: var(--tan); text-decoration: none; }

    .footer-right { text-align: right; font-size: 0.75rem; line-height: 1.8; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 6rem; }
      .hero-tooth-wrap { order: -1; padding: 2rem 1rem 0; }
      .hero-tooth-svg { width: 200px; }
      .hero-content { padding: 1.5rem 2rem 3rem; text-align: center; }
      .hero-desc { margin: 0 auto 2rem; }
      .hero-actions { justify-content: center; }
      .hero-validity { justify-content: center; }
      .benefits-wrap { grid-template-columns: 1fr; }
      .benefits-visual { display: none; }
      footer { grid-template-columns: 1fr; text-align: center; }
      .footer-right { text-align: center; }
      nav { padding: 1rem 1.5rem; }
      .nav-links { gap: 1.2rem; }
    }

    @media (max-width: 600px) {
      section { padding: 3.5rem 1.5rem; }
      .hero-content { padding: 1.5rem 1.5rem 3rem; }
      .promo-grid { grid-template-columns: 1fr; }
      nav .nav-links { display: none; }
    }

    /* ── SCROLL REVEAL ── */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    /* ── SOCIAL ICONS ── */
    .social-links { display: flex; align-items: center; gap: 0.7rem; }
    .social-link {
      display: flex; align-items: center; justify-content: center;
      width: 32px; height: 32px; border-radius: 50%;
      border: 1.5px solid rgba(71,44,29,0.28);
      color: var(--espresso-light); transition: border-color 0.2s, background 0.2s, color 0.2s;
      text-decoration: none;
    }
    .social-link:hover { border-color: var(--tan); background: rgba(187,158,133,0.12); color: var(--espresso); }
    .social-link svg { width: 15px; height: 15px; fill: currentColor; }
    .footer-social { display: flex; gap: 0.75rem; margin-top: 0.7rem; }
    .footer-social-link {
      display: flex; align-items: center; justify-content: center;
      width: 34px; height: 34px; border-radius: 50%;
      border: 1.5px solid rgba(187,158,133,0.3);
      color: var(--tan); transition: border-color 0.2s, background 0.2s, color 0.2s;
      text-decoration: none;
    }
    .footer-social-link:hover { border-color: var(--tan); background: rgba(187,158,133,0.15); color: var(--cream); }
    .footer-social-link svg { width: 16px; height: 16px; fill: currentColor; }

    /* ── DOCTORA SECTION ── */
    .dra-section { background: var(--white); padding: 5rem 5vw; }
    .dra-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center;
      max-width: 1100px; margin: 0 auto;
    }
    .dra-photo-wrap {
      position: relative; display: flex; justify-content: center;
    }
    .dra-photo-frame {
      position: relative; width: 380px; max-width: 100%;
    }
    .dra-photo-frame::before {
      content: '';
      position: absolute; top: -16px; left: -16px;
      width: 100%; height: 100%;
      border: 1.5px solid var(--tan); border-radius: 2px;
      opacity: 0.45; pointer-events: none; z-index: 0;
    }
    .dra-photo-frame::after {
      content: '';
      position: absolute; bottom: -16px; right: -16px;
      width: 60%; height: 60%;
      background: var(--light-gray); border-radius: 2px;
      opacity: 0.5; z-index: 0;
    }
    .dra-photo {
      width: 100%; border-radius: 2px;
      display: block; position: relative; z-index: 1;
      filter: grayscale(8%) contrast(1.02);
      object-fit: cover; aspect-ratio: 3/4;
    }
    .dra-badge-cedula {
      position: absolute; bottom: 24px; left: -20px; z-index: 2;
      background: var(--espresso); color: var(--cream);
      padding: 0.7rem 1.1rem; border-radius: 2px;
      font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
      font-weight: 700; line-height: 1.5;
      box-shadow: 0 4px 18px rgba(71,44,29,0.25);
    }
    .dra-badge-cedula span { display: block; color: var(--tan); font-size: 0.62rem; margin-top: 0.15rem; }
    .dra-content { }
    .dra-name {
      font-family: 'Noto Serif Condensed', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 900; text-transform: uppercase;
      color: var(--espresso); line-height: 1; margin-bottom: 0.4rem;
    }
    .dra-title {
      font-family: 'Noto Serif', serif; font-style: italic;
      font-size: 0.95rem; color: var(--tan); margin-bottom: 1.5rem;
    }
    .dra-bio {
      font-size: 0.9rem; color: var(--espresso-lt); line-height: 1.8;
      margin-bottom: 1.8rem;
    }
    .dra-bio p { margin-bottom: 0.9rem; }
    .dra-bio p:last-child { margin-bottom: 0; }
    .dra-credentials { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; }
    .dra-credential {
      display: flex; gap: 1rem; align-items: flex-start;
      padding: 0.9rem 1rem;
      background: var(--cream); border-radius: 2px;
      border-left: 2.5px solid var(--tan);
    }
    .dra-credential-icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.05rem; }
    .dra-credential-text { font-size: 0.8rem; line-height: 1.5; }
    .dra-credential-text strong { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--espresso); margin-bottom: 0.15rem; }
    .dra-credential-text a { color: var(--tan); text-decoration: none; font-size: 0.72rem; letter-spacing: 0.05em; }
    .dra-credential-text a:hover { color: var(--espresso); }

    @media (max-width: 900px) {
      .dra-inner { grid-template-columns: 1fr; gap: 3rem; }
      .dra-photo-frame { width: 280px; }
      .dra-photo-wrap { margin-bottom: 1rem; }
      .dra-badge-cedula { left: auto; right: 10px; bottom: 16px; }
    }

    /* ── SERVICIOS TAB ── */
    .servicios-intro { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
    .servicios-intro p { font-size: 0.95rem; color: var(--espresso-lt); line-height: 1.8; }
    .servicios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
    .servicio-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: 2px; padding: 2rem 1.8rem; display: flex; flex-direction: column; gap: 0.8rem; transition: border-color 0.2s, box-shadow 0.2s; }
    .servicio-card:hover { border-color: var(--tan); box-shadow: 0 4px 20px rgba(71,44,29,0.08); }
    .servicio-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; margin-bottom: 0.2rem; }
    .servicio-icon svg { width: 22px; height: 22px; stroke: var(--espresso); fill: none; stroke-width: 1.5; stroke-linecap: round; }
    .servicio-name { font-family: 'Noto Serif Condensed', serif; font-size: 1.1rem; font-weight: 900; text-transform: uppercase; color: var(--espresso); line-height: 1.1; }
    .servicio-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.35rem; margin-top: 0.3rem; }
    .servicio-list li { font-size: 0.84rem; color: var(--espresso-lt); display: flex; align-items: center; gap: 0.5rem; line-height: 1.5; }
    .servicio-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--tan); flex-shrink: 0; }
    .servicios-frase { background: var(--espresso); color: var(--cream); border-radius: 2px; padding: 2rem 2.5rem; text-align: center; max-width: 780px; margin: 0 auto; }
    .servicios-frase p { font-family: 'Noto Serif', serif; font-style: italic; font-size: 1.05rem; line-height: 1.75; color: rgba(239,237,231,0.92); }
    .servicios-frase cite { display: block; margin-top: 0.8rem; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--tan); font-style: normal; }

    /* ── MISIÓN / VISIÓN ── */
    .mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
    .mv-card { background: var(--cream); border-left: 3px solid var(--tan); padding: 1.6rem 1.8rem; border-radius: 2px; }
    .mv-card-label { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--tan); font-weight: 700; margin-bottom: 0.5rem; }
    .mv-card-title { font-family: 'Noto Serif Condensed', serif; font-size: 1.4rem; font-weight: 900; text-transform: uppercase; color: var(--espresso); margin-bottom: 0.8rem; }
    .mv-card p { font-size: 0.86rem; color: var(--espresso-lt); line-height: 1.75; }
    @media (max-width: 700px) { .mv-grid { grid-template-columns: 1fr; } }

    /* ── TAB NAV (shared) ── */
    .tab-nav { display: flex; gap: 0; border-bottom: 2px solid var(--light-gray); margin-bottom: 3rem; overflow-x: auto; }
    .tab-btn { font-family: 'Lato', sans-serif; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.8rem 1.6rem; background: none; border: none; cursor: pointer; color: var(--warm-mid); border-bottom: 2.5px solid transparent; margin-bottom: -2px; transition: color 0.2s, border-color 0.2s; white-space: nowrap; }
    .tab-btn:hover { color: var(--espresso-lt); }
    .tab-btn.active { color: var(--espresso); border-bottom-color: var(--tan); }
    .tab-panel { display: none; }
    .tab-panel.active { display: block; }
