/* SasMed - Cartão de Benefícios de Saúde */
:root {
    --primary-blue: #1e3a8a;
    --primary-dark: #1a365d;
    --primary-light: #dbeafe;
    --accent-green: #10b981;
    --accent-green-dark: #059669;
    --accent-green-light: #d1fae5;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-light: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--primary-blue); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--accent-green); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ========= NAVBAR ========= */
.navbar {
    background: var(--bg-white);
    padding: 18px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}
.logo-img {
    height: 65px;
    width: auto;
    display: block;
}
.logo-sas { color: var(--primary-blue); }
.logo-med { color: var(--accent-green); }

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
}
.nav-links li { display: inline-flex; }
.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: 0.2s;
}
.nav-links a:hover { color: var(--accent-green); }
.nav-links a.active { color: var(--primary-blue); background: var(--primary-light); }

.btn-portal {
    background: var(--primary-blue);
    color: white !important;
    padding: 10px 18px !important;
    border-radius: var(--radius-sm) !important;
    font-size: 14px !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
}
.btn-portal:hover { background: var(--primary-dark); color: white !important; }

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}
.menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
}

/* ========= HERO ========= */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 90px 0 100px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16,185,129,0.25), transparent 70%);
    border-radius: 50%;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}
.hero h1 {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
}
.hero h1 span { color: var(--accent-green); }
.hero p {
    font-size: 18px;
    opacity: 0.92;
    margin-bottom: 32px;
    max-width: 540px;
    font-weight: 300;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-card {
    background: white;
    color: var(--text-dark);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.hero-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
    color: var(--primary-blue);
    font-weight: 700;
}
.hero-card > p { color: var(--text-light); margin-bottom: 22px; font-size: 14px; }

/* ========= BUTTONS ========= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    border: 0;
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none;
    font-family: inherit;
}
.btn-primary {
    background: var(--accent-green);
    color: white;
    box-shadow: var(--shadow);
}
.btn-primary:hover {
    background: var(--accent-green-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-blue {
    background: var(--primary-blue);
    color: white;
}
.btn-blue:hover { background: var(--primary-dark); color: white; }
.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); color: white; border-color: white; }
.btn-block { width: 100%; }

/* ========= SECTIONS ========= */
.section { padding: 100px 0; }
.section-alt { background-color: var(--bg-light); }

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}
.badge {
    color: var(--accent-green);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 8px;
}
.section-header h2 {
    font-size: 38px;
    margin: 8px 0 12px;
    color: var(--primary-blue);
    letter-spacing: -1px;
    line-height: 1.2;
    font-weight: 700;
}
.section-header p {
    color: var(--text-light);
    font-size: 17px;
}

/* ========= SERVICES GRID & CARDS ========= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* 4 cards alinhados em uma única linha em telas grandes */
.services-4col {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.services-4col .card { padding: 32px 22px; }
.services-4col .card h3 { font-size: 18px; }
.services-4col .card p { font-size: 14px; }
@media (max-width: 1024px) {
    .services-4col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .services-4col { grid-template-columns: 1fr; }
}

.card {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: var(--radius);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    border-color: var(--accent-green-light);
}
.card-icon {
    font-size: 38px;
    color: var(--accent-green);
    margin-bottom: 20px;
}
.card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--primary-blue);
    font-weight: 700;
}
.card p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
    flex: 1;
    font-size: 15px;
}
.read-more {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}
.read-more:hover { gap: 12px; color: var(--accent-green-dark); }

/* ========= FEATURES ========= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.feature-item {
    text-align: left;
    padding: 28px 24px;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: 0.3s;
}
.feature-item:hover {
    border-color: var(--accent-green);
    transform: translateY(-3px);
}
.feature-item .icon {
    width: 52px;
    height: 52px;
    background: var(--primary-light);
    color: var(--primary-blue);
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}
.feature-item h3 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-weight: 700;
}
.feature-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* ========= STATS ========= */
.stats {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: white;
    padding: 70px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    text-align: center;
}
.stat-number {
    font-size: 46px;
    font-weight: 800;
    color: var(--accent-green);
    letter-spacing: -1px;
    line-height: 1;
}
.stat-label {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 8px;
    font-weight: 300;
}

/* ========= CTA SECTION ========= */
.cta-section {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
    color: white;
    padding: 80px 0;
    text-align: center;
}
.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -1px;
}
.cta-section p {
    font-size: 18px;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 32px;
    font-weight: 300;
}

/* ========= PAGE HEADER (inner pages) ========= */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: white;
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16,185,129,0.2), transparent 70%);
    border-radius: 50%;
}
.page-header > .container { position: relative; z-index: 1; }
.page-header .badge {
    color: var(--accent-green);
    background: rgba(16,185,129,0.15);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
}
.page-header h1 {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
}
.page-header p { font-size: 18px; opacity: 0.92; max-width: 700px; margin: 0 auto; font-weight: 300; }

/* ========= CONTENT BLOCKS ========= */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.content-block h2 {
    font-size: 36px;
    color: var(--primary-blue);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.2;
}
.content-block p {
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.7;
}
.content-list {
    list-style: none;
    margin: 24px 0;
}
.content-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text-dark);
}
.content-list li i {
    color: var(--accent-green);
    flex-shrink: 0;
    font-size: 18px;
    margin-top: 4px;
}

/* ========= VALUES ========= */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.value-card {
    padding: 32px;
    background: white;
    border-radius: var(--radius);
    border-top: 4px solid var(--accent-green);
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card .value-icon {
    font-size: 32px;
    color: var(--accent-green);
    margin-bottom: 16px;
}
.value-card h3 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 700;
}
.value-card p { color: var(--text-light); font-size: 14px; }

/* ========= EXAMS LIST ========= */
.exams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.exam-card {
    background: white;
    padding: 28px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: 0.2s;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.exam-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
    border-color: var(--accent-green-light);
}
.exam-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-green-light);
    color: var(--accent-green-dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.exam-card h4 {
    font-size: 16px;
    color: var(--primary-blue);
    margin-bottom: 6px;
    font-weight: 700;
}
.exam-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}

/* ========= NR TAGS ========= */
.nr-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.nr-tag {
    background: var(--primary-light);
    color: var(--primary-blue);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s;
}
.nr-tag:hover {
    background: var(--accent-green);
    color: white;
}

/* ========= CONTACT ========= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}
.contact-info-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    margin-bottom: 20px;
}
.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}
.contact-info-item:last-child { border: 0; }
.contact-info-item .icon {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    color: var(--primary-blue);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.contact-info-item h4 {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-info-item p {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.form-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}
.form-card h2 {
    font-size: 26px;
    margin-bottom: 8px;
    color: var(--primary-blue);
    font-weight: 700;
}
.form-card > p { color: var(--text-light); margin-bottom: 24px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
    background: white;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
}
.form-group textarea { min-height: 110px; resize: vertical; }

.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
}
.alert-success { background: var(--accent-green-light); color: var(--accent-green-dark); border: 1px solid var(--accent-green); }
.alert-error { background: #fee2e2; color: #b91c1c; border: 1px solid #fca5a5; }

/* ========= FAQ ========= */
.faq-wrapper {
    max-width: 820px;
    margin: 0 auto;
}
.faq-wrapper details {
    background: white;
    padding: 22px 26px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    margin-bottom: 12px;
    cursor: pointer;
    transition: 0.2s;
}
.faq-wrapper details[open] { border-color: var(--accent-green-light); }
.faq-wrapper summary {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 16px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-wrapper summary::-webkit-details-marker { display: none; }
.faq-wrapper summary::after {
    content: '+';
    color: var(--accent-green);
    font-size: 24px;
    font-weight: 400;
    transition: transform 0.2s;
}
.faq-wrapper details[open] summary::after { transform: rotate(45deg); }
.faq-wrapper details p {
    margin-top: 14px;
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.7;
}

/* ========= FOOTER ========= */
.footer {
    background: var(--primary-dark);
    color: #cbd5e1;
    padding: 60px 0 0;
    margin-top: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-logo { margin-bottom: 14px; line-height: 0; }
.footer-logo-img {
    height: 90px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}
.footer-logo .logo-sas { color: white; }
.footer-logo .logo-med { color: var(--accent-green); }
.footer-tagline { font-size: 14px; line-height: 1.6; margin-bottom: 12px; }
.footer-cnpj { font-size: 12px; opacity: 0.7; }

.footer h4 {
    color: white;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer a {
    color: #cbd5e1;
    font-size: 14px;
}
.footer a:hover { color: var(--accent-green); }
.footer p { font-size: 14px; margin-bottom: 8px; }
.footer p i { color: var(--accent-green); margin-right: 8px; width: 14px; }

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 18px 0;
    text-align: center;
    font-size: 13px;
    margin-top: 20px;
}

/* ========= FLOATING WHATSAPP ========= */
.float-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
    z-index: 99;
    transition: transform 0.2s;
}
.float-whatsapp:hover { transform: scale(1.1); color: white; }

/* ========= LOCATOR ========= */
.locator-section { padding: 70px 0; }
.locator-card {
    max-width: 880px;
    margin: 0 auto;
    background: var(--bg-white);
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
}
.locator-form {
    display: grid;
    grid-template-columns: 1.4fr 1fr auto;
    gap: 14px;
    align-items: end;
}
.locator-field { display: flex; flex-direction: column; gap: 6px; }
.locator-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.locator-field select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    background: white;
    color: var(--text-dark);
    transition: 0.2s;
}
.locator-field select:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px var(--accent-green-light);
}
.locator-actions { display: flex; flex-direction: column; gap: 8px; }
.locator-actions .btn { padding: 11px 18px; font-size: 14px; white-space: nowrap; }
.locator-status {
    margin: 14px 0 0;
    font-size: 14px;
    color: var(--accent-green-dark);
    display: none;
    font-weight: 500;
}
.locator-status.visible { display: block; }
.locator-status.error { color: #b91c1c; }
.locator-hint {
    margin: 14px 0 0;
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}
.locator-output {
    display: none;
    margin-top: 30px;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    align-items: start;
}
.locator-output.active { display: grid; }
.locator-map {
    height: 460px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    z-index: 1;
}
.locator-results {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 460px;
    overflow-y: auto;
    padding-right: 4px;
}
.locator-empty {
    text-align: center;
    color: var(--text-light);
    padding: 30px 12px;
    font-size: 14px;
}
.partner-card {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    gap: 12px;
    padding: 14px;
    background: var(--bg-white);
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-sm);
    transition: 0.2s;
}
.partner-card:hover { border-color: var(--accent-green); box-shadow: var(--shadow); }
.partner-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.partner-info { min-width: 0; }
.partner-info h4 {
    font-size: 15px;
    color: var(--primary-blue);
    margin: 2px 0 4px;
    font-weight: 700;
}
.partner-type {
    font-size: 11px;
    color: var(--accent-green-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.partner-address {
    font-size: 12px;
    color: var(--text-light);
    margin: 0 0 4px;
    display: flex;
    gap: 4px;
    align-items: flex-start;
}
.partner-address i { margin-top: 3px; flex-shrink: 0; }
.partner-spec { font-size: 12px; color: var(--text-dark); margin: 0; }
.partner-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    text-align: right;
}
.partner-distance {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-blue);
    background: var(--primary-light);
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
}
.partner-cta {
    background: #25d366;
    color: white !important;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.partner-cta:hover { background: #128c7e; color: white !important; }

@media (max-width: 800px) {
    .locator-form { grid-template-columns: 1fr; }
    .locator-actions { flex-direction: row; }
    .locator-actions .btn { flex: 1; justify-content: center; }
    .locator-output.active { grid-template-columns: 1fr; }
    .locator-map { height: 320px; }
    .locator-results { max-height: none; }
    .partner-card { grid-template-columns: 40px 1fr; }
    .partner-meta {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* ========= RESPONSIVE ========= */
@media (max-width: 900px) {
    .menu-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 16px;
        box-shadow: var(--shadow-lg);
        gap: 0;
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 12px 16px; }
    .btn-portal { margin: 8px 0 0; text-align: center; justify-content: center; }

    .hero { padding: 60px 0 80px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 36px; }

    .section { padding: 70px 0; }
    .section-header h2 { font-size: 28px; }
    .page-header h1 { font-size: 32px; }
    .page-header { padding: 50px 0; }

    .content-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

    .stat-number { font-size: 36px; }
    .cta-section h2 { font-size: 28px; }
}

@media (max-width: 500px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 28px; }
    .section-header h2 { font-size: 24px; }
}
