/* ============================================
   COMPRO COCHES — Master Stylesheet v3
   Ultra-professional · Marquee reviews · Blog
   ============================================ */

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #eff6ff;
  --primary-50: rgba(37,99,235,0.06);
  --gradient: linear-gradient(135deg, #2563eb 0%, #4f46e5 50%, #7c3aed 100%);
  --gradient-dark: linear-gradient(135deg, #1d4ed8 0%, #4338ca 50%, #6d28d9 100%);
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --text: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-dark: #0f172a;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --success: #2563eb;
  --whatsapp: #25D366;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition: 0.2s cubic-bezier(0.4,0,0.2,1);
  --max-w: 1100px;
}

/* RESET */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;font-size:16px;-webkit-text-size-adjust:100%}
body{font-family:Inter,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;color:var(--text);background:var(--bg);line-height:1.6;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overflow-x:hidden;letter-spacing:-0.01em}
img,svg{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
button{font-family:inherit;cursor:pointer}
.container{max-width:var(--max-w);margin:0 auto;padding:0 24px}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}

/* ============ NAVBAR (2-row) ============ */
.navbar{
  position:sticky;top:0;z-index:100;
  background:#fff;border-bottom:1px solid var(--border);
}
.navbar-top{
  display:flex;align-items:center;justify-content:space-between;
  max-width:var(--max-w);margin:0 auto;padding:6px 16px;
  font-size:.72rem;color:var(--text-muted);border-bottom:1px solid var(--border-light);
}
.navbar-hours{display:none}
.navbar-phone{font-weight:600;color:var(--primary)}
.navbar-main{
  display:flex;align-items:center;justify-content:space-between;
  max-width:var(--max-w);margin:0 auto;padding:0 16px;height:52px;
}
.navbar-brand{
  font-size:.95rem;font-weight:700;color:var(--text);white-space:nowrap;
}
.navbar-brand em{font-style:normal;color:var(--primary);font-weight:800}
.navbar-links{display:none;list-style:none;gap:18px}
.navbar-links a{font-size:.8rem;font-weight:500;color:var(--text-secondary);transition:color var(--transition)}
.navbar-links a:hover{color:var(--primary)}
.navbar-btn{
  padding:8px 18px;background:var(--gradient);color:white;
  border-radius:8px;font-size:.78rem;font-weight:700;
  transition:all var(--transition);white-space:nowrap;
}
.navbar-btn:hover{transform:translateY(-1px);box-shadow:0 4px 12px rgba(37,99,235,.2)}

@media(min-width:480px){.navbar-hours{display:block}}
@media(min-width:640px){.navbar-links{display:flex}.navbar-main{height:56px;padding:0 24px}.navbar-top{padding:6px 24px}.navbar-brand{font-size:1.05rem}}

/* ============ HERO ============ */
.banner{
  background:var(--gradient);
  color:white;padding:44px 16px 80px;text-align:center;position:relative;overflow:hidden;
}
.banner::after{
  content:'';position:absolute;bottom:0;left:0;right:0;height:48px;
  background:var(--bg);border-radius:24px 24px 0 0;
}
.banner-content{position:relative;z-index:1;max-width:640px;margin:0 auto}
.banner-tag{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,255,255,0.1);border:1px solid rgba(255,255,255,0.15);
  backdrop-filter:blur(8px);padding:7px 14px;border-radius:var(--radius-full);
  font-size:0.72rem;font-weight:600;margin-bottom:20px;
}
.banner-tag .dot{width:7px;height:7px;background:#60a5fa;border-radius:50%;animation:blink 2s infinite}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.4}}

.banner h1{font-size:1.8rem;font-weight:900;line-height:1.12;margin-bottom:14px;letter-spacing:-.5px}
.banner h1 .highlight{color:rgba(255,255,255,.85);display:block;margin-top:4px;font-weight:700}
.banner-desc{font-size:.92rem;opacity:.9;margin-bottom:24px;line-height:1.55;padding:0 8px}
.banner-chips{display:flex;flex-wrap:wrap;justify-content:center;gap:8px}
.chip{
  display:flex;align-items:center;gap:5px;
  background:rgba(255,255,255,0.1);border:1px solid rgba(255,255,255,0.1);
  padding:7px 12px;border-radius:var(--radius-full);font-size:0.75rem;font-weight:600;
}
.chip svg{width:14px;height:14px;stroke:rgba(255,255,255,.9);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

@media(min-width:480px){.banner h1{font-size:2.2rem}.banner-desc{font-size:1rem}}
@media(min-width:640px){.banner h1{font-size:2.8rem}.banner{padding:64px 24px 96px}.banner::after{height:60px;border-radius:32px 32px 0 0}.banner-tag{font-size:.8rem;padding:8px 18px}.chip{padding:8px 16px;font-size:.82rem}}
@media(min-width:768px){.banner h1{font-size:3.2rem}}

/* ============ FORM ============ */
.contact-box{margin-top:-48px;padding:0 12px;position:relative;z-index:10}
.contact-panel{
  background:var(--bg);max-width:520px;margin:0 auto;
  border-radius:var(--radius-lg);box-shadow:var(--shadow-xl);
  border:1px solid var(--border-light);overflow:hidden;
}
.contact-header{padding:20px 16px 14px;border-bottom:1px solid var(--border-light)}
.contact-header h2{font-size:1.05rem;font-weight:800;margin-bottom:2px}
.contact-header p{font-size:0.82rem;color:var(--text-muted)}
.contact-body{padding:16px 16px 20px}
@media(min-width:480px){.contact-box{padding:0 24px;margin-top:-56px}.contact-header{padding:24px 24px 16px}.contact-header h2{font-size:1.15rem}.contact-body{padding:20px 24px 24px}}
.fg{margin-bottom:14px}
.fg label{display:block;font-size:0.8rem;font-weight:700;color:var(--text);margin-bottom:4px;letter-spacing:.01em}
.fg .req{color:#ef4444;margin-left:2px}
.fi{
  width:100%;padding:12px 14px;border:1.5px solid var(--border);border-radius:var(--radius-sm);
  font-size:0.92rem;font-family:inherit;color:var(--text);background:var(--bg);
  transition:all var(--transition);min-height:48px;
}
.fi:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 3px var(--primary-50)}
.fi::placeholder{color:var(--text-muted)}
textarea.fi{resize:vertical;min-height:64px}
.fi-file{position:absolute;opacity:0;width:100%;height:100%;top:0;left:0;cursor:pointer;z-index:2;min-height:100%}
.fi-help{font-size:0.72rem;color:var(--text-muted);margin-top:3px}
.upload-zone{
  position:relative;border:2px dashed var(--border);border-radius:var(--radius-sm);
  padding:20px 16px;text-align:center;cursor:pointer;transition:all var(--transition);
  background:var(--bg-alt);
}
.upload-zone:hover,.upload-zone.dragover{border-color:var(--primary);background:var(--primary-50)}
.upload-zone-icon{margin:0 auto 8px;width:40px;height:40px;background:var(--primary-light);border-radius:50%;display:flex;align-items:center;justify-content:center}
.upload-zone-icon svg{width:20px;height:20px;stroke:var(--primary);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.upload-zone-text{font-size:.82rem;font-weight:600;color:var(--text);margin-bottom:2px}
.upload-zone-hint{font-size:.72rem;color:var(--text-muted)}
.upload-zone-benefits{font-size:.7rem;color:var(--success);font-weight:600;margin-top:8px;display:flex;align-items:center;justify-content:center;gap:4px}
.upload-zone-benefits svg{width:12px;height:12px;stroke:var(--success);fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}
.contact-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
@media(max-width:480px){.contact-row{grid-template-columns:1fr}}

.btn-send{
  width:100%;padding:15px 20px;background:var(--gradient);color:white;
  border:none;border-radius:var(--radius-sm);font-size:1rem;font-weight:800;
  text-transform:uppercase;letter-spacing:.04em;min-height:52px;
  display:flex;align-items:center;justify-content:center;gap:10px;
  transition:all var(--transition);margin-top:6px;
  box-shadow:0 4px 14px rgba(37,99,235,.25);
}
.btn-send:hover{filter:brightness(1.05);transform:translateY(-1px);box-shadow:0 6px 20px rgba(37,99,235,.35)}
.btn-send:active{transform:translateY(0)}
.btn-send svg{width:20px;height:20px;stroke:white;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.contact-social{font-size:.75rem;font-weight:600;background:var(--gradient);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;text-align:center;margin-top:10px;line-height:1.4}
.contact-legal{font-size:.7rem;color:var(--text-muted);text-align:center;margin-top:6px;line-height:1.5}
.contact-legal a{text-decoration:underline}

.contact-meta{
  display:flex;align-items:center;justify-content:center;gap:20px;
  padding:14px 24px;border-top:1px solid var(--border-light);background:var(--bg-alt);
}
.contact-meta-item{display:flex;align-items:center;gap:5px;font-size:.73rem;font-weight:600;color:var(--text-secondary)}
.contact-meta-item svg{width:13px;height:13px;stroke:var(--success);fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}
@media(max-width:480px){.contact-meta{flex-direction:column;gap:8px}}

/* Success */
.contact-done{display:none;text-align:center;padding:40px 24px}
.contact-done.active{display:block}
.contact-done-icon{width:60px;height:60px;margin:0 auto 16px;background:#eff6ff;border-radius:50%;display:flex;align-items:center;justify-content:center}
.contact-done-icon svg{width:28px;height:28px;stroke:var(--success);fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}
.contact-done h3{font-size:1.1rem;font-weight:800;color:var(--success);margin-bottom:6px}
.contact-done p{color:var(--text-secondary);font-size:.9rem}

/* ============ MARQUEE REVIEWS ============ */
.reviews-strip{padding:40px 0;overflow:hidden;background:var(--bg)}
.reviews-header{
  text-align:center;margin-bottom:20px;
  display:flex;align-items:center;justify-content:center;gap:12px;
}
.reviews-header .g-icon{display:flex;align-items:center;gap:6px}
.reviews-header .g-icon svg{width:20px;height:20px}
.reviews-header .g-score{font-size:1.1rem;font-weight:800;color:var(--text)}
.reviews-header .g-stars{display:flex;gap:1px}
.reviews-header .g-stars svg{width:16px;height:16px;fill:#facc15;stroke:none}
.reviews-header .g-count{font-size:.82rem;color:var(--text-muted);font-weight:500}

.reviews-scroll{
  display:flex;gap:16px;
  animation:scroll-marquee 35s linear infinite;
  width:max-content;
}
.reviews-scroll:hover{animation-play-state:paused}

@keyframes scroll-marquee{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}

.rv-card{
  flex-shrink:0;width:320px;
  background:var(--bg);border:1px solid var(--border);
  border-radius:var(--radius);padding:20px;
  transition:box-shadow var(--transition);
}
.rv-card:hover{box-shadow:var(--shadow)}
.rv-card-top{display:flex;align-items:center;gap:12px;margin-bottom:12px}
.rv-avatar{
  width:40px;height:40px;min-width:40px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:.85rem;font-weight:800;color:white;
}
.rv-avatar.av1{background:#3b82f6}.rv-avatar.av2{background:#8b5cf6}
.rv-avatar.av3{background:#ef4444}.rv-avatar.av4{background:#f59e0b}
.rv-avatar.av5{background:#10b981}.rv-avatar.av6{background:#ec4899}
.rv-avatar.av7{background:#6366f1}.rv-avatar.av8{background:#14b8a6}
.rv-name{font-size:.88rem;font-weight:700;line-height:1.2}
.rv-loc{font-size:.75rem;color:var(--text-muted)}
.rv-stars{display:flex;gap:1px;margin-left:auto}
.rv-stars svg{width:14px;height:14px;fill:#facc15;stroke:none}
.rv-text{font-size:.86rem;color:var(--text-secondary);line-height:1.55}
.rv-footer{display:flex;align-items:center;justify-content:space-between;margin-top:12px}
.rv-date{font-size:.72rem;color:var(--text-muted)}
.rv-verified{display:flex;align-items:center;gap:4px;font-size:.72rem;color:var(--success);font-weight:600}
.rv-verified svg{width:12px;height:12px;stroke:var(--success);fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}

/* ============ STATS ============ */
.stats{padding:36px 16px}
.stats-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;max-width:600px;margin:0 auto;text-align:center}
.stat-num{font-size:1.6rem;font-weight:900;background:var(--gradient);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;line-height:1}
.stat-lbl{font-size:.72rem;color:var(--text-muted);margin-top:4px;font-weight:500}
@media(min-width:480px){.stat-num{font-size:2rem}.stat-lbl{font-size:.8rem}.stats{padding:48px 24px}}
@media(min-width:768px){.stat-num{font-size:2.5rem}}

/* ============ TRUST GRID ============ */
.benefits{padding:40px 16px;background:var(--bg-alt)}
@media(min-width:480px){.benefits{padding:48px 24px}}
.benefits-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;max-width:800px;margin:0 auto}
.bf{
  background:var(--bg);padding:20px;border-radius:var(--radius);
  border:1px solid var(--border);display:flex;gap:14px;align-items:flex-start;
  transition:all var(--transition);
}
.bf:hover{box-shadow:var(--shadow);border-color:transparent}
.bf-icon{
  width:44px;height:44px;min-width:44px;background:var(--primary-light);
  border-radius:var(--radius-sm);display:flex;align-items:center;justify-content:center;
}
.bf-icon svg{width:22px;height:22px;stroke:var(--primary);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.bf:nth-child(2) .bf-icon{background:#eef2ff}
.bf:nth-child(2) .bf-icon svg{stroke:#4f46e5}
.bf:nth-child(3) .bf-icon{background:#f5f3ff}
.bf:nth-child(3) .bf-icon svg{stroke:#7c3aed}
.bf:nth-child(4) .bf-icon{background:#faf5ff}
.bf:nth-child(4) .bf-icon svg{stroke:#9333ea}
.bf h3{font-size:.88rem;font-weight:700;margin-bottom:2px}
.bf p{font-size:.8rem;color:var(--text-muted);line-height:1.45}
@media(max-width:480px){.benefits-grid{grid-template-columns:1fr}}

/* ============ SECTION HEADERS ============ */
.sh{text-align:center;margin-bottom:28px;padding:0 8px}
.sh-tag{
  display:inline-block;background:var(--primary-light);color:var(--primary);
  padding:4px 12px;border-radius:var(--radius-full);font-size:.7rem;
  font-weight:700;text-transform:uppercase;letter-spacing:.06em;margin-bottom:10px;
}
.sh-title{font-size:1.25rem;font-weight:900;letter-spacing:-.3px;line-height:1.2}
.sh-sub{color:var(--text-muted);font-size:.82rem;margin-top:6px;max-width:480px;margin-left:auto;margin-right:auto}
@media(min-width:480px){.sh{margin-bottom:36px}.sh-title{font-size:1.5rem}.sh-tag{font-size:.75rem;padding:5px 14px}.sh-sub{font-size:.9rem}}
@media(min-width:768px){.sh-title{font-size:1.8rem}}

/* ============ GALLERY ============ */
.photos{padding:56px 24px}
.photos-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;max-width:900px;margin:0 auto}
.gal-card{
  border-radius:var(--radius);overflow:hidden;border:1px solid var(--border);
  transition:all var(--transition);background:var(--bg);
}
.gal-card:hover{box-shadow:var(--shadow);transform:translateY(-2px)}
.gal-img{
  aspect-ratio:4/3;background:var(--bg-alt);
  display:flex;align-items:center;justify-content:center;overflow:hidden;
}
.gal-img img{width:100%;height:100%;object-fit:cover}
.gal-img svg{width:32px;height:32px;stroke:var(--text-muted);fill:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;opacity:.3}
.gal-info{padding:10px 14px;display:flex;justify-content:space-between;align-items:center}
.gal-model{font-size:.82rem;font-weight:700;color:var(--text)}
.gal-loc{font-size:.72rem;color:var(--text-muted)}
@media(min-width:640px){.photos-grid{grid-template-columns:repeat(3,1fr)}}

/* ============ HOW IT WORKS ============ */
.process{padding:40px 16px}
@media(min-width:480px){.process{padding:56px 24px}}
.timeline{display:grid;gap:24px;max-width:720px;margin:0 auto}
.tl-item{display:flex;gap:18px}
.tl-indicator{display:flex;flex-direction:column;align-items:center}
.tl-num{
  width:48px;height:48px;min-width:48px;background:var(--gradient);color:white;
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-size:1.1rem;font-weight:800;box-shadow:0 3px 10px rgba(37,99,235,.2);
}
.tl-line{width:2px;flex:1;background:var(--border);margin-top:8px}
.tl-item:last-child .tl-line{display:none}
.tl-content{padding-top:10px}
.tl-content h3{font-size:1rem;font-weight:700;margin-bottom:4px}
.tl-content p{font-size:.88rem;color:var(--text-secondary);line-height:1.6}

/* ============ VEHICLES ============ */
.types{padding:40px 16px;background:var(--bg-alt)}
@media(min-width:480px){.types{padding:56px 24px}}
.types-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;max-width:800px;margin:0 auto}
.type-card{
  background:var(--bg);padding:24px 18px;border-radius:var(--radius);
  border:1px solid var(--border);text-align:center;transition:all var(--transition);
}
.type-card:hover{box-shadow:var(--shadow);transform:translateY(-2px)}
.type-icon{
  width:48px;height:48px;margin:0 auto 12px;background:var(--primary-50);
  border-radius:var(--radius);display:flex;align-items:center;justify-content:center;
}
.type-icon svg{width:24px;height:24px;stroke:var(--primary);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.type-card h3{font-size:.88rem;font-weight:700;margin-bottom:2px}
.type-card p{font-size:.78rem;color:var(--text-muted)}
@media(min-width:640px){.types-grid{grid-template-columns:repeat(4,1fr)}}

/* ============ BLOG ============ */
.blog{padding:56px 24px}
.blog-grid{display:grid;gap:16px;max-width:1000px;margin:0 auto;grid-template-columns:1fr}
.bc{
  background:var(--bg);border:1px solid var(--border);border-radius:var(--radius);
  overflow:hidden;display:flex;transition:all var(--transition);
}
.bc:hover{box-shadow:var(--shadow);border-color:transparent}
.bc-img{
  width:100px;min-width:100px;background:var(--primary-light);
  display:flex;align-items:center;justify-content:center;
}
.bc-img svg{width:28px;height:28px;stroke:var(--primary);fill:none;opacity:.5;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
.bc-body{padding:14px 16px;flex:1}
.bc-tag{font-size:.68rem;font-weight:700;color:var(--primary);text-transform:uppercase;letter-spacing:.05em;margin-bottom:4px}
.bc-title{font-size:.9rem;font-weight:700;line-height:1.35;margin-bottom:4px}
.bc-excerpt{font-size:.78rem;color:var(--text-muted);line-height:1.5}
@media(min-width:540px){.blog-grid{grid-template-columns:1fr 1fr}}
@media(min-width:800px){.blog-grid{grid-template-columns:1fr 1fr 1fr}}
@media(max-width:480px){.bc{flex-direction:column}.bc-img{width:100%;min-width:100%;height:56px}}

/* ============ SEO CONTENT ============ */
.content{padding:40px 16px}
@media(min-width:480px){.content{padding:56px 24px}}
.content-inner{max-width:740px;margin:0 auto}
.content-inner h2{font-size:1.3rem;font-weight:800;margin-bottom:14px;line-height:1.25}
.content-inner h3{font-size:1.05rem;font-weight:700;margin:28px 0 8px}
.content-inner p{font-size:.92rem;color:var(--text-secondary);margin-bottom:14px;line-height:1.7}
.content-inner ul{padding-left:20px;margin-bottom:14px}
.content-inner li{font-size:.88rem;color:var(--text-secondary);margin-bottom:6px;line-height:1.6}
.content-inner strong{color:var(--text)}

/* ============ CTA ============ */
.action{
  background:var(--gradient-dark);
  color:white;padding:48px 16px;text-align:center;position:relative;overflow:hidden;
}
.action-inner{position:relative;z-index:1}
.action h2{font-size:1.3rem;font-weight:900;margin-bottom:8px}
.action p{opacity:.9;margin-bottom:20px;font-size:.9rem}
.btn-action{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:16px 32px;background:white;color:var(--primary);
  border-radius:var(--radius-sm);font-size:.95rem;font-weight:800;
  text-transform:uppercase;letter-spacing:.03em;min-height:52px;
  transition:all var(--transition);width:100%;max-width:400px;
  box-shadow:0 4px 14px rgba(0,0,0,.15);
}
.btn-action:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,.2)}
.btn-action svg{width:18px;height:18px;stroke:var(--primary);fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}
@media(min-width:640px){.action{padding:56px 24px}.action h2{font-size:1.5rem}.btn-action{width:auto}}

/* ============ FOOTER ============ */
.footer{background:var(--bg-dark);color:rgba(255,255,255,.55);padding:40px 16px 80px}
@media(min-width:480px){.footer{padding:40px 24px}}
.footer-inner{max-width:var(--max-w);margin:0 auto;text-align:center}
.footer-brand{font-size:1rem;font-weight:800;color:white;margin-bottom:6px}
.footer-desc{font-size:.8rem;margin-bottom:4px}
.footer-phone{color:rgba(255,255,255,.85);font-weight:600;font-size:.88rem}
.footer-links{
  display:flex;justify-content:center;gap:20px;margin-top:20px;
  padding-top:20px;border-top:1px solid rgba(255,255,255,.08);
}
.footer-links a{font-size:.76rem;color:rgba(255,255,255,.35);transition:color var(--transition);min-height:44px;display:flex;align-items:center}
.footer-links a:hover{color:rgba(255,255,255,.7)}
.footer-copy{margin-top:12px;font-size:.7rem;opacity:.3}

/* ============ WHATSAPP FLOAT ============ */
.wa{
  position:fixed;bottom:20px;right:16px;width:56px;height:56px;
  background:var(--whatsapp);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,.4);z-index:999;
  transition:all var(--transition);
  animation:wa-pulse 2.5s ease-in-out infinite;
}
.wa:hover{transform:scale(1.08);box-shadow:0 6px 28px rgba(37,211,102,.5)}
.wa:active{transform:scale(0.95)}
.wa svg{width:28px;height:28px;fill:white}
@keyframes wa-pulse{0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.4)}50%{box-shadow:0 4px 20px rgba(37,211,102,.4),0 0 0 10px rgba(37,211,102,.12)}}
.wa-tip{
  position:fixed;bottom:84px;right:12px;
  background:var(--bg);color:var(--text);padding:10px 14px;
  border-radius:var(--radius-sm);box-shadow:var(--shadow-lg);
  font-size:.78rem;font-weight:600;z-index:999;white-space:nowrap;
  animation:fadeUp .3s ease;
}
.wa-tip::after{
  content:'';position:absolute;bottom:-6px;right:22px;
  width:12px;height:12px;background:var(--bg);
  transform:rotate(45deg);box-shadow:2px 2px 4px rgba(0,0,0,.05);
}
@keyframes fadeUp{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:translateY(0)}}
/* iOS safe area */
@supports(padding-bottom: env(safe-area-inset-bottom)){.wa{bottom:calc(20px + env(safe-area-inset-bottom))}}

/* ============ PROOF BANNER ============ */
.stats-bar{padding:32px 16px;background:var(--bg-alt);border-top:1px solid var(--border-light);border-bottom:1px solid var(--border-light)}
.stats-bar-inner{display:flex;align-items:center;justify-content:center;gap:24px;max-width:600px;margin:0 auto;flex-wrap:wrap}
.stats-bar-item{text-align:center}
.stats-bar-num{display:block;font-size:1.4rem;font-weight:900;background:var(--gradient);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;line-height:1}
.stats-bar-txt{font-size:.72rem;color:var(--text-muted);margin-top:2px;display:block}
.stats-bar-sep{width:1px;height:32px;background:var(--border);display:none}
@media(min-width:480px){.stats-bar-sep{display:block}.stats-bar-num{font-size:1.7rem}.stats-bar-txt{font-size:.78rem}}

/* ============ FAQ ============ */
.questions{padding:40px 16px;background:var(--bg-alt)}
@media(min-width:480px){.questions{padding:56px 24px}}
.questions-list{max-width:700px;margin:0 auto;display:grid;gap:8px}
.q-item{background:var(--bg);border:1px solid var(--border);border-radius:var(--radius-sm);overflow:hidden;transition:all var(--transition)}
.q-item[open]{border-color:var(--primary);box-shadow:0 2px 8px rgba(37,99,235,.08)}
.q-title{padding:16px 20px;font-size:.9rem;font-weight:700;cursor:pointer;list-style:none;display:flex;align-items:center;justify-content:space-between;min-height:52px}
.q-title::-webkit-details-marker{display:none}
.q-title::after{content:'+';font-size:1.2rem;font-weight:700;color:var(--primary);transition:transform var(--transition);flex-shrink:0;margin-left:12px}
.q-item[open] .q-title::after{content:'-'}
.q-answer{padding:0 20px 16px;font-size:.86rem;color:var(--text-secondary);line-height:1.65}

/* ============ STEPS CTA ============ */
.timeline-action{text-align:center;margin-top:32px}
.btn-timeline{
  display:inline-flex;align-items:center;justify-content:center;
  padding:14px 28px;background:var(--gradient);color:white;
  border-radius:var(--radius-full);font-size:.9rem;font-weight:700;
  transition:all var(--transition);min-height:48px;
}
.btn-timeline:hover{background:var(--gradient-dark);transform:translateY(-1px);box-shadow:0 6px 20px rgba(37,99,235,.25)}

/* ============ GALLERY ============ */
.photos{padding:4rem 1.5rem;background:var(--bg-alt)}
.photos-header{text-align:center;margin-bottom:2rem}
.photos-header h2{font-size:1.8rem;font-weight:800;color:var(--text)}
.photos-header p{color:var(--text-secondary);margin-top:.5rem;font-size:1.05rem}
.photos-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;max-width:1000px;margin:0 auto;border-radius:12px;overflow:hidden}
.photos-grid img{width:100%;height:250px;object-fit:cover;border-radius:8px;transition:transform .3s ease,box-shadow .3s ease}
.photos-grid img:hover{transform:scale(1.03);box-shadow:0 8px 25px rgba(0,0,0,.15)}
@media(max-width:768px){
  .photos{padding:2.5rem 1rem}
  .photos-header h2{font-size:1.4rem}
  .photos-grid{grid-template-columns:1fr;gap:.75rem}
  .photos-grid img{height:200px;border-radius:10px}
}

/* ============ REDUCED MOTION ============ */
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}
  html{scroll-behavior:auto}
  .reviews-scroll{animation:none!important;flex-wrap:wrap;justify-content:center}
}
