/* ===================================================================
   CLÍNICA & CENTROS DE SALUD — ARQBIMSTUDIO Landing CSS
   Palette: --health-primary (teal), --health-accent (emerald), --health-dark
   =================================================================== */
:root {
    --health-primary: #0d9488;
    --health-accent: #10b981;
    --health-dark: #0f172a;
    --health-navy: #1e293b;
    --health-light: #f0fdfa;
    --health-glass: rgba(13, 148, 136, .08);
    --health-gold: #f6a21e;
    --health-text: #475569;
    --health-white: #ffffff;
    --health-gradient: linear-gradient(135deg, #0d9488 0%, #10b981 50%, #06b6d4 100%);
    --health-gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

/* ─── HERO ────────────────────────────────────────────── */
.hero_clinica {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--health-gradient-dark);
    overflow: hidden;
    padding: 140px 0 80px;
}

.hero_clinica::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/clinica-moderna-hero.jpg') center/cover no-repeat;
    opacity: .18;
    mix-blend-mode: luminosity;
}

.hero_clinica::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, var(--health-light), transparent);
    z-index: 1;
}

.hero_clinica .container {
    position: relative;
    z-index: 2;
}

.hero_clinica h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    text-shadow: 0 4px 20px rgba(0,0,0,.35);
}

.hero_clinica h1 span {
    background: var(--health-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero_clinica .hero_sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,.85);
    max-width: 560px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero_clinica .hero_badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.hero_clinica .h_badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.08);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(13,148,136,.35);
    border-radius: 30px;
    padding: 7px 18px;
    font-size: .85rem;
    color: #a7f3d0;
    font-weight: 600;
}

.hero_clinica .hero_ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Buttons */
.btn_health {
    background: var(--health-gradient);
    color: #fff;
    padding: 15px 36px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    display: inline-block;
    transition: .35s;
    border: none;
    box-shadow: 0 8px 30px rgba(13,148,136,.35);
    position: relative;
    overflow: hidden;
}

.btn_health::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
    top: -10%;
    left: -120%;
    transition: .7s;
}

.btn_health:hover::after {
    left: 120%;
}

.btn_health:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(13,148,136,.5);
    color: #fff;
}

.btn_health_outline {
    border: 2px solid rgba(255,255,255,.5);
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    transition: .3s;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.btn_health_outline:hover {
    background: #fff;
    color: var(--health-dark);
    border-color: #fff;
}

/* Hero Form */
.hero_form_clinica {
    background: rgba(255,255,255,.95);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    padding: 36px;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0,0,0,.2), 0 0 0 1px rgba(13,148,136,.1);
    color: #222;
    position: relative;
    overflow: hidden;
}

.hero_form_clinica::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--health-gradient);
}

.hero_form_clinica h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--health-dark);
}

.hero_form_clinica .form_trust {
    font-size: .82rem;
    color: var(--health-text);
    margin-bottom: 20px;
}

.hero_form_clinica .form-control {
    margin-bottom: 12px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-size: .95rem;
    transition: .3s;
}

.hero_form_clinica .form-control:focus {
    border-color: var(--health-primary);
    box-shadow: 0 0 0 3px rgba(13,148,136,.12);
}

.hero_form_clinica .btn_submit_health {
    background: var(--health-gradient);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    width: 100%;
    font-size: 1rem;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 6px 20px rgba(13,148,136,.3);
}

.hero_form_clinica .btn_submit_health:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(13,148,136,.45);
}

/* ─── SECTION TITLES ─────────────────────────────────── */
.sec_health_title {
    text-align: center;
    margin-bottom: 56px;
}

.sec_health_title h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--health-dark);
    position: relative;
    padding-bottom: 18px;
}

.sec_health_title h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background: var(--health-gradient);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.sec_health_title p {
    font-size: 1.05rem;
    color: var(--health-text);
    margin-top: 14px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── STATS STRIP ────────────────────────────────────── */
.stats_health {
    padding: 40px 0;
    background: var(--health-light);
    border-bottom: 1px solid rgba(13,148,136,.1);
}

.stats_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat_item .stat_num {
    font-family: 'Poppins', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    background: var(--health-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat_item .stat_label {
    font-size: .9rem;
    color: var(--health-text);
    margin-top: 6px;
    font-weight: 500;
}

/* ─── PAIN / PROBLEMS SECTION ────────────────────────── */
.problems_clinica {
    padding: 90px 0;
    background: #fff;
}

.problem_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.problem_card {
    background: #fef2f2;
    border-radius: 16px;
    padding: 28px 24px;
    border-left: 4px solid #ef4444;
    transition: .3s;
    position: relative;
    overflow: hidden;
}

.problem_card::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(239,68,68,.06);
    border-radius: 50%;
    top: -20px;
    right: -20px;
}

.problem_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(239,68,68,.12);
}

.problem_card .p_icon {
    font-size: 1.6rem;
    color: #ef4444;
    margin-bottom: 12px;
}

.problem_card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.problem_card p {
    font-size: .92rem;
    color: #64748b;
    line-height: 1.5;
}

.problem_conclusion {
    text-align: center;
    margin-top: 40px;
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(13,148,136,.05), rgba(16,185,129,.05));
    border-radius: 14px;
    border: 1px solid rgba(13,148,136,.15);
}

.problem_conclusion p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--health-primary);
    margin: 0;
}

/* ─── MATERIALS / TECHNICAL SECTION ──────────────────── */
.materials_clinica {
    padding: 100px 0;
    background: var(--health-light);
    position: relative;
}

.materials_clinica::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13,148,136,.06), transparent 70%);
    border-radius: 50%;
}

.mat_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 44px;
}

.mat_card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 26px;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
    transition: .4s;
    border: 1px solid rgba(13,148,136,.08);
    position: relative;
    overflow: hidden;
}

.mat_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--health-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}

.mat_card:hover::before {
    transform: scaleX(1);
}

.mat_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 44px rgba(13,148,136,.12);
}

.mat_card .mat_icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--health-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--health-primary);
    margin-bottom: 18px;
}

.mat_card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--health-dark);
    margin-bottom: 8px;
}

.mat_card p {
    font-size: .9rem;
    color: var(--health-text);
    line-height: 1.55;
}

.mat_card .mat_spec {
    display: inline-block;
    background: var(--health-glass);
    color: var(--health-primary);
    font-size: .78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 12px;
}

/* ─── SERVICES ───────────────────────────────────────── */
.services_clinica {
    padding: 100px 0;
    background: #fff;
}

.svc_health_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-top: 44px;
}

.svc_health_card {
    background: #fff;
    border-radius: 18px;
    padding: 36px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
    transition: .35s;
    text-align: center;
    border: 1px solid #e2e8f0;
    position: relative;
}

.svc_health_card:hover {
    border-color: var(--health-primary);
    transform: translateY(-6px);
    box-shadow: 0 16px 44px rgba(13,148,136,.12);
}

.svc_health_card .svc_h_icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--health-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--health-primary);
    transition: .3s;
}

.svc_health_card:hover .svc_h_icon {
    background: var(--health-gradient);
    color: #fff;
}

.svc_health_card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--health-dark);
    margin-bottom: 10px;
}

.svc_health_card p {
    font-size: .9rem;
    color: var(--health-text);
    line-height: 1.55;
}

/* ─── NORMATIVA SECTION ──────────────────────────────── */
.normativa_clinica {
    padding: 100px 0;
    background: var(--health-gradient-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.normativa_clinica::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(13,148,136,.15);
}

.normativa_clinica .sec_health_title h2 {
    color: #fff;
}

.norm_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 44px;
}

.norm_card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(13,148,136,.2);
    border-radius: 16px;
    padding: 28px 24px;
    transition: .35s;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.norm_card:hover {
    background: rgba(13,148,136,.15);
    transform: translateY(-4px);
}

.norm_card .norm_num {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--health-accent);
    opacity: .6;
    line-height: 1;
    margin-bottom: 12px;
}

.norm_card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.norm_card p {
    font-size: .85rem;
    color: rgba(255,255,255,.6);
    line-height: 1.5;
}

/* ─── GALLERY CLINICS ────────────────────────────────── */
.gallery_clinica {
    padding: 100px 0;
    background: #fff;
}

.gallery_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 44px;
}

.gallery_item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
}

.gallery_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.gallery_item:hover img {
    transform: scale(1.08);
}

.gallery_item .g_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,.8), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    transition: .4s;
}

.gallery_item .g_overlay h3 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    transform: translateY(10px);
    opacity: 0;
    transition: .4s;
}

.gallery_item:hover .g_overlay h3 {
    transform: translateY(0);
    opacity: 1;
}

/* ─── PROCESS / TIMELINE ─────────────────────────────── */
.process_clinica {
    padding: 100px 0;
    background: var(--health-light);
}

.timeline {
    position: relative;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--health-gradient);
    border-radius: 3px;
}

.tl_item {
    display: flex;
    gap: 28px;
    margin-bottom: 36px;
    position: relative;
}

.tl_dot {
    width: 64px;
    min-width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--health-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(13,148,136,.3);
}

.tl_content {
    background: #fff;
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
    flex: 1;
    border: 1px solid rgba(13,148,136,.08);
    transition: .3s;
}

.tl_content:hover {
    border-color: var(--health-primary);
    box-shadow: 0 8px 28px rgba(13,148,136,.12);
}

.tl_content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--health-dark);
    margin-bottom: 6px;
}

.tl_content p {
    font-size: .9rem;
    color: var(--health-text);
    margin: 0;
    line-height: 1.5;
}

/* ─── FAQ ────────────────────────────────────────────── */
.faq_clinica {
    padding: 90px 0;
    background: #f8fafc;
}

.faq_clinica .card {
    border: none;
    border-radius: 14px !important;
    margin-bottom: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
    overflow: hidden;
}

.faq_clinica .card-header {
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
    padding: 18px 24px;
}

.faq_clinica .card-header .btn-link {
    color: var(--health-dark);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    padding: 0;
}

.faq_clinica .card-body {
    font-size: .95rem;
    color: var(--health-text);
    line-height: 1.65;
    padding: 16px 24px 24px;
}

/* ─── CONTACT FORM ───────────────────────────────────── */
.contact_clinica {
    padding: 100px 0;
    background: #fff;
}

.form_clinica_box {
    background: #fff;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0,0,0,.06);
    border: 1px solid rgba(13,148,136,.08);
    position: relative;
    overflow: hidden;
}

.form_clinica_box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--health-gradient);
}

.form_clinica_box h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--health-dark);
    margin-bottom: 6px;
}

.form_clinica_box .form-control {
    height: 48px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    margin-bottom: 14px;
    transition: .3s;
}

.form_clinica_box .form-control:focus {
    border-color: var(--health-primary);
    box-shadow: 0 0 0 3px rgba(13,148,136,.12);
}

.form_clinica_box textarea.form-control {
    height: auto;
}

/* Submit button — global (overrides Bootstrap) */
.btn_submit_health {
    background: linear-gradient(135deg, #0d9488 0%, #10b981 50%, #06b6d4 100%) !important;
    color: #fff !important;
    border: none !important;
    padding: 16px 20px !important;
    border-radius: 14px !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    width: 100%;
    cursor: pointer;
    transition: all .35s ease !important;
    box-shadow: 0 8px 24px rgba(13,148,136,.35) !important;
    text-transform: uppercase;
    letter-spacing: .5px;
    position: relative;
    overflow: hidden;
}

.btn_submit_health:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(13,148,136,.5) !important;
    color: #fff !important;
}

.btn_submit_health:active {
    transform: translateY(-1px);
}

.btn_submit_health:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(13,148,136,.25), 0 8px 24px rgba(13,148,136,.35) !important;
}

/* ─── FINAL CTA ──────────────────────────────────────── */
.final_cta_clinica {
    padding: 100px 0;
    background: var(--health-gradient-dark);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final_cta_clinica::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13,148,136,.12), transparent 70%);
    top: -200px;
    right: -200px;
}

.final_cta_clinica h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
}

.final_cta_clinica p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 8px;
}

.final_cta_clinica .cta_btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
}

.btn_wa_health {
    background: #25d366;
    color: #fff;
    padding: 15px 36px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
    box-shadow: 0 6px 20px rgba(37,211,102,.3);
}

.btn_wa_health:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37,211,102,.4);
}

/* ─── LEAD MAGNET ────────────────────────────────────── */
.magnet_clinica {
    padding: 90px 0;
    background: var(--health-light);
}

.magnet_health_card {
    background: #fff;
    border-radius: 20px;
    padding: 48px 44px;
    box-shadow: 0 16px 48px rgba(0,0,0,.06);
    max-width: 740px;
    margin: 0 auto;
    border: 1px solid rgba(13,148,136,.1);
    position: relative;
    overflow: hidden;
}

.magnet_health_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--health-gradient);
}

.magnet_health_card .badge_health {
    display: inline-block;
    background: var(--health-gradient);
    color: #fff;
    font-weight: 700;
    border-radius: 24px;
    padding: 6px 22px;
    font-size: .85rem;
    margin-bottom: 16px;
}

.magnet_health_card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--health-dark);
    margin-bottom: 10px;
}

.magnet_health_card ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.magnet_health_card ul li {
    padding: 10px 0 10px 34px;
    position: relative;
    color: var(--health-text);
    font-size: .95rem;
}

.magnet_health_card ul li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    color: var(--health-primary);
    position: absolute;
    left: 0;
    top: 12px;
}

/* ─── PULSE ANIMATION ────────────────────────────────── */
@keyframes healthPulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(13,148,136,.4);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(13,148,136,0);
    }
}

.pulse_health {
    animation: healthPulse 2s infinite;
}

/* ─── FLOATING PARTICLES (CSS ONLY) ──────────────────── */
.health_particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.health_particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(13,148,136,.15);
    border-radius: 50%;
    animation: floatUp 12s linear infinite;
}

.health_particles span:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 14s;
}

.health_particles span:nth-child(2) {
    left: 25%;
    animation-delay: 2s;
    width: 8px;
    height: 8px;
}

.health_particles span:nth-child(3) {
    left: 40%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.health_particles span:nth-child(4) {
    left: 55%;
    animation-delay: 1s;
    width: 4px;
    height: 4px;
}

.health_particles span:nth-child(5) {
    left: 70%;
    animation-delay: 3s;
    animation-duration: 16s;
}

.health_particles span:nth-child(6) {
    left: 85%;
    animation-delay: 5s;
    width: 10px;
    height: 10px;
    background: rgba(16,185,129,.1);
}

@keyframes floatUp {
    0% {
        bottom: -20px;
        opacity: 0;
        transform: translateX(0) rotate(0);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(40px) rotate(360deg);
    }
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 992px) {
    .hero_clinica h1 {
        font-size: 2.2rem;
    }

    .stats_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sec_health_title h2 {
        font-size: 1.9rem;
    }

    .timeline::before {
        left: 22px;
    }

    .tl_dot {
        width: 46px;
        min-width: 46px;
        height: 46px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero_clinica {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero_clinica h1 {
        font-size: 1.85rem;
    }

    .stats_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .form_clinica_box {
        padding: 28px 20px;
    }

    .magnet_health_card {
        padding: 30px 22px;
    }

    .final_cta_clinica h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero_clinica h1 {
        font-size: 1.6rem;
    }

    .stats_grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat_item .stat_num {
        font-size: 2rem;
    }
}

/* ─── WHATSAPP FLOAT ─────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 2px 2px 25px rgba(0, 0, 0, 0.4);
    color: #FFF;
}

.whatsapp-float i {
    margin-top: 0;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}
