/*
Theme Name: Fisiofit
Theme URI: https://fisiofit.cl/
Author: Fisiofit
Author URI: https://fisiofit.cl/
Description: Tema WordPress personalizado basado en el sitio HTML original de Fisiofit.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fisiofit
*/

:root {
      --brand:        #2472FF;
      --brand-dark:   #1250D6;
      --brand-glow:   rgba(36, 114, 255, 0.35);
      --brand-dim:    rgba(36, 114, 255, 0.10);
      --brand-border: rgba(36, 114, 255, 0.22);
      --bg:        #ffffff;
      --bg-2:      #f7f8fa;
      --bg-card:   rgba(10,10,15,0.03);
      --border:    rgba(10,10,15,0.09);
      --text:      #0a0a0f;
      --text-dim:  rgba(10,10,15,0.62);
      --text-muted:rgba(10,10,15,0.42);
      --radius-sm: 8px;
      --radius:    16px;
      --radius-lg: 24px;
      --radius-xl: 40px;
      --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font);
      background: var(--bg);
      color: var(--text);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      line-height: 1.6;
    }

    .bg-glow {
      position: fixed; inset: 0; z-index: -1; pointer-events: none;
      background:
        radial-gradient(ellipse 80% 60% at 10% 5%,  rgba(36,114,255,0.07), transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 90%, rgba(18,80,214,0.05), transparent 60%),
        var(--bg);
    }

    .glass {
      background: var(--bg-card);
      backdrop-filter: blur(20px) saturate(1.2);
      -webkit-backdrop-filter: blur(20px) saturate(1.2);
      border: 1px solid var(--border);
    }
    .liquid-glass {
      background: rgba(10,10,15,0.02);
      backdrop-filter: blur(14px) saturate(1.1);
      -webkit-backdrop-filter: blur(14px) saturate(1.1);
      border: 1px solid rgba(10,10,15,0.08);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 8px 40px rgba(10,10,15,0.06);
      position: relative; overflow: hidden;
    }
    .liquid-glass::before {
      content: ''; position: absolute; inset: 0; border-radius: inherit;
      padding: 1px;
      background: linear-gradient(180deg,
        rgba(10,10,15,0.10) 0%, rgba(10,10,15,0.03) 30%,
        rgba(10,10,15,0) 60%, rgba(10,10,15,0.06) 100%);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor; mask-composite: exclude;
      pointer-events: none;
    }

    .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

    .eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--brand); margin-bottom: 16px;
    }
    .eyebrow::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: var(--brand); flex-shrink: 0;
    }
    .section-title {
      font-size: clamp(28px, 4.5vw, 52px);
      font-weight: 800; letter-spacing: -0.04em; line-height: 1.02;
      margin-bottom: 18px;
    }
    .section-desc {
      font-size: 16px; color: var(--text-dim); line-height: 1.75;
      max-width: 520px;
    }

    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 26px; border-radius: 100px;
      font-family: var(--font); font-size: 14px; font-weight: 700;
      text-decoration: none; cursor: pointer; border: none;
      transition: all 0.25s cubic-bezier(.22,1,.36,1);
      letter-spacing: -0.01em;
    }
    .btn:active { transform: scale(0.97) !important; }
    .btn-primary { background: var(--brand); color: #fff; }
    .btn-primary:hover {
      background: color-mix(in srgb, var(--brand) 80%, white 20%);
      transform: translateY(-2px);
      box-shadow: 0 10px 36px var(--brand-glow);
    }
    .btn-outline {
      background: transparent; color: var(--text);
      border: 1px solid rgba(10,10,15,0.18);
    }
    .btn-outline:hover {
      background: rgba(10,10,15,0.04);
      border-color: rgba(10,10,15,0.35);
    }
    .btn-whatsapp { background: #25D366; color: #000; }
    .btn-whatsapp:hover {
      background: #1ebe5c; transform: translateY(-2px);
      box-shadow: 0 10px 36px rgba(37,211,102,0.35);
    }

    /* ════ NAV ══════════════════════════════════ */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      height: 66px;
      background: rgba(255,255,255,0.78);
      backdrop-filter: blur(24px) saturate(1.3);
      -webkit-backdrop-filter: blur(24px) saturate(1.3);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner {
      max-width: 1100px; margin: 0 auto; padding: 0 24px;
      height: 100%; display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo {
      display: flex; align-items: center; gap: 10px; text-decoration: none;
    }
    .nav-logo-mark {
      width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--brand-dark), var(--brand));
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; font-weight: 900; color: #fff;
    }
    .nav-logo-text {
      font-size: 16px; font-weight: 900; color: var(--text);
      letter-spacing: -0.03em;
    }
    .nav-logo-text .brand-accent { color: var(--brand); }
    .nav-links { display: flex; gap: 30px; list-style: none; }
    .nav-links a {
      font-size: 13px; font-weight: 500; color: var(--text-dim);
      text-decoration: none; transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--text); }
    @media (max-width: 768px) { .nav-links, .nav-cta { display: none; } }

    /* ════ HERO ═════════════════════════════════ */
    .hero {
      min-height: 100vh;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center; padding: 130px 24px 90px;
      position: relative;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 7px 16px; border-radius: 100px;
      background: var(--brand-dim); border: 1px solid var(--brand-border);
      font-size: 12px; font-weight: 600; color: var(--brand);
      letter-spacing: 0.03em; margin-bottom: 36px;
    }
    .hero-badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }
    .hero-title {
      font-size: clamp(54px, 9vw, 104px);
      font-weight: 900; letter-spacing: -0.05em; line-height: 0.93;
      margin-bottom: 30px;
    }
    .gradient-word {
      background: linear-gradient(
        to right,
        #020820 0%, #0A1A5C 15%,
        #2472FF 35%, #80B0FF 55%,
        #2472FF 70%, #0A1A5C 85%, #020820 100%
      );
      background-size: 200% auto;
      -webkit-background-clip: text; background-clip: text;
      color: transparent; -webkit-text-fill-color: transparent;
      filter: url(#noise-hero);
      animation: shiny 6s linear infinite;
    }
    @keyframes shiny {
      0%   { background-position: -200% center; }
      100% { background-position:  200% center; }
    }
    .hero-desc {
      font-size: clamp(16px, 2.2vw, 20px);
      color: var(--text-dim); max-width: 560px;
      line-height: 1.68; margin-bottom: 44px;
    }
    .hero-actions {
      display: flex; align-items: center; gap: 14px;
      flex-wrap: wrap; justify-content: center; margin-bottom: 56px;
    }
    /* Hero stats bar */
    .hero-stats {
      display: flex; align-items: center; gap: 0;
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: var(--radius-lg); overflow: hidden;
      backdrop-filter: blur(12px);
    }
    .hero-stat {
      padding: 20px 36px; text-align: center; flex: 1;
      border-right: 1px solid var(--border);
    }
    .hero-stat:last-child { border-right: none; }
    .hero-stat-number {
      display: block; font-size: clamp(28px, 3.5vw, 40px);
      font-weight: 900; letter-spacing: -0.05em; color: var(--brand);
      line-height: 1;
    }
    .hero-stat-label {
      display: block; font-size: 12px; color: var(--text-dim);
      margin-top: 5px; font-weight: 500;
    }
    @media (max-width: 600px) {
      .hero-stats { flex-direction: column; }
      .hero-stat { border-right: none; border-bottom: 1px solid var(--border); width: 100%; }
      .hero-stat:last-child { border-bottom: none; }
    }

    /* ════ SERVICES ══════════════════════════════ */
    .services { padding: 110px 0; }
    .services-intro { max-width: 660px; margin-bottom: 60px; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    @media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }
    .service-card {
      padding: 36px 30px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      background: var(--bg-card);
      position: relative; overflow: hidden;
      transition: all 0.4s cubic-bezier(.22,1,.36,1);
    }
    .service-card::after {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--brand), transparent);
      opacity: 0; transition: opacity 0.35s;
    }
    .service-card:hover {
      border-color: var(--brand-border);
      transform: translateY(-7px);
      box-shadow: 0 28px 70px rgba(10,10,15,0.10);
    }
    .service-card:hover::after { opacity: 1; }
    .service-icon {
      width: 54px; height: 54px; border-radius: 14px;
      background: var(--brand-dim); border: 1px solid var(--brand-border);
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 800; letter-spacing: 0.12em;
      color: var(--brand); margin-bottom: 20px;
    }
    .service-title {
      font-size: 20px; font-weight: 700; letter-spacing: -0.02em;
      margin-bottom: 12px;
    }
    .service-desc { font-size: 14px; color: var(--text-dim); line-height: 1.72; }

    /* ════ WHY US ═════════════════════════════════ */
    .why-us { padding: 110px 0; border-top: 1px solid var(--border); }
    .why-grid {
      display: grid; grid-template-columns: 1fr;
      gap: 72px; align-items: start; margin-top: 50px;
    }
    @media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; gap: 40px; } }
    .why-feature {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 18px 0; border-bottom: 1px solid var(--border);
    }
    .why-feature:last-child { border-bottom: none; }
    .check-circle {
      width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
      background: var(--brand-dim); border: 1px solid var(--brand-border);
      display: flex; align-items: center; justify-content: center;
      margin-top: 2px;
    }
    .check-circle svg {
      width: 11px; height: 11px; stroke: var(--brand); fill: none; stroke-width: 3;
    }
    .why-feature-body h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
    .why-feature-body p { font-size: 13px; color: var(--text-dim); line-height: 1.65; }
    .progress-card { border-radius: var(--radius-lg); padding: 28px; }
    .progress-header {
      display: flex; justify-content: space-between; align-items: center;
      margin-bottom: 28px;
    }
    .progress-header-title { font-size: 13px; font-weight: 600; color: var(--text-dim); }
    .progress-tag {
      font-size: 11px; font-weight: 600; color: var(--brand);
      padding: 3px 9px; border-radius: 4px;
      background: var(--brand-dim); border: 1px solid var(--brand-border);
    }
    .progress-row { margin-bottom: 22px; }
    .progress-meta {
      display: flex; justify-content: space-between; align-items: baseline;
      margin-bottom: 8px;
    }
    .progress-meta span:first-child { font-size: 13px; font-weight: 500; }
    .progress-meta span:last-child  { font-size: 12px; font-weight: 700; color: var(--brand); }
    .pbar-bg { height: 5px; background: var(--border); border-radius: 3px; overflow: hidden; }
    .pbar-fill {
      height: 100%; border-radius: 3px;
      background: linear-gradient(90deg, var(--brand), rgba(36,114,255,0.55));
      transform: scaleX(0); transform-origin: left;
      transition: transform 1.4s cubic-bezier(.22,1,.36,1);
    }
    .pbar-fill.animated { transform: scaleX(1); }
    .progress-note {
      margin-top: 20px; padding: 14px 16px;
      background: var(--brand-dim); border: 1px solid var(--brand-border);
      border-radius: 10px; font-size: 12px; color: var(--text-dim); line-height: 1.6;
    }
    .progress-note strong { color: var(--brand); }

    /* ════ PRICING ════════════════════════════════ */
    .pricing { padding: 110px 0; border-top: 1px solid var(--border); }
    .pricing-head { text-align: center; margin-bottom: 16px; }
    .pricing-toggle {
      display: flex; align-items: center; justify-content: center;
      gap: 12px; margin-bottom: 52px; font-size: 14px; color: var(--text-dim);
    }
    .toggle-pill {
      width: 48px; height: 26px; border-radius: 13px;
      background: var(--border); border: none; cursor: pointer;
      position: relative; padding: 0; transition: background 0.3s;
    }
    .toggle-pill.on { background: var(--brand); }
    .toggle-knob {
      width: 20px; height: 20px; border-radius: 50%;
      background: white; position: absolute; top: 3px; left: 3px;
      transition: transform 0.3s cubic-bezier(.22,1,.36,1), background 0.3s;
    }
    .toggle-pill.on .toggle-knob { transform: translateX(22px); background: #000; }
    .save-tag {
      font-size: 11px; font-weight: 700; color: var(--brand);
      padding: 2px 8px; border-radius: 4px; background: var(--brand-dim);
    }
    .pricing-grid {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 18px;
    }
    @media (max-width: 900px) {
      .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    }
    .pcard {
      padding: 34px 26px; border-radius: 28px;
      border: 1px solid var(--border);
      background: linear-gradient(155deg, rgba(10,10,15,0.025), rgba(10,10,15,0.005));
      display: flex; flex-direction: column; position: relative; overflow: hidden;
      transition: all 0.4s cubic-bezier(.22,1,.36,1);
    }
    .pcard:hover { transform: translateY(-9px); box-shadow: 0 36px 90px rgba(10,10,15,0.10); }
    .pcard.featured {
      border-color: var(--brand);
      background: linear-gradient(155deg, rgba(36,114,255,0.08), rgba(36,114,255,0.02));
    }
    .popular-tag {
      position: absolute; top: 20px; right: 20px;
      padding: 4px 12px; border-radius: 100px;
      background: var(--brand); color: #fff;
      font-size: 10px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
    }
    .pcard-tier { font-size: 13px; color: var(--text-dim); font-weight: 500; }
    .pcard-price {
      font-size: 42px; font-weight: 900; letter-spacing: -0.05em;
      margin: 8px 0; line-height: 1;
    }
    .pcard-period { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
    .pcard-desc {
      font-size: 13px; color: var(--text-dim); line-height: 1.65;
      margin-bottom: 28px; min-height: 56px;
    }
    .pcard-features { flex: 1; list-style: none; margin-bottom: 28px; }
    .pcard-features li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 13px; color: rgba(240,240,244,0.82);
      margin-bottom: 11px; line-height: 1.45;
    }
    .pf-check {
      width: 18px; height: 18px; border-radius: 50%;
      background: var(--brand-dim); border: 1px solid var(--brand-border);
      display: inline-flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 1px;
    }
    .pf-check svg { width: 8px; height: 8px; stroke: var(--brand); fill: none; stroke-width: 3; }
    .pcard-pricelist { flex: 1; list-style: none; margin-bottom: 28px; }
    .pcard-pricelist li {
      display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
      font-size: 14px; color: var(--text); padding: 12px 0;
      border-bottom: 1px solid var(--border);
    }
    .pcard-pricelist li:last-child { border-bottom: none; }
    .pcard-pricelist li span { color: var(--text-dim); }
    .pcard-pricelist li strong {
      font-weight: 800; color: var(--text); white-space: nowrap;
      letter-spacing: -0.02em;
    }
    .pcard-pricelist li strong small {
      font-weight: 500; color: var(--text-muted); font-size: 11px;
    }
    .pcard-btn {
      width: 100%; padding: 13px; border-radius: 100px;
      font-family: var(--font); font-size: 14px; font-weight: 700;
      cursor: pointer; transition: all 0.25s; text-align: center;
      text-decoration: none; display: block;
    }
    .pcard-btn.default {
      background: transparent; color: var(--text);
      border: 1px solid rgba(10,10,15,0.2);
    }
    .pcard-btn.default:hover {
      background: rgba(10,10,15,0.05); border-color: rgba(10,10,15,0.4);
    }
    .pcard-btn.wa-btn {
      background: #25D366; color: #000; border: none;
    }
    .pcard-btn.wa-btn:hover {
      background: #1ebe5c;
      box-shadow: 0 8px 36px rgba(37,211,102,0.4);
    }
    .pcard-btn.featured-wa {
      background: var(--brand); color: #fff; border: none;
    }
    .pcard-btn.featured-wa:hover {
      background: color-mix(in srgb, var(--brand) 80%, white 20%);
      box-shadow: 0 8px 36px var(--brand-glow);
    }

    /* ════ TEAM ═══════════════════════════════════ */
    .team { padding: 110px 0; border-top: 1px solid var(--border); }
    .team-header { text-align: center; margin-bottom: 52px; }
    .team-header .section-desc { margin: 0 auto; }
    .owner-spotlight {
      display: grid; grid-template-columns: 320px 1fr; gap: 28px;
      align-items: center; padding: 26px; border-radius: var(--radius-lg);
      border: 1px solid var(--border); background: linear-gradient(135deg, rgba(36,114,255,0.08), rgba(36,114,255,0.02));
      margin-top: 24px;
    }
    .owner-photo {
      height: 300px; border-radius: var(--radius-lg); overflow: hidden;
      background: linear-gradient(135deg, rgba(18,80,214,0.15), rgba(36,114,255,0.05));
      border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 12px; color: var(--text-muted); position: relative;
    }
    .owner-photo::before {
      content: ''; position: absolute; inset: 18px; border-radius: 22px;
      background: linear-gradient(180deg, rgba(255,255,255,0.25), rgba(36,114,255,0.06));
      border: 1px solid rgba(255,255,255,0.4);
    }
    .owner-photo span, .owner-photo-badge {
      position: relative; z-index: 1;
    }
    .owner-photo-badge {
      background: rgba(255,255,255,0.82); border: 1px solid rgba(10,10,15,0.1);
      border-radius: 999px; padding: 6px 12px; font-size: 11px; font-weight: 700; color: var(--brand);
    }
    .owner-copy { padding: 10px 10px 10px 0; }
    .owner-copy h3 {
      font-size: clamp(24px, 3vw, 38px); line-height: 1.1; letter-spacing: -0.04em; margin-bottom: 16px;
    }
    .owner-copy p {
      font-size: 15px; line-height: 1.8; color: var(--text-dim); max-width: 560px;
    }
    @media (max-width: 768px) {
      .owner-spotlight { grid-template-columns: 1fr; }
      .owner-photo { height: 260px; }
      .owner-copy { padding: 0; }
    }
    .team-grid {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
    }
    @media (max-width: 768px) { .team-grid { grid-template-columns: 1fr; } }
    .team-card {
      padding: 28px 24px; border-radius: var(--radius-lg);
      border: 1px solid var(--border); background: var(--bg-card);
      text-align: center;
      transition: all 0.35s cubic-bezier(.22,1,.36,1);
    }
    .team-card:hover {
      border-color: var(--brand-border);
      transform: translateY(-5px);
      box-shadow: 0 20px 60px rgba(10,10,15,0.10);
    }
    .team-avatar {
      width: 80px; height: 80px; border-radius: 50%;
      background: linear-gradient(135deg, var(--brand-dark), var(--brand));
      display: flex; align-items: center; justify-content: center;
      font-size: 26px; font-weight: 800; color: #fff;
      margin: 0 auto 18px;
      border: 3px solid var(--brand-border);
    }
    .team-photo-placeholder {
      width: 80px; height: 80px; border-radius: 50%;
      background: linear-gradient(135deg, rgba(36,114,255,0.15), rgba(36,114,255,0.05));
      border: 2px dashed var(--brand-border);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 18px; color: var(--text-muted); font-size: 11px; font-weight: 600;
    }
    .team-name { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4px; }
    .team-role { font-size: 13px; color: var(--brand); font-weight: 600; margin-bottom: 10px; }
    .team-bio { font-size: 13px; color: var(--text-dim); line-height: 1.65; }

    /* ════ TESTIMONIALS — Google Reviews ═════════ */
    .testimonials { padding: 110px 0; border-top: 1px solid var(--border); }
    .testimonials-center { text-align: center; margin-bottom: 56px; }
    .google-reviews-badge {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 10px 20px; border-radius: 100px;
      background: rgba(10,10,15,0.03); border: 1px solid var(--border);
      margin-bottom: 22px;
    }
    .google-reviews-embed {
      padding: 48px 32px; border-radius: var(--radius-lg);
      text-align: center; color: var(--text-dim); font-size: 14px; line-height: 1.7;
    }
    .google-score {
      display: inline-flex; align-items: center; justify-content: center;
      width: 92px; height: 92px; border-radius: 50%; margin-bottom: 18px;
      background: linear-gradient(135deg, rgba(36,114,255,0.13), rgba(36,114,255,0.04));
      border: 1px solid var(--brand-border); color: var(--brand); font-size: 26px; font-weight: 800;
    }
    .google-reviews-embed strong { color: var(--text); display: block; margin-bottom: 8px; font-size: 16px; }
    .reviews-cta-wrap { margin-top: 22px; }
    .g-logo {
      width: 20px; height: 20px; flex-shrink: 0;
    }
    .g-rating { font-size: 15px; font-weight: 800; color: var(--text); }
    .g-stars { color: #FBBC04; font-size: 14px; letter-spacing: 1px; }
    .g-label { font-size: 12px; color: var(--text-muted); }
    .testimonials-grid {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 18px;
    }
    @media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
    .tcard {
      padding: 26px; border-radius: var(--radius-lg);
      position: relative;
    }
    .tcard-top {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 14px;
    }
    .tcard-author-info { display: flex; align-items: center; gap: 10px; }
    .author-av {
      width: 40px; height: 40px; border-radius: 50%;
      background: linear-gradient(135deg, var(--brand-dark), var(--brand));
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 800; color: #fff; flex-shrink: 0;
    }
    .author-name { font-size: 14px; font-weight: 700; line-height: 1.2; }
    .author-date { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
    .tcard-g-mark {
      width: 22px; height: 22px; flex-shrink: 0; opacity: 0.7;
    }
    .tcard-stars { display: flex; gap: 2px; margin-bottom: 12px; }
    .tcard-stars span { color: #FBBC04; font-size: 15px; }
    .tcard-text {
      font-size: 14px; color: rgba(240,240,244,0.82); line-height: 1.72;
    }

    /* ════ CONTACT ════════════════════════════════ */
    .contact-section { padding: 110px 0; border-top: 1px solid var(--border); }
    .contact-header { margin-bottom: 52px; }
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start;
    }
    @media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
    .contact-form-wrap {
      padding: 36px; border-radius: var(--radius-lg);
    }
    .contact-form-title {
      font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 24px;
    }
    .contact-form { display: flex; flex-direction: column; gap: 14px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    @media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
    .contact-input, .contact-textarea, .contact-select {
      width: 100%; padding: 13px 16px;
      background: rgba(10,10,15,0.025); border: 1px solid var(--border);
      border-radius: var(--radius-sm); color: var(--text);
      font-family: var(--font); font-size: 14px;
      transition: border-color 0.2s, background 0.2s;
      outline: none;
    }
    .contact-input::placeholder, .contact-textarea::placeholder { color: var(--text-muted); }
    .contact-input:focus, .contact-textarea:focus {
      border-color: var(--brand-border);
      background: rgba(36,114,255,0.04);
    }
    .contact-textarea { resize: vertical; min-height: 110px; }
    .file-upload-label {
      display: flex; align-items: center; gap: 10px;
      padding: 13px 16px; border-radius: var(--radius-sm);
      border: 1px dashed rgba(10,10,15,0.18);
      background: rgba(10,10,15,0.015);
      color: var(--text-dim); font-size: 13px; cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
    }
    .file-upload-label:hover {
      border-color: var(--brand-border); background: var(--brand-dim);
      color: var(--brand);
    }
    .file-upload-label svg { width: 18px; height: 18px; flex-shrink: 0; }
    .file-upload-label input[type="file"] { display: none; }
    .contact-submit {
      padding: 14px; border-radius: 100px;
      background: var(--brand); color: #fff;
      font-family: var(--font); font-size: 14px; font-weight: 700;
      border: none; cursor: pointer; width: 100%;
      transition: all 0.25s cubic-bezier(.22,1,.36,1);
    }
    .contact-submit:hover {
      background: color-mix(in srgb, var(--brand) 80%, white 20%);
      transform: translateY(-2px); box-shadow: 0 10px 36px var(--brand-glow);
    }
    .contact-right { display: flex; flex-direction: column; gap: 20px; }
    .map-container {
      width: 100%; height: 320px;
      border-radius: var(--radius-lg); overflow: hidden;
      background: linear-gradient(135deg, rgba(36,114,255,0.06), rgba(36,114,255,0.015));
      border: 1px solid var(--border);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 12px; color: var(--text-muted); padding: 20px; text-align: center;
      position: relative;
    }
    .map-container::before {
      content: ''; position: absolute; inset: 18px; border-radius: 18px;
      border: 1px dashed rgba(36,114,255,0.25); background: rgba(255,255,255,0.08);
    }
    .map-label, .map-container small, .map-btn { position: relative; z-index: 1; }
    .map-label { font-size: 13px; font-weight: 700; color: var(--brand); }
    .map-container small { font-size: 11px; opacity: 0.7; }
    .map-btn { margin-top: 8px; }
    .contact-info-card {
      padding: 24px; border-radius: var(--radius);
      background: var(--bg-card); border: 1px solid var(--border);
    }
    .contact-info-item {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 10px 0; border-bottom: 1px solid var(--border);
    }
    .contact-info-item:last-child { border-bottom: none; padding-bottom: 0; }
    .contact-info-icon {
      width: 44px; height: 34px; border-radius: 9px; flex-shrink: 0;
      background: var(--brand-dim); border: 1px solid var(--brand-border);
      display: flex; align-items: center; justify-content: center;
      font-size: 10px; font-weight: 800; letter-spacing: 0.08em; color: var(--brand);
    }
    .contact-info-text { font-size: 13px; color: var(--text-dim); line-height: 1.6; }
    .contact-info-text strong { display: block; color: var(--text); font-weight: 600; margin-bottom: 2px; }

    /* ════ FLOATING WHATSAPP ═══════════════════════ */
    .wa-float {
      position: fixed; bottom: 28px; right: 28px; z-index: 500;
      width: 60px; height: 60px; border-radius: 50%;
      background: #25D366;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 6px 28px rgba(37,211,102,0.5), 0 2px 8px rgba(0,0,0,0.3);
      text-decoration: none;
      transition: all 0.3s cubic-bezier(.22,1,.36,1);
    }
    .wa-float:hover { transform: scale(1.12); box-shadow: 0 12px 40px rgba(37,211,102,0.65); }
    .wa-float svg { width: 30px; height: 30px; fill: white; }

    /* ════ FOOTER ═════════════════════════════════ */
    footer { border-top: 1px solid var(--border); padding: 44px 24px 32px; }
    .footer-main {
      max-width: 1100px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      gap: 32px; flex-wrap: wrap;
      padding-bottom: 32px;
      border-bottom: 1px solid var(--border);
    }
    .footer-brand { display: flex; align-items: center; gap: 10px; }
    .footer-logo-mark {
      width: 34px; height: 34px; border-radius: 9px;
      background: linear-gradient(135deg, var(--brand-dark), var(--brand));
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; font-weight: 900; color: #fff;
    }
    .footer-logo-text {
      font-size: 17px; font-weight: 900; letter-spacing: -0.03em; color: var(--text);
    }
    .footer-logo-text .brand-accent { color: var(--brand); }
    .footer-nav { display: flex; gap: 28px; list-style: none; flex-wrap: wrap; }
    .footer-nav a {
      font-size: 14px; color: var(--text-dim); text-decoration: none;
      transition: color 0.2s; font-weight: 500;
    }
    .footer-nav a:hover { color: var(--text); }
    .footer-socials { display: flex; align-items: center; gap: 12px; }
    .social-btn {
      width: 38px; height: 38px; border-radius: 10px;
      background: var(--bg-card); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      text-decoration: none; transition: all 0.25s;
    }
    .social-btn:hover {
      background: rgba(10,10,15,0.06); border-color: rgba(10,10,15,0.18);
      transform: translateY(-2px);
    }
    .social-btn svg { width: 18px; height: 18px; fill: var(--text-dim); transition: fill 0.2s; }
    .social-btn:hover svg { fill: var(--text); }
    .maps-link {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 13px; color: var(--text-dim); text-decoration: none;
      padding: 8px 14px; border-radius: 100px;
      background: var(--bg-card); border: 1px solid var(--border);
      transition: all 0.2s; font-weight: 500;
    }
    .maps-link:hover { color: var(--text); border-color: rgba(10,10,15,0.18); }
    .footer-bottom {
      max-width: 1100px; margin: 24px auto 0;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 12px;
    }
    .footer-copy { font-size: 12px; color: var(--text-muted); }
    @media (max-width: 768px) {
      .footer-main { flex-direction: column; align-items: flex-start; }
      .footer-bottom { flex-direction: column; gap: 8px; }
    }

    /* ════ SCROLL ANIMATIONS ═══════════════════════ */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.75s cubic-bezier(.22,1,.36,1),
                  transform 0.75s cubic-bezier(.22,1,.36,1);
    }
    .reveal.in { opacity: 1; transform: translateY(0); }
    .d1 { transition-delay: 0.08s; }
    .d2 { transition-delay: 0.16s; }
    .d3 { transition-delay: 0.24s; }

    /* ════ IMAGE PLACEHOLDER ═══════════════════════ */
    .img-placeholder {
      width: 100%; border-radius: var(--radius-lg); overflow: hidden;
      background: linear-gradient(135deg, rgba(36,114,255,0.08), rgba(36,114,255,0.02));
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--text-muted); font-size: 13px; font-weight: 500;
    }
    .img-placeholder.tall { height: 380px; flex-direction: column; gap: 12px; }
