/* ═══════════════════════════════════════
           QUÍTATE LOS LENTES — Cataratas Landing
           Palette reutilizada de propuesta.html
        ═══════════════════════════════════════ */
:root {
    --pm-pink: #E91E8C;
    --pm-pink-dark: #C2177A;
    --pm-navy: #001228;
    --pm-navy-deep: #002343;
    --pm-blue: #4A6CF7;
    --pm-light-blue: #E2EFFF;
}

body {
    color: #001228;
}

* {
    box-sizing: border-box;
}

/* ── 1. ANNOUNCEMENT BAR ── */
.pm-ann-bar {
    background: var(--pm-pink);
    color: #fff;
    text-align: center;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1100;
    letter-spacing: 0.3px;
    gap: 10px 16px !important;
    box-shadow: 0 10px 30px rgba(194, 23, 122, 0.2);
}

.pm-ann-copy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1.35;
}

.pm-ann-copy strong,
.pm-ann-bonus strong {
    font-weight: 800;
}

.pm-ann-copy-muted {
    opacity: 0.9;
}

.pm-ann-countdown {
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.pm-ann-bar .countdown-unit {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    margin: 0;
    padding: 4px 6px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 11px;
    line-height: 1.1;
    text-transform: lowercase;
}

.pm-ann-bar .countdown-unit span {
    margin-top: 4px;
    opacity: 0.82;
}

.pm-ann-bar .countdown-unit b {
    font-size: 21px;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.pm-sep {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    opacity: 0.7;
}

.pm-ann-bonus {
    opacity: 0.95;
}

/* ── 2. HEADER ── */
header.pm-header {
    position: fixed !important;
    top: 54px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s, box-shadow 0.3s, top 0.3s;
}

header.pm-header.scrolled {
    background: #fff !important;
    box-shadow: 0 2px 20px rgba(0, 18, 40, 0.12);
}

header.pm-header .pm-hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

header.pm-header .pm-logo img {
    height: 40px;
}

header.pm-header .pm-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

header.pm-header .pm-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

header.pm-header.scrolled .pm-nav a {
    color: #001228;
}

header.pm-header .pm-nav a:hover {
    color: var(--pm-pink);
}

header.pm-header .pm-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

header.pm-header.scrolled .pm-phone {
    color: #001228;
}

.btn-hdr {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.btn-hdr:hover {
    background: #1da851;
    transform: translateY(-1px);
    color: #fff !important;
}

/* ── 3. HERO ── */
#pm-hero {
    background: linear-gradient(135deg, #001228 0%, #002343 60%, #001A35 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 184px 0 80px;
}

#pm-hero::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 108, 247, 0.12) 0%, transparent 65%);
    top: -200px;
    right: -150px;
    pointer-events: none;
}

#pm-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, transparent 65%);
    bottom: -100px;
    left: -80px;
    pointer-events: none;
}

.pm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(233, 30, 140, 0.15);
    border: 1px solid rgba(233, 30, 140, 0.5);
    color: #FFB3DA;
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.pm-hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pm-pink);
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.3);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.3);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(233, 30, 140, 0.1);
    }
}

.pm-h1 {
    font-size: clamp(30px, 4.5vw, 54px);
    font-weight: 900;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.pm-accent {
    color: var(--pm-pink);
}

.pm-accent-green {
    color: #4DF0A0;
}

.pm-subtext {
    color: #8DAFC8;
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 500px;
}

.pm-bullets {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.pm-bullets li {
    color: #E2EFFF;
    padding: 8px 0;
    font-size: clamp(14px, 1.4vw, 16px);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(226, 239, 255, 0.08);
}

.pm-bullets li:last-child {
    border-bottom: none;
}

.pm-bullets li .pm-bullet-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(233, 30, 140, 0.2);
    border: 1px solid rgba(233, 30, 140, 0.5);
    color: var(--pm-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pm-bullets li strong {
    color: #fff;
}

/* CTA — WhatsApp PRIMARIO */
.pm-cta-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 480px;
    margin-bottom: 32px;
}

.btn-pm-wa-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25D366;
    color: #fff !important;
    padding: 22px 32px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 900;
    text-decoration: none !important;
    transition: all 0.25s;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.45);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-pm-wa-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
}

.btn-pm-wa-hero:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(37, 211, 102, 0.6);
    color: #fff !important;
}

.btn-pm-wa-hero .wa-icon-hero {
    font-size: 26px;
}

.btn-pm-secondary-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #E2EFFF !important;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.25s;
}

.btn-pm-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff !important;
}

.pm-urgency-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #8DAFC8;
}

.pm-urgency-pill .fire {
    color: #FF6B35;
}

/* Trust row */
.pm-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    margin-top: 28px;
}

.pm-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

.pm-trust-item i {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.pm-trust-item .pm-stars {
    color: #FEC42C;
    font-size: 12px;
}

.pm-trust-item strong {
    color: rgba(255, 255, 255, 0.85);
}

.pm-trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero visual (reutilizado de propuesta.html / propuesta2.html) */
.pm-hero-visual {
    position: relative;
    height: 580px;
}

.pm-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 100%;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
    box-shadow: -20px 20px 80px rgba(0, 0, 0, 0.5);
}

.pm-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pm-img-sec {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 45%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.5);
    border: 4px solid rgba(0, 18, 40, 0.8);
}

.pm-img-sec img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.pm-float-card {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 13px 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
    min-width: 175px;
}

.pm-float-card .fc-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pm-float-card .fc-icon.pink {
    background: rgba(233, 30, 140, 0.12);
}

.pm-float-card .fc-icon.blue {
    background: var(--pm-light-blue);
}

.pm-float-card .fc-icon.green {
    background: rgba(37, 211, 102, 0.12);
}

.pm-float-card .fc-title {
    font-weight: 800;
    font-size: 15px;
    color: #001228;
    line-height: 1.2;
}

.pm-float-card .fc-sub {
    font-size: 11px;
    color: #7A8EA0;
    margin-top: 2px;
}

.pm-float-card .fc-stars {
    color: #FEC42C;
    font-size: 11px;
}

.pm-fc-reviews {
    top: 30px;
    left: -10px;
    animation: fc-float1 4s ease-in-out infinite;
}

.pm-fc-patients {
    bottom: 60px;
    left: 30px;
    animation: fc-float2 4s ease-in-out infinite 1.3s;
}

.pm-fc-price {
    top: 180px;
    left: -30px;
    animation: fc-float3 4s ease-in-out infinite 2.6s;
}

@keyframes fc-float1 {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

@keyframes fc-float2 {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

@keyframes fc-float3 {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-7px)
    }
}

/* ── 4. STATS STRIP ── */
.pm-stats-strip {
    background: var(--pm-light-blue);
    padding: 40px 0;
}

.pm-stat-card {
    padding: 20px 28px;
    text-align: center;
    position: relative;
}

.pm-stat-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(74, 108, 247, 0.2);
}

.pm-stat-card:last-child::after {
    display: none;
}

.pm-stat-icon {
    width: 48px;
    height: 48px;
    background: var(--pm-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.pm-stat-icon i {
    color: #fff;
    font-size: 20px;
}

.pm-stat-number {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: #001228;
    line-height: 1;
    margin-bottom: 6px;
}

.pm-pink-num {
    color: var(--pm-pink);
}

.pm-stat-label {
    font-size: 13px;
    color: var(--pm-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.pm-stat-desc {
    font-size: 12px;
    color: #7A8EA0;
    margin-top: 4px;
}

/* ── 5. WHAT ARE CATARACTS (info section) ── */
.pm-info-section {
    padding: 80px 0;
}

.pm-info-section.dark-bg {
    background: linear-gradient(135deg, var(--pm-navy) 0%, var(--pm-navy-deep) 100%);
}

.pm-info-section.light-bg {
    background: #fff;
}

.pm-info-section.tinted-bg {
    background: var(--pm-light-blue);
}

.subtitle.s2 {
    color: var(--pm-pink) !important;
}

/* ── 6. SYMPTOMS CARD (NUEVO) ── */
.pm-symptoms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pm-symptom-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pm-symptom-item:hover {
    border-color: var(--pm-pink);
    box-shadow: 0 4px 16px rgba(233, 30, 140, 0.1);
}

.pm-symptom-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--pm-pink);
    flex-shrink: 0;
    margin-top: 5px;
}

.pm-symptom-text {
    font-size: 14px;
    color: #374151;
    line-height: 1.4;
    font-weight: 500;
}

.pm-warn-box {
    background: rgba(233, 30, 140, 0.06);
    border: 1.5px solid rgba(233, 30, 140, 0.2);
    border-radius: 14px;
    padding: 24px 28px;
    margin-top: 24px;
}

.pm-warn-box p {
    margin: 0;
    color: #374151;
    font-size: 15px;
    line-height: 1.6;
}

.pm-warn-box strong {
    color: var(--pm-pink);
}

/* ── 7. WHY CHOOSE US (benefits grid) ── */
.pm-why-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: background 0.2s, border-color 0.2s;
    height: 100%;
}

.pm-why-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(233, 30, 140, 0.3);
}

.pm-why-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(233, 30, 140, 0.15);
    border: 1px solid rgba(233, 30, 140, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pm-why-icon i {
    color: var(--pm-pink);
    font-size: 18px;
}

.pm-why-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.pm-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.5;
}

/* ── 8. PROCEDURES (NUEVO) ── */
.pm-procedure-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 18, 40, 0.08);
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
}

.pm-procedure-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 18, 40, 0.14);
}

.pm-proc-header {
    padding: 28px 28px 20px;
    border-bottom: 1px solid #f1f5f9;
}

.pm-proc-num {
    font-size: 48px;
    font-weight: 900;
    color: var(--pm-light-blue);
    line-height: 1;
    margin-bottom: 8px;
}

.pm-proc-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--pm-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.pm-proc-icon i {
    color: var(--pm-pink);
    font-size: 22px;
}

.pm-proc-title {
    font-size: 18px;
    font-weight: 800;
    color: #001228;
    margin-bottom: 6px;
}

.pm-proc-tag {
    display: inline-block;
    background: var(--pm-light-blue);
    color: var(--pm-blue);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.pm-proc-body {
    padding: 20px 28px 28px;
}

.pm-proc-body p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 16px;
}

.pm-proc-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #374151;
    padding: 5px 0;
}

.pm-proc-feat i {
    color: var(--pm-blue);
    font-size: 12px;
    flex-shrink: 0;
}

/* ── 9. RECOVERY TIMELINE (NUEVO) ── */
.pm-timeline-section {
    padding: 80px 0;
    background: var(--pm-light-blue);
}

.pm-timeline {
    position: relative;
    padding-left: 60px;
}

.pm-timeline::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: rgba(74, 108, 247, 0.25);
    border-radius: 2px;
}

.pm-timeline-item {
    position: relative;
    padding: 0 0 36px 20px;
}

.pm-timeline-item:last-child {
    padding-bottom: 0;
}

.pm-tl-dot {
    position: absolute;
    left: -37px;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--pm-blue);
    border: 3px solid var(--pm-light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(74, 108, 247, 0.3);
}

.pm-tl-dot i {
    color: #fff;
    font-size: 18px;
}

.pm-tl-dot.pink {
    background: var(--pm-pink);
    box-shadow: 0 4px 16px rgba(233, 30, 140, 0.3);
}

.pm-tl-dot.green {
    background: #25D366;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.pm-tl-content {
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 2px 16px rgba(0, 18, 40, 0.06);
}

.pm-tl-period {
    font-size: 11px;
    font-weight: 700;
    color: var(--pm-blue);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}

.pm-tl-title {
    font-size: 16px;
    font-weight: 800;
    color: #001228;
    margin-bottom: 6px;
}

.pm-tl-desc {
    font-size: 14px;
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
}

/* ── 10. CAUSES (icon grid) ── */
.pm-cause-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 10px;
}

.pm-cause-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(233, 30, 140, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pm-cause-icon i {
    color: var(--pm-pink);
    font-size: 16px;
}

.pm-cause-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ── 11. PREVENTION TIPS ── */
.pm-tip-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0, 18, 40, 0.06);
    border-top: 3px solid var(--pm-blue);
    transition: transform 0.2s;
}

.pm-tip-card:hover {
    transform: translateY(-4px);
}

.pm-tip-num {
    font-size: 36px;
    font-weight: 900;
    color: var(--pm-light-blue);
    line-height: 1;
    margin-bottom: 8px;
}

.pm-tip-icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.pm-tip-title {
    font-size: 15px;
    font-weight: 700;
    color: #001228;
    margin-bottom: 6px;
}

.pm-tip-desc {
    font-size: 13px;
    color: #6b7a8d;
    margin: 0;
    line-height: 1.5;
}

/* ── 12. BIG WHATSAPP CTA (NUEVO) ── */
.pm-wa-cta-section {
    background: linear-gradient(135deg, #002343 0%, #001228 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pm-wa-cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, transparent 65%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.pm-wa-cta-section h2 {
    color: #fff;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    margin-bottom: 16px;
}

.pm-wa-cta-section p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 17px;
    max-width: 540px;
    margin: 0 auto 40px;
}

.btn-wa-big {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #25D366;
    color: #fff !important;
    padding: 24px 48px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 900;
    text-decoration: none !important;
    transition: all 0.25s;
    box-shadow: 0 12px 50px rgba(37, 211, 102, 0.45);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-wa-big::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
}

.btn-wa-big:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.6);
    color: #fff !important;
}

.btn-wa-big i {
    font-size: 30px;
}

.pm-wa-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.pm-wa-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}

.pm-wa-trust-item i {
    color: rgba(255, 255, 255, 0.35);
}

.pm-phone-big {
    color: #4DF0A0;
    font-size: 22px;
    font-weight: 900;
    margin-top: 20px;
    display: block;
    text-decoration: none;
    letter-spacing: 1px;
}

.pm-phone-big:hover {
    color: #fff;
}

/* ── 13. URGENCY STRIP ── */
.pm-urgency-strip {
    background: var(--pm-navy-deep);
    color: #fff;
    text-align: center;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
}

.pm-urg-spots {
    display: inline-flex;
    gap: 4px;
    margin: 0 6px;
    vertical-align: middle;
}

.pm-urg-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--pm-pink);
    display: inline-block;
}

.pm-urg-dot.empty {
    background: rgba(255, 255, 255, 0.2);
}

/* ── 14. FLOATING & MOBILE ── */
.pm-wa-float {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 998;
    width: 62px;
    height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
    animation: wa-pulse 2.5s ease-in-out infinite;
    transition: transform 0.2s;
}

.pm-wa-float:hover {
    transform: scale(1.12);
}

.pm-wa-float i {
    color: #fff;
    font-size: 30px;
}

@keyframes wa-pulse {

    0%,
    100% {
        box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5)
    }

    50% {
        box-shadow: 0 8px 45px rgba(37, 211, 102, 0.75)
    }
}

.pm-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #001228;
    padding: 12px 16px;
    display: none;
    gap: 10px;
    align-items: center;
    box-shadow: 0 -4px 24px rgba(0, 18, 40, 0.4);
}

.pm-mobile-cta .btn-book-mob {
    flex: 1;
    background: var(--pm-pink);
    color: #fff;
    text-align: center;
    padding: 14px 12px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
}

.pm-mobile-cta .btn-wa-mob {
    background: #25D366;
    color: #fff;
    padding: 14px 16px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pm-mobile-cta .btn-wa-mob i {
    font-size: 22px;
}

/* ── 15. FORM SECTION ── */
.pm-form-strip {
    background: linear-gradient(135deg, #002343 0%, #001228 100%);
    padding: 80px 0;
}

.pm-form-strip h2 {
    color: #fff;
}

.pm-form-subtext {
    color: #8DAFC8;
    font-size: 16px;
}

.pm-form-benefits {
    margin-top: 28px;
}

.pm-form-benefit {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.pm-fb-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pm-fb-icon i {
    color: #25D366;
    font-size: 18px;
}

.pm-fb-text h5 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.pm-fb-text p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

.pm-submit-btn {
    width: 100%;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    letter-spacing: 0.3px;
}

.pm-submit-btn:hover {
    background: #1da851;
    transform: translateY(-1px);
}

.pm-form-strip .form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 8px;
}

.pm-form-strip .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.pm-form-strip .form-control:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: #25D366;
    color: #fff;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

.pm-form-strip select.form-control option {
    background: #001228;
    color: #fff;
}

/* ── 16. RESPONSIVE ── */
@media (max-width: 991px) {
    #pm-hero {
        padding: 220px 0 50px;
        min-height: auto;
    }

    .pm-hero-visual {
        height: 360px;
        margin-top: 40px;
    }

    .pm-img-main {
        width: 100%;
        border-radius: 16px;
    }

    .pm-img-sec {
        display: none;
    }

    .pm-float-card {
        display: none;
    }

    .pm-cta-block {
        max-width: 100%;
    }

    .btn-pm-wa-hero,
    .btn-pm-secondary-hero {
        width: 100%;
    }

    header.pm-header .pm-nav {
        display: none;
    }

    header.pm-header .pm-phone {
        display: none;
    }

    body {
        padding-bottom: 74px;
    }

    .pm-mobile-cta {
        display: flex !important;
    }

    .pm-wa-float {
        bottom: 88px;
        right: 16px;
        width: 54px;
        height: 54px;
    }

    .pm-wa-float i {
        font-size: 26px;
    }

    .pm-symptoms-grid {
        grid-template-columns: 1fr;
    }

    .pm-timeline {
        padding-left: 50px;
    }
}

@media (max-width: 767px) {
    .pm-ann-bar {
        font-size: 11px;
        line-height: 1.5;
        padding: 10px 12px;
        gap: 8px 10px !important;
    }

    .pm-ann-copy {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        font-size: 12px;
    }

    .pm-ann-countdown {
        margin-left: 0 !important;
        padding: 3px 6px;
    }

    .pm-ann-bar .countdown-unit {
        min-width: 40px;
        padding: 4px;
    }

    .pm-ann-bar .countdown-unit b {
        font-size: 18px;
    }

    .pm-sep {
        font-size: 16px;
    }

    header.pm-header {
        top: 72px;
    }

    .pm-stat-card::after {
        display: none;
    }

    .pm-stat-card {
        border-bottom: 1px solid rgba(74, 108, 247, 0.15);
    }

    .pm-trust-row {
        gap: 12px;
    }

    .pm-trust-divider {
        display: none;
    }

    .btn-wa-big {
        padding: 18px 28px;
        font-size: 17px;
    }
}

/* ── TIPOS Y GRADOS DE CATARATAS ── */
.pm-type-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    height: 100%;
    box-shadow: 0 2px 16px rgba(0, 18, 40, 0.06);
    border-top: 3px solid var(--pm-blue);
    transition: transform 0.2s, box-shadow 0.2s;
}

.pm-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 18, 40, 0.12);
}

.pm-type-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--pm-light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.pm-type-icon i {
    color: var(--pm-blue);
    font-size: 20px;
}

.pm-type-title {
    font-size: 16px;
    font-weight: 800;
    color: #001228;
    margin-bottom: 8px;
}

.pm-type-desc {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
}

.pm-grade-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    height: 100%;
    box-shadow: 0 2px 16px rgba(0, 18, 40, 0.06);
    border-left: 4px solid var(--pm-blue);
    transition: transform 0.2s, box-shadow 0.2s;
}

.pm-grade-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 18, 40, 0.12);
}

.pm-grade-card.grade-green {
    border-left-color: #28a745;
}

.pm-grade-card.grade-yellow {
    border-left-color: #ffc107;
}

.pm-grade-card.grade-orange {
    border-left-color: #fd7e14;
}

.pm-grade-card.grade-red {
    border-left-color: #dc3545;
}

.pm-grade-num {
    font-size: 32px;
    font-weight: 900;
    color: var(--pm-light-blue);
    line-height: 1;
    margin-bottom: 6px;
}

.pm-grade-title {
    font-size: 16px;
    font-weight: 800;
    color: #001228;
    margin-bottom: 8px;
}

.pm-grade-desc {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
}

.pm-grade-action {
    display: inline-block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.pm-grade-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.pm-grade-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── CATARATAS VS PRESBICIA (tabla comparativa) ── */
.pm-vs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 18, 40, 0.06);
}

.pm-vs-table thead th {
    background: var(--pm-navy);
    color: #fff;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
}

.pm-vs-table thead th:first-child {
    width: 22%;
}

.pm-vs-table tbody td {
    padding: 14px 20px;
    font-size: 14px;
    color: #374151;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: top;
    line-height: 1.5;
}

.pm-vs-table tbody tr:last-child td {
    border-bottom: none;
}

.pm-vs-table tbody td:first-child {
    font-weight: 700;
    color: #001228;
    background: #f8fafc;
}

.pm-vs-table tbody tr:hover td {
    background: rgba(74, 108, 247, 0.04);
}

.pm-vs-table tbody tr:hover td:first-child {
    background: rgba(74, 108, 247, 0.08);
}

@media (max-width: 767px) {
    .pm-vs-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pm-vs-table {
        min-width: 600px;
    }
}

/* Template overrides */
.btn-main,
a.btn-main,
input[type=submit].btn-main {
    background: #E91E8C;
}

a.btn-main:hover,
.btn-main:hover {
    background: #C2177A;
}

#send_message {
    background: #25D366;
}

#send_message:hover {
    background: #1da851;
}
