/* ═══════════════════════════════════════════════════════════
   MAZ Center — Diseño profesional v2
   Estética médica premium, conversion-first
   ═══════════════════════════════════════════════════════════ */

/* Fonts loaded via <link> in header for performance */

:root {
    --blue: #0170B9;
    --blue-dark: #015a94;
    --blue-deeper: #0a2540;
    --blue-light: #e8f4fd;
    --green: #00a650;
    --green-dark: #008c44;
    --green-light: #e6f7ed;
    --text: #3c4257;
    --text-light: #8792a2;
    --text-dark: #0a2540;
    --bg: #f6f9fc;
    --white: #ffffff;
    --border: #e3e8ee;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
section { padding: 90px 24px; }

/* ═══ TOP BAR ═══ */
.top-bar {
    background: var(--blue-deeper);
    color: rgba(255,255,255,0.65);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    padding: 7px 24px;
}
.top-bar-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-contact { display: flex; gap: 20px; }
.top-bar-contact a {
    color: rgba(255,255,255,0.75);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.top-bar-contact a:hover { color: #25D366; }

/* ═══ NAVBAR ═══ */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.95);
}
.navbar-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 38px; width: auto; }
.nav-logo-text {
    font-size: 0.68rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.2px;
    max-width: 120px;
    line-height: 1.3;
}
.nav-menu { display: flex; align-items: center; gap: 0; flex-wrap: nowrap; }
.nav-menu > a, .nav-dd-trigger {
    color: var(--text);
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all var(--transition);
    cursor: pointer;
    background: none;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.nav-menu > a:hover, .nav-menu > a.active,
.nav-dd-trigger:hover, .nav-dd-trigger.active {
    background: var(--blue-light);
    color: var(--blue);
}
.dd-arrow { font-size: 0.6rem; opacity: 0.5; }
.nav-cta {
    background: var(--green) !important;
    color: white !important;
    font-weight: 600 !important;
    padding: 8px 16px !important;
    border-radius: 10px !important;
    margin-left: 6px !important;
    font-size: 0.75rem !important;
    white-space: nowrap;
    transition: all var(--transition) !important;
    box-shadow: 0 2px 8px rgba(0,166,80,0.25);
}
.nav-cta:hover {
    background: var(--green-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,166,80,0.35);
}
.nav-toggle { display: none; }

/* ═══ DROPDOWN ═══ */
.nav-dropdown { position: relative; }
.nav-dd-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    padding-top: 8px;
}
.nav-dd-panel-inner {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
}
.nav-dropdown:hover .nav-dd-panel { display: flex; }
.nav-dd-panel-sm .nav-dd-panel-inner { min-width: 240px; }
.nav-dd-panel-sm .nav-dd-col { min-width: 240px; }
.nav-dd-col { padding: 20px 22px; min-width: 210px; }
.nav-dd-col + .nav-dd-col { border-left: 1px solid var(--border); }
.nav-dd-col h4 {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 700;
}
.nav-dd-col a {
    display: block;
    padding: 5px 10px;
    margin: 0 -10px;
    font-size: 0.8rem;
    color: var(--text);
    border-radius: 8px;
    transition: all var(--transition);
}
.nav-dd-col a:hover { background: var(--blue-light); color: var(--blue); }

/* ═══ BUTTONS ═══ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    font-family: inherit;
}
.btn-lg { padding: 16px 34px; font-size: 0.95rem; border-radius: 12px; }
.btn-sm { padding: 9px 18px; font-size: 0.8rem; border-radius: 8px; }
.btn-primary {
    background: var(--green);
    color: white;
    box-shadow: 0 2px 8px rgba(0,166,80,0.2);
}
.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,166,80,0.3);
}
.btn-wa {
    background: #25D366;
    color: white;
    box-shadow: 0 2px 8px rgba(37,211,102,0.2);
}
.btn-wa:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 1.5px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: white; }
.btn-outline-white {
    background: rgba(255,255,255,0.12);
    color: white;
    border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.25); }
.btn-ghost {
    background: transparent;
    color: var(--text);
    padding: 13px 20px;
}
.btn-ghost:hover { background: var(--bg); }

/* ═══ HERO v2 ═══ */
.hero {
    background: linear-gradient(160deg, #0a2540 0%, #0d3b66 40%, #0170B9 100%);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(1,112,185,0.4) 0%, transparent 60%),
                radial-gradient(circle at 20% 80%, rgba(0,166,80,0.15) 0%, transparent 50%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 40px;
    background: var(--bg);
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 2;
}
.hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 70px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-overline {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}
.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #7dd3fc, #a5f3fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 1.1rem;
    opacity: 0.75;
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 500px;
    font-weight: 400;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Trust strip */
.trust-strip {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.trust-google {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 24px;
    border-right: 1px solid rgba(255,255,255,0.15);
}
.trust-google-stars { color: #fbbc04; font-size: 0.95rem; letter-spacing: 1px; }
.trust-google-info { font-size: 0.72rem; opacity: 0.6; line-height: 1.3; }
.trust-google-score { font-weight: 800; font-size: 0.85rem; opacity: 1; color: white; }
.trust-isapres { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.trust-isapres-label {
    font-size: 0.68rem;
    font-weight: 600;
    opacity: 0.45;
    margin-right: 6px;
    white-space: nowrap;
}
.trust-isapres img {
    height: 18px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.4;
    transition: opacity var(--transition);
}
.trust-isapres img:hover { opacity: 0.8; }

/* Hero card */
.hero-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.hero-card-header {
    padding: 18px 24px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-card-body { padding: 8px 12px; }
.hero-card-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 14px;
    transition: background var(--transition);
    color: white;
}
.hero-card-item:hover { background: rgba(255,255,255,0.08); }
.hero-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero-card-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.hero-card-info { flex: 1; min-width: 0; }
.hero-card-info strong { display: block; font-size: 0.85rem; font-weight: 600; }
.hero-card-info span { font-size: 0.72rem; opacity: 0.5; }
.hero-card-price {
    font-size: 0.78rem;
    font-weight: 700;
    color: #7dd3fc;
    white-space: nowrap;
}
.hero-card-cta {
    padding: 12px 24px 16px;
}

/* ═══ SECTION HEADERS ═══ */
.section-header { margin-bottom: 48px; }
.section-label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
}
.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -0.5px;
}
.section-sub {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 10px;
    max-width: 540px;
    line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.bg-white { background: var(--white); }
.bg-light { background: var(--bg); }

/* ═══ EQUIPOS (Bento grid) ═══ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}
.bento-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.bento-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.bento-card-icon {
    width: 48px;
    height: 48px;
    background: var(--blue-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}
.bento-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.bento-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ═══ SPECIALTY TABS + LIST ═══ */
.spec-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-bottom: none;
    border-radius: 14px 14px 0 0;
    overflow: hidden;
}
.spec-tab {
    flex: 1;
    padding: 15px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    background: none;
    font-family: inherit;
    text-align: center;
    border-right: 1px solid var(--border);
    letter-spacing: -0.2px;
}
.spec-tab:last-child { border-right: none; }
.spec-tab:hover { color: var(--text-dark); background: var(--bg); }
.spec-tab.active { background: var(--blue); color: white; }

.spec-list-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0 0 14px 14px;
    overflow: hidden;
}
.spec-panel { display: none; }
.spec-panel.active { display: block; }

.spec-item {
    display: flex;
    align-items: center;
    padding: 0 24px;
    height: 56px;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}
.spec-item:last-child { border-bottom: none; }
.spec-item:hover { background: #f8fafc; }
.spec-item-name {
    flex: 1;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: -0.2px;
}
.spec-item-name a { color: inherit; }
.spec-item-name a:hover { color: var(--blue); }
.spec-item-name small {
    display: inline;
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text-light);
    margin-left: 8px;
}
.spec-item-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--green);
    white-space: nowrap;
    margin-right: 20px;
    letter-spacing: -0.3px;
}
.spec-item-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: inherit;
    color: white;
    background: var(--green);
    padding: 8px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0,166,80,0.15);
}
.spec-item-cta:hover {
    background: var(--green-dark);
    box-shadow: 0 3px 10px rgba(0,166,80,0.25);
    transform: translateY(-1px);
}
.spec-item-cta svg { width: 13px; height: 13px; }
.spec-item-cta-outline {
    background: transparent;
    color: var(--blue);
    border: 1.5px solid rgba(1,112,185,0.3);
    box-shadow: none;
}
.spec-item-cta-outline:hover {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
    box-shadow: 0 3px 10px rgba(1,112,185,0.2);
}
.spec-item-highlight {
    background: linear-gradient(90deg, var(--blue-light), #f0f8ff);
    border-bottom: none;
}
.spec-item-highlight:hover { background: linear-gradient(90deg, #daedf9, #e8f3fc); }
.spec-item-highlight .spec-item-name { color: var(--blue); font-weight: 600; }
.spec-item-highlight .spec-item-cta-outline {
    background: var(--blue); color: white; border-color: var(--blue);
}

/* ═══ REVIEWS ═══ */
.reviews-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.reviews-google-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 10px 22px;
    box-shadow: var(--shadow-sm);
}
.reviews-google-badge img { height: 20px; }
.reviews-google-badge .stars { color: #fbbc04; font-size: 1.1rem; letter-spacing: 1px; }
.reviews-google-badge .score { font-size: 1.1rem; font-weight: 800; color: var(--text-dark); }
.reviews-google-badge .count { font-size: 0.78rem; color: var(--text-light); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px;
    transition: all var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.review-meta { flex: 1; }
.review-name { font-weight: 700; font-size: 0.88rem; color: var(--text-dark); }
.review-date { font-size: 0.7rem; color: var(--text-light); }
.review-stars { color: #fbbc04; font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 10px; }
.review-text { font-size: 0.85rem; color: var(--text); line-height: 1.65; }

/* ═══ LOCATION ═══ */
.location-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
}
.location-map {
    height: 420px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.location-map iframe { width: 100%; height: 100%; }
.location-detail { font-size: 0.92rem; color: var(--text); margin-bottom: 16px; display: flex; align-items: flex-start; gap: 12px; line-height: 1.6; }
.location-detail svg { flex-shrink: 0; margin-top: 3px; }
.location-buttons { display: flex; gap: 10px; margin: 28px 0 24px; flex-wrap: wrap; }
.btn-maps {
    background: #4285f4; color: white;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 22px; border-radius: 10px;
    font-size: 0.85rem; font-weight: 600;
    transition: all var(--transition); border: none; cursor: pointer; font-family: inherit;
    box-shadow: 0 2px 8px rgba(66,133,244,0.25);
}
.btn-maps:hover { background: #3367d6; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(66,133,244,0.35); }
.btn-maps svg { fill: white; }
.btn-waze {
    background: #33ccff; color: white;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 22px; border-radius: 10px;
    font-size: 0.85rem; font-weight: 600;
    transition: all var(--transition); border: none; cursor: pointer; font-family: inherit;
    box-shadow: 0 2px 8px rgba(51,204,255,0.25);
}
.btn-waze:hover { background: #00b8e6; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(51,204,255,0.35); }
.btn-waze svg { fill: white; }
.location-phones { display: flex; gap: 20px; flex-wrap: wrap; }
.location-phones a {
    display: flex; align-items: center; gap: 7px;
    font-size: 0.88rem; font-weight: 600; color: var(--text);
}
.location-phones a:hover { color: #25D366; }

/* ═══ ISAPRES (full section) ═══ */
.isapres-section { background: var(--white); padding: 50px 24px; }
.isapres-title {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 24px;
}
.isapres-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    max-width: 1100px;
    margin: 0 auto;
}
.isapre-chip {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 20px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.isapre-chip:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.isapre-logo { max-height: 28px; max-width: 85px; object-fit: contain; }

/* ═══ CTA FINAL ═══ */
.cta-final {
    background: linear-gradient(160deg, #0a2540 0%, #0d3b66 40%, #0170B9 100%);
    color: white;
    text-align: center;
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}
.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(1,112,185,0.3) 0%, transparent 60%);
    pointer-events: none;
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final h2 { font-size: 2.4rem; font-weight: 800; margin-bottom: 14px; letter-spacing: -0.5px; }
.cta-final p { font-size: 1.05rem; opacity: 0.7; margin-bottom: 34px; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ═══ FOOTER ═══ */
.footer {
    background: var(--blue-deeper);
    color: rgba(255,255,255,0.5);
    padding: 56px 24px 0;
}
.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 40px;
}
.footer-logo { height: 32px; margin-bottom: 14px; filter: brightness(10); }
.footer-col p { font-size: 0.8rem; line-height: 1.6; margin-bottom: 4px; }
.footer-col h4 { color: rgba(255,255,255,0.9); font-size: 0.8rem; margin-bottom: 14px; font-weight: 700; letter-spacing: 0.5px; }
.footer-col a { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.5); padding: 3px 0; }
.footer-col a:hover { color: white; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    transition: all var(--transition);
}
.footer-social a:hover { background: var(--blue); }
.footer-social svg { fill: white; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
    text-align: center;
    font-size: 0.72rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); display: inline; }

/* ═══ WHATSAPP FLOAT ═══ */
.wa-float {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 9999;
    width: 60px; height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.3s;
    animation: wa-pulse 2s infinite;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-float svg { width: 30px; height: 30px; fill: white; }
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.55); }
}

/* ═══ BOOKING MODAL ═══ */
.booking-overlay {
    position: fixed; inset: 0;
    background: rgba(10,37,64,0.7);
    z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(6px);
}
.booking-modal {
    background: white;
    border-radius: var(--radius-xl);
    width: 90%; max-width: 800px; height: 85vh;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.booking-modal iframe {
    width: 100%; height: 100%; border: none;
}
.booking-close {
    position: absolute; top: 12px; right: 14px;
    background: var(--text-dark); color: white;
    border: none; width: 34px; height: 34px;
    border-radius: 50%; font-size: 1.2rem;
    cursor: pointer; z-index: 10;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
}
.booking-close:hover { background: #dc3545; }
@media (max-width: 768px) {
    .booking-overlay {
        align-items: stretch; justify-content: stretch;
    }
    .booking-modal {
        width: 100vw; height: 100vh; height: 100dvh;
        max-width: 100vw; max-height: 100vh; max-height: 100dvh;
        border-radius: 0; margin: 0;
        position: fixed; top: 0; left: 0;
    }
    .booking-close {
        position: fixed;
        top: 10px; right: 10px;
        width: 42px; height: 42px;
        font-size: 1.5rem;
        background: rgba(10,37,64,0.85);
        z-index: 10001;
    }
}

/* ═══ ANIMATIONS ═══ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr 380px; gap: 30px; }
    .spec-grid { grid-template-columns: repeat(3, 1fr); }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .top-bar-hours { display: none; }
    section { padding: 60px 20px; }
    .counter-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 24px 16px !important; }
    .counter-grid .counter { font-size: 2.2rem !important; }
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 24px 0;
        gap: 20px;
    }
    .hero h1 { font-size: 2.2rem; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }
    .trust-strip { justify-content: center; }
    .trust-google { border-right: none; padding-right: 0; }
    .trust-isapres { justify-content: center; }
    .hero-card { max-width: 380px; margin: 0 auto; }
    .section-title { font-size: 1.7rem; }
    .spec-tab { font-size: 0.72rem; padding: 12px 6px; letter-spacing: 0; }
    .spec-item { padding: 0 16px; height: 52px; }
    .spec-item-name { font-size: 0.85rem; }
    .spec-item-price { font-size: 0.78rem; margin-right: 12px; }
    .spec-item-cta { padding: 7px 14px; font-size: 0.72rem; }
    .bento-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .location-grid { grid-template-columns: 1fr; }
    .location-map { height: 260px; }
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
    .cta-final h2 { font-size: 1.7rem; }

    .nav-logo-text { display: none; }
    .navbar-inner { padding: 0 16px; }

    /* Mobile nav */
    .nav-toggle {
        display: flex; flex-direction: column; gap: 5px;
        background: none; border: none; cursor: pointer; padding: 8px;
        flex-shrink: 0; z-index: 10;
    }
    .nav-toggle span { width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; }
    .nav-menu {
        display: none;
        position: absolute; top: 68px; left: 0; right: 0;
        background: var(--white); flex-direction: column;
        padding: 16px 24px; box-shadow: var(--shadow-lg); gap: 2px;
        border-top: 1px solid var(--border);
        max-height: calc(100vh - 68px); max-height: calc(100dvh - 68px);
        overflow-y: auto; -webkit-overflow-scrolling: touch;
    }
    .nav-menu.open { display: flex; }
    .nav-menu > a, .nav-dd-trigger {
        width: 100%; text-align: left; padding: 12px 16px;
        font-size: 0.9rem; border-radius: 8px;
    }
    .nav-dropdown { width: 100%; }
    .nav-dd-trigger { display: flex; justify-content: space-between; align-items: center; }
    .nav-cta { margin-left: 0 !important; text-align: center; justify-content: center; margin-top: 8px; padding: 12px 16px !important; font-size: 0.9rem !important; }
    .nav-dd-panel { position: static; transform: none; padding-top: 0; }
    .nav-dd-panel-inner { flex-direction: column; box-shadow: none; border: none; border-radius: 0; }
    .nav-dropdown:hover .nav-dd-panel { display: none; }
    .nav-dropdown.open .nav-dd-panel { display: flex; }
    .nav-dd-panel-inner .nav-dd-col { border-left: none !important; padding: 8px 16px; background: var(--bg); border-radius: 10px; margin-bottom: 4px; }
    .nav-dd-panel-inner .nav-dd-col a { padding: 10px 12px; font-size: 0.85rem; display: block; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-inner { padding: 40px 20px 70px; }
    .btn-lg { padding: 14px 24px; font-size: 0.88rem; }
    .spec-item { padding: 0 12px; height: 48px; }
    .spec-item-name { font-size: 0.82rem; }
    .spec-item-price { font-size: 0.75rem; margin-right: 8px; min-width: 0; }
    .spec-item-cta { padding: 6px 12px; font-size: 0.7rem; }
    .spec-tab { font-size: 0.68rem; padding: 10px 4px; }
}
