*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --anthracite: #3D3341;
    --anthracite-dark: #2A2230;
    --anthracite-deeper: #1C1620;
    --rose: #D4567A;
    --rose-hover: #B8445F;
    --rose-glow: rgba(212,86,122,.10);
    --gold: #9CA3AF;
    --gold-glow: rgba(156,163,175,.10);
    --bg-light: #FAFAFA;
    --bg-white: #F5F5F5;
    --border: #E5E5E5;
    --text: #1C1620;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    --whatsapp: #25D366;
    --radius: 14px;
    --radius-lg: 20px;
    /* Accent sections (nav, wa-feature, info-bar, footer) */
    --nav-bg: rgba(255,255,255,.92);
    --nav-bg-scrolled: rgba(255,255,255,.97);
    --nav-text: var(--text);
    --nav-text-muted: var(--text-muted);
    --nav-border: rgba(0,0,0,.06);
    --accent-bg: #F5EDF1;
    --accent-bg-gradient: linear-gradient(135deg, #F5EDF1 0%, #EDE3E8 100%);
    --accent-text: var(--text);
    --accent-text-muted: var(--text-muted);
    --accent-pill-bg: rgba(61,51,65,.06);
    --accent-pill-border: rgba(61,51,65,.1);
    --footer-bg: #F0E8EC;
    --footer-text: var(--text-muted);
    --footer-text-muted: var(--text-light);
  }
  /* ── Dark Theme ── */
  [data-theme="dark"] {
    --bg-light: #0f1117;
    --bg-white: #1a1d27;
    --border: #2d3344;
    --text: #e5e7eb;
    --text-muted: #9ca3af;
    --text-light: #6b7280;
    --anthracite: #e5e7eb;
    --anthracite-dark: #0a0d10;
    --anthracite-deeper: #080b0e;
    --rose: #E88DA6;
    --rose-hover: #D4567A;
    --rose-glow: rgba(232,141,166,.12);
    --gold: #9CA3AF;
    --gold-glow: rgba(212,184,122,.1);
    --nav-bg: rgba(15,17,23,.97);
    --nav-bg-scrolled: rgba(15,17,23,.99);
    --nav-text: #fff;
    --nav-text-muted: rgba(255,255,255,.7);
    --nav-border: rgba(255,255,255,.08);
    --accent-bg: var(--anthracite-dark);
    --accent-bg-gradient: linear-gradient(135deg, var(--anthracite-dark) 0%, var(--anthracite-deeper) 100%);
    --accent-text: #fff;
    --accent-text-muted: rgba(255,255,255,.65);
    --accent-pill-bg: rgba(255,255,255,.07);
    --accent-pill-border: rgba(255,255,255,.1);
    --footer-bg: var(--anthracite-dark);
    --footer-text: rgba(255,255,255,.4);
    --footer-text-muted: rgba(255,255,255,.35);
  }
  [data-theme="dark"] img { opacity: .95; }
  [data-theme="dark"] .service-card { background: var(--bg-white); border-color: var(--border); }
  [data-theme="dark"] .stats-section { background: #141720; }
  [data-theme="dark"] .hero-bg { opacity: .45; }
  [data-theme="dark"] .hero-overlay { background: linear-gradient(135deg, rgba(10,13,16,.80) 0%, rgba(15,17,23,.70) 100%); }
  [data-theme="dark"] .section-title,
  [data-theme="dark"] .service-card h3,
  [data-theme="dark"] .trust-text h4,
  [data-theme="dark"] .painpoint-card h3 { color: #f0edf2; }

  /* ── Theme Toggle ── */
  .theme-toggle {
    background: none; border: none; cursor: pointer;
    color: var(--nav-text-muted); font-size: 18px; padding: 6px;
    line-height: 1; transition: color .2s;
  }
  .theme-toggle:hover { color: var(--nav-text); }

  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', system-ui, -apple-system, sans-serif; background: var(--bg-light); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; transition: background .3s, color .3s; }
  img { display: block; max-width: 100%; }

  /* ================================================================
     NAVIGATION
     ================================================================ */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 900;
    background: var(--nav-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--nav-border);
    transition: background .3s, box-shadow .3s;
  }
  .nav.scrolled {
    background: var(--nav-bg-scrolled);
    box-shadow: 0 2px 32px rgba(0,0,0,.08);
  }
  .nav-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 24px; height: 64px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 300; color: var(--nav-text);
    letter-spacing: 0.06em; font-style: italic;
  }
  .nav-brand span { color: var(--gold); font-style: italic; font-weight: 400; }
  .nav-links { display: flex; align-items: center; gap: 32px; }
  .nav-links a {
    color: var(--nav-text-muted); text-decoration: none;
    font-size: 14px; font-weight: 500;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--nav-text); }
  .nav-wa-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--whatsapp); color: #fff;
    padding: 9px 20px; border-radius: 50px;
    font-size: 14px; font-weight: 600;
    text-decoration: none; border: none; cursor: pointer;
    transition: background .2s, transform .2s;
  }
  .nav-wa-btn:hover { background: #20bd5a; transform: translateY(-1px); }
  .nav-wa-btn svg { width: 18px; height: 18px; fill: #fff; }

  /* ================================================================
     HERO — FULL VIEWPORT
     ================================================================ */
  .hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
  }
  .hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center center;
  }
  @media (max-width: 768px) {
    .hero { min-height: 80vh; }
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(28,22,32,.78) 0%, rgba(61,51,65,.65) 50%, rgba(28,22,32,.88) 100%);
  }
  .hero-content {
    position: relative; z-index: 2;
    text-align: center; padding: 120px 24px 80px;
    max-width: 760px;
  }
  .hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 5.5vw, 64px);
    font-weight: 400; color: #fff;
    line-height: 1.1; margin-bottom: 20px;
    letter-spacing: 0.01em;
  }
  .hero-content h1 em {
    font-style: italic; color: var(--rose);
  }
  .hero-content p {
    font-size: clamp(17px, 2vw, 20px);
    color: rgba(255,255,255,.8);
    max-width: 540px; margin: 0 auto 36px;
    line-height: 1.6;
  }
  .hero-cta-row {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    flex-wrap: wrap; margin-bottom: 48px;
  }
  .hero-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--rose); color: #fff;
    padding: 16px 40px; border-radius: 50px;
    font-size: 16px; font-weight: 500; letter-spacing: .04em;
    border: none; cursor: pointer;
    transition: background .3s, transform .3s, box-shadow .3s;
    box-shadow: 0 4px 28px rgba(212,86,122,.3);
  }
  .hero-btn:hover {
    background: var(--rose-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(212,86,122,.4);
  }
  .hero-btn svg { width: 22px; height: 22px; fill: #fff; }
  .hero-btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: #fff;
    padding: 16px 32px; border-radius: 50px;
    font-size: 16px; font-weight: 500;
    border: 1px solid rgba(255,255,255,.3);
    cursor: pointer; text-decoration: none;
    transition: background .2s, border-color .2s;
  }
  .hero-btn-secondary:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.5);
  }
  .hero-badges {
    display: flex; align-items: center; justify-content: center;
    gap: 32px; flex-wrap: wrap;
  }
  .hero-badge {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,.7); font-size: 14px; font-weight: 500;
  }
  .hero-badge-icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(156,163,175,.12);
    border: 1px solid rgba(156,163,175,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
  }

  /* ================================================================
     SECTION SHARED
     ================================================================ */
  .section { padding: 100px 24px; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px; font-weight: 500; letter-spacing: .14em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 14px; font-style: italic;
    display: flex; align-items: center; gap: 12px;
  }
  .section-label::before {
    content: ''; display: inline-block;
    width: 32px; height: 1px; background: var(--gold);
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 300; color: var(--anthracite-dark);
    line-height: 1.15; margin-bottom: 16px;
    letter-spacing: 0.02em;
  }
  .section-subtitle {
    font-size: 17px; color: var(--text-muted);
    max-width: 560px; line-height: 1.7;
  }

  /* fade-in on scroll */
  .fade-in {
    opacity: 0; transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

  /* ================================================================
     SERVICES
     ================================================================ */
  .services-section { background: var(--bg-white); }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px; margin-top: 56px;
  }
  .service-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(212,86,122,.08), 0 4px 16px rgba(0,0,0,.06);
    border-color: rgba(212,86,122,.2);
  }
  .service-card img {
    width: 100%; height: 240px;
    object-fit: cover;
  }
  .service-card-body { padding: 28px 28px 32px; }
  .service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 500;
    color: var(--anthracite-dark); margin-bottom: 10px;
    letter-spacing: 0.01em;
  }
  .service-card p {
    font-size: 15px; color: var(--text-muted);
    line-height: 1.7;
  }

  /* default cards (when {{services_html}} is empty) */
/* ================================================================
     ABOUT / TRUST
     ================================================================ */
  .about-section { background: var(--bg-light); }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center; margin-top: 56px;
  }
  .about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(212,86,122,.08), 0 4px 20px rgba(0,0,0,.08);
  }
  .about-image img {
    width: 100%; height: 440px;
    object-fit: cover;
  }
  .trust-list { display: flex; flex-direction: column; gap: 28px; }
  .trust-item { display: flex; gap: 18px; align-items: flex-start; }
  .trust-icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--gold-glow);
    border: 1px solid rgba(156,163,175,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; flex-shrink: 0;
  }
  .trust-text h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px; font-weight: 500;
    color: var(--anthracite-dark); margin-bottom: 4px;
  }
  .trust-text p {
    font-size: 15px; color: var(--text-muted); line-height: 1.6;
  }

  /* ================================================================
     WHATSAPP FEATURE SECTION
     ================================================================ */
  .wa-feature-section {
    background: var(--accent-bg);
    background-image: var(--accent-bg-gradient);
    color: var(--accent-text); position: relative; overflow: hidden;
  }
  .wa-feature-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
  }
  .wa-feature-content {}
  .wa-feature-content .section-label { color: var(--whatsapp); }
  .wa-feature-content .section-label::before { background: var(--whatsapp); }
  .wa-feature-content .section-title { color: var(--accent-text); }
  .wa-feature-content .section-subtitle { color: var(--accent-text-muted); }
  .wa-feature-pills {
    display: flex; flex-direction: column; gap: 16px; margin-top: 36px;
  }
  .wa-pill {
    display: flex; align-items: center; gap: 14px;
    background: var(--accent-pill-bg);
    border: 1px solid var(--accent-pill-border);
    border-radius: var(--radius);
    padding: 18px 22px;
    transition: background .2s;
  }
  .wa-pill:hover { opacity: .85; }
  .wa-pill-icon {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(37,211,102,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
  }
  .wa-pill-text {
    font-size: 15px; font-weight: 500; color: var(--accent-text);
  }
  .wa-feature-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(0,0,0,.3);
  }
  .wa-feature-image img {
    width: 100%; height: 480px;
    object-fit: cover;
  }

  /* ================================================================
     INSTAGRAM SHOWCASE
     ================================================================ */
  .insta-section { background: var(--bg-white); }
  .insta-scroll {
    display: flex; gap: 16px; overflow-x: auto;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    padding: 40px 0 8px; margin-top: 16px;
    scrollbar-width: none;
  }
  .insta-scroll::-webkit-scrollbar { display: none; }
  .insta-card {
    flex: 0 0 280px; scroll-snap-align: start;
    border-radius: var(--radius-lg); overflow: hidden;
    position: relative; aspect-ratio: 4/5;
    transition: transform .4s, box-shadow .4s;
  }
  .insta-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 16px 48px rgba(212,86,122,.1), 0 4px 12px rgba(0,0,0,.08);
  }
  .insta-card img { width: 100%; height: 100%; object-fit: cover; }
  .insta-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.35) 100%);
    opacity: 0; transition: opacity .3s;
  }
  .insta-card:hover::after { opacity: 1; }
  .insta-injected:empty { display: none; }
  .insta-injected:empty + .insta-default { display: flex; }
  .insta-default { display: none; }
  .insta-handle {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 24px; font-size: 15px; font-weight: 600;
    color: var(--rose); text-decoration: none;
    transition: color .2s;
  }
  .insta-handle:hover { color: var(--rose-hover); }
  .insta-handle svg { width: 20px; height: 20px; fill: currentColor; }
  @media (max-width: 640px) {
    .insta-card { flex: 0 0 240px; }
  }

  /* ── Admin Image Swap ── */
  .img-swap-wrap { position: relative; }
  .img-swap-overlay {
    display: none; position: absolute; inset: 0;
    background: rgba(0,0,0,.45); cursor: pointer;
    align-items: center; justify-content: center;
    border-radius: inherit; transition: opacity .2s;
  }
  .img-swap-wrap:hover .img-swap-overlay { display: flex; }
  .img-swap-label {
    background: rgba(0,0,0,.7); color: #fff; padding: 8px 16px;
    border-radius: 8px; font-size: 13px; font-weight: 600; pointer-events: none;
  }
  .img-swap-wrap input[type="file"] { display: none; }

  /* ================================================================
     EDIT DATA PANEL
     ================================================================ */
  .admin-only { display: none; }
  .edit-data-section {
    background: var(--bg-light); border-top: 1px solid var(--border);
    padding: 64px 24px;
  }
  .edit-data-inner {
    max-width: 640px; margin: 0 auto;
  }
  .edit-data-inner .section-label { margin-bottom: 8px; }
  .edit-data-inner .section-title { font-size: 24px; margin-bottom: 8px; }
  .edit-data-desc {
    font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 28px;
  }
  .edit-field { margin-bottom: 20px; }
  .edit-label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--text-muted); text-transform: uppercase;
    letter-spacing: .08em; margin-bottom: 6px;
  }
  .edit-input {
    width: 100%; padding: 12px 16px; font-size: 15px;
    border: 1px solid var(--border); border-radius: var(--radius);
    background: var(--bg-white); color: var(--text);
    font-family: inherit; transition: border-color .2s;
  }
  .edit-input:focus { outline: none; border-color: var(--rose); }
  .edit-textarea { min-height: 80px; resize: vertical; }
  .edit-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .edit-submit {
    display: inline-block; padding: 14px 36px;
    background: var(--rose); color: #fff;
    font-size: 15px; font-weight: 700; border: none;
    border-radius: var(--radius); cursor: pointer;
    transition: background .2s; margin-top: 8px;
  }
  .edit-submit:hover { background: var(--rose-hover); }
  .edit-success {
    display: none; padding: 12px 20px; margin-top: 16px;
    background: #e8f5e9; color: #2e7d32; border-radius: var(--radius);
    font-size: 14px; font-weight: 500;
  }
  @media (max-width: 640px) {
    .edit-row { grid-template-columns: 1fr; }
    .edit-data-section { padding: 48px 20px; }
  }

  /* ── QR Code Section ── */
  .qr-section {
    background: var(--bg-light); border-top: 1px solid var(--border);
    padding: 64px 24px; text-align: center;
  }
  .qr-section .section-label { margin-bottom: 8px; }
  .qr-section .section-title { font-size: 24px; margin-bottom: 8px; }
  .qr-section .qr-desc {
    font-size: 15px; color: var(--text-muted); line-height: 1.6;
    margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto;
  }
  .qr-card {
    display: inline-block; background: var(--bg-white);
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 32px; text-align: center;
  }
  .qr-card canvas { border-radius: var(--radius); }
  .qr-business-name {
    font-size: 17px; font-weight: 600; color: var(--text); margin-top: 16px;
  }
  .qr-phone {
    font-size: 14px; color: var(--text-muted); margin-top: 4px;
  }
  .qr-download {
    display: inline-block; padding: 12px 28px; margin-top: 20px;
    background: var(--rose); color: #fff;
    font-size: 14px; font-weight: 600; border: none;
    border-radius: var(--radius); cursor: pointer;
    transition: background .2s; font-family: inherit;
  }
  .qr-download:hover { background: var(--rose-hover); }
  @media (max-width: 640px) { .qr-section { padding: 48px 20px; } .qr-card { padding: 24px; } }

  /* ================================================================
     INFO BAR
     ================================================================ */
  .info-bar {
    background: var(--accent-bg);
    padding: 40px 24px;
  }
  .info-bar-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .info-item {
    text-align: center;
  }
  .info-item-icon {
    font-size: 24px; margin-bottom: 8px;
  }
  .info-item-label {
    font-size: 12px; font-weight: 500; letter-spacing: .1em;
    text-transform: uppercase; color: var(--accent-text-muted);
    margin-bottom: 6px;
  }
  .info-item-value {
    font-size: 17px; font-weight: 600; color: var(--accent-text);
  }

  /* ================================================================
     FOOTER
     ================================================================ */
  .site-footer {
    background: var(--footer-bg);
    border-top: 1px solid var(--border);
    padding: 40px 24px;
    text-align: center;
  }
  .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; font-weight: 300; color: var(--gold);
    margin-bottom: 8px; font-style: italic;
    letter-spacing: .06em;
  }
  .footer-powered {
    font-size: 13px; color: var(--footer-text);
    margin-bottom: 12px;
  }
  .footer-powered a {
    color: var(--footer-text); text-decoration: none;
  }
  .footer-powered a:hover { opacity: .7; }
  .footer-links {
    display: flex; justify-content: center; gap: 24px;
  }
  .footer-links a {
    font-size: 13px; color: var(--footer-text-muted);
    text-decoration: none; transition: color .2s;
  }
  .footer-links a:hover { opacity: .7; }

  /* ================================================================
     PANEL DEL SALON
     ================================================================ */
  .demo-divider {
    max-width: 1100px; margin: 80px auto 40px; padding: 0 24px;
    display: flex; align-items: center; gap: 16px;
    color: var(--text-light); font-size: 12px;
    text-transform: uppercase; letter-spacing: .12em; font-weight: 500;
  }
  .demo-divider::before, .demo-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

  .panel-section { max-width: 1100px; margin: 0 auto 80px; padding: 0 24px; }
  .panel-header {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 24px; padding-bottom: 16px;
    border-bottom: 2px solid var(--anthracite);
  }
  .panel-header h2 { font-size: 22px; font-weight: 600; color: var(--text); }
  .panel-header .panel-badge {
    background: var(--anthracite); color: #fff;
    font-size: 12px; font-weight: 600;
    padding: 3px 12px; border-radius: 12px;
  }
  .panel-empty {
    text-align: center; padding: 56px 24px;
    color: var(--text-muted); font-size: 15px;
    background: var(--bg-white);
    border: 1px dashed var(--border); border-radius: var(--radius-lg);
  }
  .panel-list { display: flex; flex-direction: column; gap: 12px; }
  .panel-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex; align-items: flex-start; gap: 16px;
    transition: box-shadow .2s;
  }
  .panel-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.06); }
  .panel-card .urgency-dot {
    width: 12px; height: 12px; border-radius: 50%;
    flex-shrink: 0; margin-top: 5px;
  }
  .urgency-normal { background: #f1c40f; }
  .urgency-urgente { background: #e74c3c; animation: pulse-red 1.5s infinite; }
  @keyframes pulse-red {
    0%,100% { box-shadow: 0 0 0 0 rgba(231,76,60,.4); }
    50%     { box-shadow: 0 0 0 6px rgba(231,76,60,0); }
  }
  .panel-card-body { flex: 1; min-width: 0; }
  .panel-card-top { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; flex-wrap: wrap; }
  .panel-card-name { font-weight: 600; font-size: 15px; color: var(--text); }
  .panel-card-status {
    font-size: 11px; font-weight: 600;
    padding: 2px 10px; border-radius: 10px;
    text-transform: uppercase; letter-spacing: .04em;
  }
  .status-nueva { background: #e8f5e9; color: #2e7d32; }
  .status-en-proceso { background: #fff3e0; color: #e65100; }
  .status-resuelta { background: #e0e0e0; color: #616161; }
  .panel-card-urgency {
    font-size: 11px; font-weight: 600;
    padding: 2px 10px; border-radius: 10px;
    text-transform: uppercase; letter-spacing: .04em;
  }
  .badge-normal  { background: #fff9c4; color: #f57f17; }
  .badge-urgente { background: #ffebee; color: #c62828; }
  .panel-card-summary { font-size: 14px; color: var(--text-muted); line-height: 1.5; margin-bottom: 8px; }
  .panel-card-time { font-size: 12px; color: var(--text-light); }
  .panel-card-actions { display: flex; flex-direction: column; gap: 6px; flex-shrink: 0; align-self: center; }
  .panel-btn {
    padding: 8px 18px; border-radius: 8px; border: none;
    font-size: 13px; font-weight: 600; cursor: pointer;
    white-space: nowrap; transition: background .2s, transform .15s;
  }
  .panel-btn:hover { transform: translateY(-1px); }
  .panel-btn-call { background: var(--anthracite); color: #fff; }
  .panel-btn-call:hover { background: var(--anthracite-dark); }
  .panel-btn-resolve { background: #f0f0f0; color: #333; }
  .panel-btn-resolve:hover { background: #e0e0e0; }

  /* ================================================================
     WHATSAPP WIDGET
     ================================================================ */
  .wa-bubble {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 60px; height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(37,211,102,.4);
    z-index: 1000;
    transition: transform .2s, box-shadow .2s;
  }
  .wa-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 32px rgba(37,211,102,.5);
  }
  .wa-bubble svg { width: 32px; height: 32px; }
  .wa-badge {
    position: absolute; top: -4px; right: -4px;
    background: #e74c3c; color: #fff;
    width: 20px; height: 20px; border-radius: 50%;
    font-size: 11px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #fff;
  }

  /* -- Chat Window ------------------------------------------------- */
  .wa-window {
    position: fixed;
    bottom: 96px; right: 24px;
    width: 370px; height: 560px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0,0,0,.25);
    display: none; flex-direction: column;
    z-index: 1000;
    font-family: -apple-system, 'Segoe UI', system-ui, sans-serif;
  }
  .wa-window.open { display: flex; }

  .wa-header {
    background: #075E54;
    padding: 12px 14px;
    display: flex; align-items: center; gap: 10px;
    color: #fff;
  }
  .wa-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: #128C7E;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
  }
  .wa-header-info { flex: 1; }
  .wa-header-name { font-size: 15px; font-weight: 600; }
  .wa-header-sub  { font-size: 12px; opacity: .8; }
  .wa-close {
    background: none; border: none; color: #fff;
    font-size: 20px; cursor: pointer; opacity: .7; padding: 4px;
  }
  .wa-close:hover { opacity: 1; }

  .wa-body {
    flex: 1;
    background: #E8EBF0;
    overflow-y: auto;
    padding: 12px;
    display: flex; flex-direction: column; gap: 6px;
  }

  .wa-msg {
    max-width: 80%;
    padding: 8px 10px 6px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.45;
    position: relative;
    word-break: break-word;
  }
  .wa-msg-time { font-size: 10px; opacity: .6; text-align: right; margin-top: 2px; }
  .wa-msg.bot {
    background: #fff; color: #303030; align-self: flex-start;
    border-radius: 0 8px 8px 8px;
  }
  .wa-msg.user {
    background: #DCF8C6; color: #303030; align-self: flex-end;
    border-radius: 8px 8px 0 8px;
  }
  .wa-msg.user .wa-msg-time::after { content: ' \2713\2713'; color: #4FC3F7; }

  .wa-typing {
    display: none; align-self: flex-start;
    background: #fff; border-radius: 0 8px 8px 8px;
    padding: 10px 14px;
  }
  .wa-typing span {
    display: inline-block; width: 7px; height: 7px;
    background: #999; border-radius: 50%;
    animation: bounce .9s infinite; margin: 0 1px;
  }
  .wa-typing span:nth-child(2) { animation-delay: .15s; }
  .wa-typing span:nth-child(3) { animation-delay: .3s; }
  @keyframes bounce {
    0%,60%,100% { transform: translateY(0); }
    30%          { transform: translateY(-6px); }
  }

  .wa-footer {
    background: #F0F0F0;
    padding: 8px 10px;
    display: flex; align-items: center; gap: 8px;
    border-top: 1px solid #ddd;
  }
  .wa-input {
    flex: 1; background: #fff; border: none; outline: none;
    border-radius: 20px; padding: 9px 14px;
    font-size: 14px; font-family: inherit;
  }
  .wa-send {
    width: 40px; height: 40px;
    background: var(--whatsapp);
    border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; flex-shrink: 0;
  }
  .wa-send svg { width: 20px; height: 20px; fill: #fff; }
  .wa-send:disabled { background: #ccc; cursor: default; }

  .wa-intro {
    background: rgba(42,127,191,0.08); border-radius: 8px;
    padding: 10px 12px; font-size: 12px;
    color: #444; text-align: center;
    margin-bottom: 4px; line-height: 1.5;
  }
  .wa-limit {
    background: #ffebee; border-radius: 8px;
    padding: 10px 12px; font-size: 12px;
    color: #c62828; text-align: center;
    margin-top: 4px; line-height: 1.5;
  }

  /* ================================================================
     GALLERY / RESULTS
     ================================================================ */
  .gallery-section { background: var(--bg-light); }
  .gallery-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px; margin-top: 56px;
  }
  .gallery-item {
    border-radius: var(--radius-lg); overflow: hidden;
    aspect-ratio: 4/5; position: relative;
    transition: transform .4s, box-shadow .4s;
  }
  .gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(212,86,122,.1), 0 4px 12px rgba(0,0,0,.08);
  }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; }
  .gallery-item-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.7));
    padding: 24px 16px 16px; color: #fff;
    font-size: 14px; font-weight: 500;
  }

  /* ================================================================
     PAIN POINTS / EMOTIONAL HOOK
     ================================================================ */
  .painpoints-section { background: var(--bg-white); }
  .painpoints-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px; margin-top: 56px;
  }
  .painpoint-card {
    text-align: center; padding: 40px 28px;
    background: var(--bg-light); border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform .3s, box-shadow .3s;
  }
  .painpoint-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,.06);
  }
  .painpoint-icon { font-size: 36px; margin-bottom: 20px; }
  .painpoint-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 500;
    color: var(--anthracite-dark); margin-bottom: 10px;
  }
  .painpoint-card p {
    font-size: 15px; color: var(--text-muted); line-height: 1.7;
  }
  .painpoint-arrow {
    font-size: 14px; font-weight: 600; color: var(--rose);
    margin-top: 16px; display: inline-block;
  }

  /* ================================================================
     REVIEWS / SOCIAL PROOF
     ================================================================ */
  .reviews-section { background: var(--bg-light); }
  .reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px; margin-top: 56px;
  }
  .review-card {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 32px;
    transition: transform .3s, box-shadow .3s;
  }
  .review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,.06);
  }
  .review-stars { color: #FBBF24; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
  .review-text {
    font-size: 15px; color: var(--text-muted); line-height: 1.7;
    font-style: italic; margin-bottom: 20px;
  }
  .review-author { display: flex; align-items: center; gap: 12px; }
  .review-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--rose-glow); border: 1px solid rgba(212,86,122,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 600; color: var(--rose);
  }
  .review-author-info {}
  .review-author-name { font-size: 14px; font-weight: 600; color: var(--text); }
  .review-author-source { font-size: 12px; color: var(--text-light); }

  /* ================================================================
     TEAM
     ================================================================ */
  .team-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px; margin-top: 56px;
  }
  .team-card {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    text-align: center; transition: box-shadow .3s;
  }
  .team-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); }
  .team-card img {
    width: 100%; height: 280px;
    object-fit: cover; object-position: center top;
  }
  .team-card-body { padding: 20px 16px; }
  .team-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 600; color: var(--forest-deeper);
    margin-bottom: 4px;
  }
  [data-theme="dark"] .team-card-name { color: var(--text); }
  .team-card-role {
    font-size: 13px; color: var(--sage); font-weight: 600;
    text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px;
  }
  .team-card-bio {
    font-size: 14px; color: var(--text-muted); line-height: 1.5;
  }
  @media (max-width: 600px) {
    .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .team-card img { height: 200px; }
  }

  /* ================================================================
     FAQ
     ================================================================ */
  .faq-section { background: var(--bg-white); }
  .faq-list {
    max-width: 760px; margin: 56px auto 0;
    display: flex; flex-direction: column; gap: 12px;
  }
  .faq-item {
    background: var(--bg-light); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: border-color .2s;
  }
  .faq-item.open { border-color: var(--rose); }
  .faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; cursor: pointer;
    font-size: 16px; font-weight: 600; color: var(--text);
    background: none; border: none; width: 100%; text-align: left;
    font-family: inherit; transition: color .2s;
  }
  .faq-question:hover { color: var(--rose); }
  .faq-icon {
    font-size: 20px; color: var(--text-light);
    transition: transform .3s;
    flex-shrink: 0; margin-left: 16px;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); color: var(--rose); }
  .faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
  }
  .faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 15px; color: var(--text-muted); line-height: 1.7;
  }

  /* ================================================================
     LOCATION / MAP
     ================================================================ */
  .location-section { background: var(--bg-light); }
  .location-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: center; margin-top: 56px;
  }
  .location-map {
    border-radius: var(--radius-lg); overflow: hidden;
    aspect-ratio: 4/3; background: var(--bg-white);
    border: 1px solid var(--border);
  }
  .location-map iframe { width: 100%; height: 100%; border: 0; }
  .location-details { display: flex; flex-direction: column; gap: 24px; }
  .location-detail {
    display: flex; gap: 16px; align-items: flex-start;
  }
  .location-detail-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--rose-glow);
    border: 1px solid rgba(212,86,122,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
  }
  .location-detail h4 {
    font-size: 15px; font-weight: 600; color: var(--text);
    margin-bottom: 4px;
  }
  .location-detail p {
    font-size: 15px; color: var(--text-muted); line-height: 1.6;
  }

  /* ================================================================
     RESPONSIVE
     ================================================================ */
  @media (max-width: 900px) {
    .services-grid,
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image img { height: 300px; }
    .wa-feature-grid { grid-template-columns: 1fr; gap: 40px; }
    .wa-feature-image { order: -1; }
    .wa-feature-image img { height: 300px; }
    .info-bar-inner { grid-template-columns: 1fr; gap: 24px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .painpoints-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .location-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 640px) {
    .services-grid,
    .nav-links a:not(.nav-wa-btn) { display: none; }
    .hero-content h1 { font-size: 32px; }
    .hero-badges { gap: 16px; }
    .hero-badge { font-size: 13px; }
    .section { padding: 64px 20px; }
    .wa-window { width: calc(100vw - 16px); right: 8px; bottom: 80px; }
    .panel-card { flex-direction: column; }
    .panel-card-actions { flex-direction: row; align-self: flex-start; }
    .gallery-grid { grid-template-columns: 1fr; }
  }

  /* ── Foto Upload Section ── */
  .foto-section {
    background: var(--bg-light); border-top: 1px solid var(--border);
    padding: 64px 24px;
  }
  .foto-inner { max-width: 640px; margin: 0 auto; }
  .foto-inner .section-label { margin-bottom: 8px; }
  .foto-inner .section-title { font-size: 24px; margin-bottom: 8px; }
  .foto-drop {
    border: 2px dashed var(--border); border-radius: var(--radius-lg);
    padding: 48px 24px; text-align: center; cursor: pointer;
    transition: border-color .2s, background .2s; margin-bottom: 20px;
    background: var(--bg-white);
  }
  .foto-drop:hover, .foto-drop.drag-over {
    border-color: var(--rose); background: var(--rose-glow);
  }
  .foto-drop-icon { font-size: 40px; margin-bottom: 12px; line-height: 1; }
  .foto-drop-text { font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
  .foto-drop-sub { font-size: 14px; color: var(--text-muted); }
  .foto-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px;
  }
  .foto-thumb {
    position: relative; aspect-ratio: 1; border-radius: var(--radius);
    overflow: hidden; background: var(--bg-white); border: 1px solid var(--border);
  }
  .foto-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .foto-thumb-del {
    position: absolute; top: 6px; right: 6px;
    background: rgba(0,0,0,.6); color: #fff; border: none; cursor: pointer;
    border-radius: 50%; width: 24px; height: 24px; font-size: 13px;
    display: flex; align-items: center; justify-content: center;
    font-family: inherit; transition: background .2s;
  }
  .foto-thumb-del:hover { background: #EF4444; }
  .foto-msg {
    font-size: 14px; padding: 12px 16px; border-radius: var(--radius);
    margin-top: 12px; display: none;
  }
  .foto-msg.ok { background: #e8f5e9; color: #2e7d32; }
  .foto-msg.err { background: #fdecea; color: #c62828; }
  @media (max-width: 640px) {
    .foto-section { padding: 48px 20px; }
    .foto-grid { grid-template-columns: repeat(2, 1fr); }
  }

  /* ── Tour ── */
  .tour-overlay {
    display: none; position: fixed; inset: 0; z-index: 9000;
    pointer-events: none;
  }
  .tour-overlay.active { pointer-events: auto; }
  .tour-backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.5); backdrop-filter: blur(2px);
  }
  .tour-card {
    position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%);
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px 32px;
    width: 380px; max-width: calc(100vw - 32px); z-index: 9001;
    box-shadow: 0 24px 80px rgba(0,0,0,.3);
  }
  .tour-step-num {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .1em; color: var(--rose); margin-bottom: 8px;
  }
  .tour-title { font-size: 19px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
  .tour-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
  .tour-actions { display: flex; align-items: center; justify-content: space-between; }
  .tour-btn-skip {
    font-size: 13px; color: var(--text-muted); background: none; border: none;
    cursor: pointer; font-family: inherit; padding: 0;
  }
  .tour-btn-skip:hover { color: var(--text); }
  .tour-btn-next {
    padding: 11px 28px; background: var(--rose); color: #fff;
    font-size: 14px; font-weight: 700; border: none; border-radius: var(--radius);
    cursor: pointer; font-family: inherit; transition: background .2s;
  }
  .tour-btn-next:hover { background: var(--rose-hover); }
  .tour-highlight {
    box-shadow: 0 0 0 3px var(--rose), 0 0 0 8px rgba(212,86,122,.18) !important;
    position: relative; z-index: 8999;
  }
  .nav-tour-btn {
    font-size: 13px; color: rgba(255,255,255,.6);
    background: none; border: 1px solid rgba(255,255,255,.15);
    border-radius: 8px; padding: 5px 12px; cursor: pointer;
    font-family: inherit; transition: border-color .2s, color .2s;
  }
  .nav-tour-btn:hover { color: #fff; border-color: rgba(255,255,255,.4); }
  [data-toggleable].hidden-section { display: none !important; }
