:root{--c-primary:#0d6e6e;--c-primary-dark:#0a5858;--c-primary-light:#e0f2f1;--c-accent:#f59e0b;--c-text:#1e293b;--c-muted:#64748b;--c-bg:#f8fafc;--c-white:#fff;--c-border:#e2e8f0;--shadow:0 2px 12px rgba(0,0,0,.06);--shadow-lg:0 8px 32px rgba(0,0,0,.1);--radius:12px;--radius-sm:8px}
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
body{font-family:'Inter',system-ui,sans-serif;color:var(--c-text);background:var(--c-bg);line-height:1.6}
a{color:var(--c-primary);text-decoration:none}
img{max-width:100%;display:block}
.container{max-width:1200px;margin:0 auto;padding:0 1.5rem}
.hidden{display:none!important}
.text-center{text-align:center}
.skip-link{position:absolute;top:-100%;left:0;background:var(--c-primary);color:#fff;padding:.5rem 1rem;z-index:9999;border-radius:0 0 8px 0}
.skip-link:focus{top:0}

/* Topbar */
.topbar{background:var(--c-primary);color:#fff;font-size:.8rem;padding:.4rem 0}
.topbar-inner{display:flex;justify-content:space-between;align-items:center}
.topbar-item{display:inline-flex;align-items:center;gap:.4rem}
.topbar-item a{color:#fff}
.topbar-item+.topbar-item{margin-left:1.2rem}
.topbar-social{color:#fff;margin-left:.6rem;opacity:.8;transition:opacity .2s}
.topbar-social:hover{opacity:1}
.topbar-right{display:flex;align-items:center}

/* Header */
.header{background:var(--c-white);box-shadow:var(--shadow);position:sticky;top:0;z-index:100}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:.8rem 0}
.logo{display:flex;align-items:center;gap:.6rem;color:var(--c-text)}
.logo-icon{font-size:1.8rem}
.logo-name{font-weight:700;font-size:1.1rem;display:block;line-height:1.2}
.logo-sub{font-size:.7rem;color:var(--c-muted)}
.nav-list{display:flex;align-items:center;gap:.2rem;list-style:none}
.nav-link{padding:.5rem .9rem;border-radius:var(--radius-sm);font-size:.9rem;font-weight:500;color:var(--c-text);transition:all .2s}
.nav-link:hover,.nav-link.active{color:var(--c-primary);background:var(--c-primary-light)}
.btn-nav{background:var(--c-primary)!important;color:#fff!important;padding:.5rem 1.2rem!important}
.btn-nav:hover{background:var(--c-primary-dark)!important}
.hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:.5rem}
.hamburger span{width:24px;height:2px;background:var(--c-text);transition:.3s}

/* Buttons */
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.7rem 1.5rem;border-radius:var(--radius-sm);font-weight:600;font-size:.95rem;border:2px solid transparent;cursor:pointer;transition:all .2s;text-align:center;justify-content:center}
.btn-primary{background:var(--c-primary);color:#fff;border-color:var(--c-primary)}
.btn-primary:hover{background:var(--c-primary-dark);border-color:var(--c-primary-dark)}
.btn-outline{background:transparent;color:var(--c-primary);border-color:var(--c-primary)}
.btn-outline:hover{background:var(--c-primary);color:#fff}
.btn-white{background:#fff;color:var(--c-primary);border-color:#fff}
.btn-white:hover{background:var(--c-primary-light)}
.btn-outline-white{background:transparent;color:#fff;border-color:#fff}
.btn-outline-white:hover{background:rgba(255,255,255,.15)}
.btn-lg{padding:.85rem 2rem;font-size:1.05rem}
.btn-sm{padding:.4rem 1rem;font-size:.85rem}
.btn-whatsapp{background:#25D366;color:#fff;border-color:#25D366}
.btn-whatsapp:hover{background:#1da851}
.btn-danger{background:#ef4444;color:#fff;border-color:#ef4444}
.btn-danger:hover{background:#dc2626}
.btn:disabled,.btn[disabled]{opacity:.45;cursor:not-allowed;pointer-events:none}

/* Hero */
.hero{position:relative;background:linear-gradient(135deg,#0d6e6e 0%,#0a5858 50%,#064e4e 100%);color:#fff;padding:5rem 0 4rem;overflow:hidden}
.hero::before{content:'';position:absolute;top:-50%;right:-20%;width:600px;height:600px;background:radial-gradient(circle,rgba(255,255,255,.05) 0%,transparent 70%);border-radius:50%}
.hero-content{position:relative;max-width:700px}
.hero-badge{display:inline-block;background:rgba(255,255,255,.15);padding:.3rem 1rem;border-radius:20px;font-size:.85rem;margin-bottom:1.5rem}
.hero h1{font-family:'Playfair Display',serif;font-size:3rem;line-height:1.15;margin-bottom:1rem}
.text-accent{color:#5eead4}
.hero-desc{font-size:1.1rem;opacity:.9;margin-bottom:2rem;max-width:550px}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap}
.hero-trust{display:flex;gap:2rem;margin-top:2.5rem;flex-wrap:wrap}
.trust-item{display:flex;align-items:center;gap:.5rem;font-size:.9rem;opacity:.85}

/* Sections */
.section{padding:4rem 0}
.section-light{background:var(--c-white)}
.section-accent{background:linear-gradient(135deg,var(--c-primary),var(--c-primary-dark));color:#fff}
.section-header{text-align:center;max-width:600px;margin:0 auto 3rem}
.section-tag{display:inline-block;color:var(--c-primary);font-weight:600;font-size:.85rem;text-transform:uppercase;letter-spacing:.05em;margin-bottom:.5rem}
.section-accent .section-tag{color:#5eead4}
.section-header h2{font-family:'Playfair Display',serif;font-size:2rem;margin-bottom:.5rem}
.section-accent .section-header h2{color:#fff}
.section-header p{color:var(--c-muted);font-size:1.05rem}
.section-action{text-align:center;margin-top:2.5rem}

/* Services Grid */
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.service-card{background:var(--c-white);border-radius:var(--radius);padding:2rem;box-shadow:var(--shadow);transition:transform .2s,box-shadow .2s;border:1px solid var(--c-border)}
.service-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.service-icon{width:56px;height:56px;border-radius:12px;background:var(--c-primary-light);display:flex;align-items:center;justify-content:center;margin-bottom:1rem;color:var(--c-primary)}
.service-card h3{font-size:1.1rem;margin-bottom:.5rem}
.service-card p{color:var(--c-muted);font-size:.9rem}

/* CTA Box */
.cta-box{display:flex;align-items:center;justify-content:space-between;gap:3rem;flex-wrap:wrap}
.cta-content{flex:1;min-width:300px}
.cta-content h2{font-family:'Playfair Display',serif;font-size:2rem;margin-bottom:.75rem}
.cta-content p{opacity:.9;margin-bottom:1.5rem}
.cta-steps{display:flex;gap:2rem;flex-wrap:wrap}
.cta-step{display:flex;align-items:center;gap:.5rem}
.step-num{width:32px;height:32px;border-radius:50%;background:rgba(255,255,255,.2);display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.9rem}

/* Team */
.team-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:1.5rem}
.team-card{background:var(--c-white);border-radius:var(--radius);padding:2rem;text-align:center;box-shadow:var(--shadow);border:1px solid var(--c-border)}
.team-avatar{width:80px;height:80px;border-radius:50%;margin:0 auto 1rem;overflow:hidden;background:var(--c-primary-light)}
.team-avatar img{width:100%;height:100%;object-fit:cover}
.avatar-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:1.8rem;font-weight:700;color:var(--c-primary)}
.team-role{color:var(--c-muted);font-size:.9rem;margin-bottom:1rem}
.team-contact{display:flex;gap:.5rem;justify-content:center;flex-wrap:wrap}
.team-btn{display:inline-flex;align-items:center;gap:.3rem;padding:.4rem .8rem;border-radius:var(--radius-sm);font-size:.8rem;font-weight:500;background:var(--c-primary-light);color:var(--c-primary);transition:all .2s}
.team-btn:hover{background:var(--c-primary);color:#fff}
.team-btn-wa{background:#dcfce7;color:#16a34a}
.team-btn-wa:hover{background:#25D366;color:#fff}

/* Prevention */
.prevention-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.prevention-card{background:var(--c-white);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);border:1px solid var(--c-border);transition:transform .2s}
.prevention-card:hover{transform:translateY(-4px)}
.prevention-img{height:160px;display:flex;align-items:center;justify-content:center}
.prevention-body{padding:1.5rem}
.prevention-tag{font-size:.75rem;font-weight:600;color:var(--c-primary);text-transform:uppercase}
.prevention-body h3{font-size:1rem;margin:.4rem 0}
.prevention-body p{font-size:.9rem;color:var(--c-muted)}

/* Page Header */
.page-header{background:linear-gradient(135deg,var(--c-primary),var(--c-primary-dark));color:#fff;padding:3rem 0 2rem}
.page-header h1{font-family:'Playfair Display',serif;font-size:2.2rem;margin-bottom:.5rem}
.page-header p{opacity:.85;max-width:600px}
.breadcrumb{font-size:.85rem;margin-bottom:1rem;opacity:.7}
.breadcrumb a{color:#fff}
.breadcrumb span{margin:0 .3rem}

/* Forms */
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-group{margin-bottom:1rem}
.form-label{display:block;font-weight:600;font-size:.9rem;margin-bottom:.3rem;color:var(--c-text)}
.form-label small{font-weight:400;color:var(--c-muted)}
.form-input,.form-select{width:100%;padding:.7rem 1rem;border:2px solid var(--c-border);border-radius:var(--radius-sm);font-size:.95rem;font-family:inherit;transition:border-color .2s;background:var(--c-white)}
.form-input:focus,.form-select:focus{outline:none;border-color:var(--c-primary)}
textarea.form-input{resize:vertical}
.consent-label{display:flex;gap:.5rem;align-items:flex-start;font-size:.9rem;font-weight:400}
.consent-label input{margin-top:.25rem}

/* Booking */
.booking-progress{display:flex;align-items:center;justify-content:center;gap:0;margin-bottom:3rem}
.progress-step{display:flex;flex-direction:column;align-items:center;gap:.3rem;position:relative}
.progress-step span{font-size:.75rem;color:var(--c-muted);white-space:nowrap}
.progress-circle{width:36px;height:36px;border-radius:50%;background:var(--c-border);display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.9rem;color:var(--c-muted);transition:all .3s}
.progress-step.active .progress-circle{background:var(--c-primary);color:#fff}
.progress-step.done .progress-circle{background:#10b981;color:#fff}
.progress-line{flex:1;height:2px;background:var(--c-border);max-width:80px;margin:0 .5rem}
.booking-step{max-width:700px;margin:0 auto}
.booking-step h2{font-size:1.5rem;margin-bottom:.25rem}
.step-desc{color:var(--c-muted);margin-bottom:1.5rem}
.booking-nav{display:flex;justify-content:space-between;margin-top:2rem}
.care-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:.75rem}
.care-option{cursor:pointer}
.care-option input{position:absolute;opacity:0}
.care-label{display:block;padding:.8rem 1rem;border:2px solid var(--c-border);border-radius:var(--radius-sm);text-align:center;font-weight:500;font-size:.9rem;transition:all .2s}
.care-option input:checked+.care-label{border-color:var(--c-primary);background:var(--c-primary-light);color:var(--c-primary)}
.care-option:hover .care-label{border-color:var(--c-primary)}
.datetime-grid{display:grid;grid-template-columns:1fr 1fr;gap:2rem}
.time-slots{display:flex;flex-wrap:wrap;gap:.5rem;min-height:60px}
.slots-placeholder{color:var(--c-muted);font-size:.9rem}
.time-slot{padding:.5rem 1rem;border:2px solid var(--c-border);border-radius:var(--radius-sm);cursor:pointer;font-weight:500;font-size:.9rem;transition:all .2s;background:var(--c-white)}
.time-slot:hover,.time-slot.selected{border-color:var(--c-primary);background:var(--c-primary);color:#fff}
.confirmation-box{text-align:center;padding:2rem}
.confirmation-icon{margin-bottom:1rem}
.confirmation-details{background:var(--c-bg);border-radius:var(--radius);padding:1.5rem;margin:1.5rem auto;max-width:400px;text-align:left}
.confirmation-details p{margin:.3rem 0;font-size:.95rem}
.confirmation-actions{display:flex;gap:1rem;justify-content:center;margin-top:1.5rem}
.alert{padding:1rem;border-radius:var(--radius-sm);margin-top:1rem}
.alert-error{background:#fef2f2;color:#dc2626;border:1px solid #fecaca}
.alert-success{background:#f0fdf4;color:#16a34a;border:1px solid #bbf7d0}

/* Contact */
.contact-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:3rem}
.contact-card{display:flex;gap:1rem;padding:1rem;border-radius:var(--radius-sm);background:var(--c-white);border:1px solid var(--c-border);margin-bottom:.75rem}
.contact-card-icon{width:44px;height:44px;border-radius:10px;background:var(--c-primary-light);display:flex;align-items:center;justify-content:center;color:var(--c-primary);flex-shrink:0}
.contact-card h3{font-size:.95rem;margin-bottom:.15rem}
.contact-card p{font-size:.9rem;color:var(--c-muted)}
.contact-form-wrap{background:var(--c-white);border-radius:var(--radius);padding:2rem;box-shadow:var(--shadow);border:1px solid var(--c-border)}
.contact-form-wrap h2{font-size:1.3rem;margin-bottom:1.5rem}

/* Modules */
.modules-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.module-card{background:var(--c-white);border-radius:var(--radius);padding:2rem;box-shadow:var(--shadow);border:1px solid var(--c-border)}
.module-icon{width:64px;height:64px;border-radius:16px;display:flex;align-items:center;justify-content:center;margin-bottom:1rem}
.module-card h3{font-size:1.1rem;margin-bottom:.5rem}
.module-card>p{font-size:.9rem;color:var(--c-muted);margin-bottom:1rem}
.module-steps{display:flex;flex-direction:column;gap:.4rem}
.module-step{display:flex;align-items:center;gap:.6rem;font-size:.85rem}
.step-badge{width:22px;height:22px;border-radius:50%;background:var(--c-primary-light);color:var(--c-primary);display:flex;align-items:center;justify-content:center;font-size:.7rem;font-weight:700;flex-shrink:0}

/* Tips */
.tips-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.tip-card{background:var(--c-white);border-radius:var(--radius);padding:2rem;box-shadow:var(--shadow);border:1px solid var(--c-border)}
.tip-number{font-family:'Playfair Display',serif;font-size:2rem;color:var(--c-primary);opacity:.3;margin-bottom:.5rem}
.tip-card h3{font-size:1rem;margin-bottom:.5rem}
.tip-card p{font-size:.9rem;color:var(--c-muted)}

/* Video Grid */
.video-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2rem}
.video-card{background:var(--c-white);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);border:1px solid var(--c-border);transition:transform .2s,box-shadow .2s}
.video-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.video-link{display:block;text-decoration:none;color:inherit}
.video-embed{position:relative;overflow:hidden;background:#000}
.video-embed img{width:100%;height:auto;display:block}
.video-play-btn{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:64px;height:64px;background:rgba(255,0,0,.85);border-radius:14px;display:flex;align-items:center;justify-content:center;font-size:1.5rem;color:#fff;transition:transform .2s;padding-left:4px;z-index:1}
.video-link:hover .video-play-btn{transform:translate(-50%,-50%) scale(1.1)}
.video-body{padding:1.25rem 1.5rem}
.video-tag{display:inline-block;padding:.2rem .7rem;border-radius:12px;font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.03em;margin-bottom:.5rem}
.video-tag-hygiene{background:#dbeafe;color:#1e40af}
.video-tag-diabete{background:#fef3c7;color:#92400e}
.video-tag-senior{background:#d1fae5;color:#065f46}
.video-tag-urgence{background:#fee2e2;color:#991b1b}
.video-tag-cardio{background:#fce7f3;color:#9d174d}
.video-tag-vaccin{background:#ede9fe;color:#5b21b6}
.video-body h3{font-size:1.05rem;margin-bottom:.4rem}
.video-body p{font-size:.88rem;color:var(--c-muted);line-height:1.5}

/* Pillar Grid */
.pillar-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.pillar-card{background:var(--c-white);border-radius:var(--radius);padding:2rem;box-shadow:var(--shadow);border:1px solid var(--c-border);display:flex;flex-direction:column;align-items:center;text-align:center;transition:transform .2s,box-shadow .2s}
.pillar-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.pillar-illustration{margin-bottom:1rem}

/* Pillar Card content (no wrapper div) */
.pillar-card h3{font-size:1.1rem;margin-bottom:.3rem}
.pillar-stat{font-family:'Playfair Display',serif;font-size:1.8rem;color:var(--c-primary);font-weight:700;margin-bottom:.5rem}
.pillar-stat small{font-size:.85rem;font-weight:400;color:var(--c-muted)}
.pillar-card>p{font-size:.88rem;color:var(--c-muted);line-height:1.5}

/* Tutorial Cards */
.tuto-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.tuto-card{background:var(--c-white);border-radius:var(--radius);padding:1.75rem;box-shadow:var(--shadow);border:1px solid var(--c-border)}
.tuto-header{display:flex;align-items:center;gap:1rem;margin-bottom:1.25rem}
.tuto-icon{width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.tuto-header h3{font-size:1.05rem;margin-bottom:.1rem}
.tuto-meta{font-size:.78rem;color:var(--c-muted)}
.tuto-steps{list-style:none;counter-reset:tuto;padding:0;margin:0}
.tuto-steps li{counter-increment:tuto;display:flex;align-items:center;gap:.75rem;padding:.55rem 0;border-bottom:1px solid var(--c-border);font-size:.88rem}
.tuto-steps li:last-child{border-bottom:none}
.tuto-steps li::before{content:counter(tuto);width:24px;height:24px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.75rem;font-weight:700;flex-shrink:0}
.tuto-steps li strong{font-weight:600}
.tuto-blue .tuto-icon{background:#dbeafe;color:#1e40af}
.tuto-blue .tuto-steps li::before{background:#dbeafe;color:#1e40af}
.tuto-amber .tuto-icon{background:#fef3c7;color:#92400e}
.tuto-amber .tuto-steps li::before{background:#fef3c7;color:#92400e}
.tuto-green .tuto-icon{background:#d1fae5;color:#065f46}
.tuto-green .tuto-steps li::before{background:#d1fae5;color:#065f46}
.tuto-alert{display:flex;align-items:center;gap:.5rem;margin-top:1rem;padding:.6rem 1rem;background:#fef2f2;border-radius:var(--radius-sm);font-size:.82rem;color:#dc2626;font-weight:500;border:1px solid #fecaca}
.tuto-fact{margin-top:1rem;padding:.6rem 1rem;background:#f0fdf4;border-radius:var(--radius-sm);font-size:.82rem;color:#065f46;border:1px solid #bbf7d0;line-height:1.5}

/* Articles */
.category-filter{display:flex;gap:.5rem;flex-wrap:wrap;margin-bottom:2rem;justify-content:center}
.filter-btn{padding:.4rem 1rem;border:2px solid var(--c-border);border-radius:20px;background:var(--c-white);font-size:.85rem;cursor:pointer;transition:all .2s}
.filter-btn.active,.filter-btn:hover{border-color:var(--c-primary);background:var(--c-primary);color:#fff}
.articles-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.article-card{background:var(--c-white);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);border:1px solid var(--c-border)}
.article-img{height:180px;overflow:hidden}
.article-img img{width:100%;height:100%;object-fit:cover}
.article-body{padding:1.5rem}
.article-tag{font-size:.75rem;font-weight:600;color:var(--c-primary);text-transform:uppercase}
.article-body h3{font-size:1rem;margin:.4rem 0}
.article-body p{font-size:.9rem;color:var(--c-muted);margin-bottom:.75rem}
.article-link{font-size:.9rem;font-weight:600}

/* Info Grid */
.info-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.info-card{text-align:center;padding:2rem}
.info-card svg{margin:0 auto 1rem;color:var(--c-primary)}
.info-card h3{font-size:1rem;margin-bottom:.3rem}
.info-card p{font-size:.9rem;color:var(--c-muted)}

/* Legal */
.legal-content{max-width:800px}
.legal-content h2{font-size:1.4rem;margin:2.5rem 0 .75rem;color:var(--c-primary)}
.legal-content h3{font-size:1.1rem;margin:1.5rem 0 .5rem}
.legal-content p,.legal-content li{font-size:.95rem;color:var(--c-muted);margin-bottom:.5rem}
.legal-content ul{padding-left:1.5rem;margin-bottom:1rem}
.legal-update{margin-top:3rem;font-style:italic;font-size:.85rem}

/* Footer */
.footer{background:#1e293b;color:#cbd5e1;padding:3rem 0 0}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:2rem;margin-bottom:2rem}
.footer-logo{display:flex;align-items:center;gap:.5rem;margin-bottom:.75rem}
.footer-logo .logo-icon{font-size:1.5rem}
.footer-logo .logo-name{color:#fff;font-weight:700}
.footer-desc{font-size:.9rem;opacity:.7}
.footer-col h3{color:#fff;font-size:.95rem;margin-bottom:.75rem}
.footer-col ul{list-style:none}
.footer-col li{display:flex;align-items:center;gap:.5rem;font-size:.9rem;margin-bottom:.4rem}
.footer-col a{color:#cbd5e1;transition:color .2s}
.footer-col a:hover{color:#fff}
.footer-social{display:flex;gap:.5rem;margin-top:.75rem}
.social-btn{width:36px;height:36px;border-radius:8px;background:rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;color:#cbd5e1;transition:all .2s}
.social-btn:hover{background:var(--c-primary);color:#fff}
.social-btn.whatsapp:hover{background:#25D366}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding:1.5rem 0;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem}
.footer-bottom p{font-size:.85rem;opacity:.6}
.footer-links{display:flex;gap:1.5rem}
.footer-links a{font-size:.85rem;opacity:.6;color:#cbd5e1}
.footer-links a:hover{opacity:1}

/* WhatsApp FAB */
.whatsapp-fab{position:fixed;bottom:1.5rem;right:1.5rem;width:56px;height:56px;border-radius:50%;background:#25D366;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 16px rgba(37,211,102,.4);z-index:90;transition:transform .2s}
.whatsapp-fab:hover{transform:scale(1.1)}

/* Responsive */
@media(max-width:1024px){
.services-grid,.prevention-grid,.modules-grid,.tips-grid,.articles-grid,.info-grid,.pillar-grid,.tuto-grid{grid-template-columns:repeat(2,1fr)}
.video-grid{grid-template-columns:repeat(2,1fr)}
.footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
.topbar-hide-mobile{display:none}
.hamburger{display:flex}
.nav{position:fixed;top:0;right:-100%;width:280px;height:100vh;background:var(--c-white);box-shadow:var(--shadow-lg);transition:right .3s;padding:4rem 1.5rem 2rem;z-index:200}
.nav.open{right:0}
.nav-list{flex-direction:column;gap:.25rem}
.nav-link{padding:.75rem 1rem;width:100%}
.hero h1{font-size:2rem}
.hero{padding:3rem 0}
.services-grid,.prevention-grid,.modules-grid,.tips-grid,.articles-grid,.info-grid,.pillar-grid,.tuto-grid{grid-template-columns:1fr}
.video-grid{grid-template-columns:1fr}
.form-grid{grid-template-columns:1fr}
.contact-grid{grid-template-columns:1fr}
.datetime-grid{grid-template-columns:1fr}
.footer-grid{grid-template-columns:1fr}
.cta-box{flex-direction:column;text-align:center}
.booking-progress{flex-wrap:wrap;gap:.5rem}
.progress-line{display:none}
.care-grid{grid-template-columns:1fr 1fr}
}
