/* ============================================================
   NEWTECH — style.css
   ============================================================ */

:root {
  --primary: #0092c9;
  --primary-foreground: #ffffff;
  --background: #f8fafc;
  --foreground: #0f172a;
  --muted: #64748b;
  --muted-foreground: #64748b;
  --border: #e2e8f0;
  --card: #ffffff;
  --card-foreground: #0f172a;
  --radius: 0.75rem;
  --whatsapp: #25D366;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- UTILITIES ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

.text-gradient {
  background: linear-gradient(135deg, var(--primary), rgba(0,146,201,0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.875rem 2rem; font-size: 1rem; font-weight: 600;
  border-radius: var(--radius); border: none; cursor: pointer;
  transition: all 0.3s ease; text-decoration: none;
}
.btn-primary { background: var(--primary); color: var(--primary-foreground); box-shadow: 0 10px 40px rgba(0,146,201,0.4); }
.btn-primary:hover { background: rgba(0,146,201,0.9); transform: translateY(-2px); box-shadow: 0 15px 50px rgba(0,146,201,0.5); }
.btn-outline { background: rgba(255,255,255,0.05); color: var(--foreground); border: 1px solid rgba(0,146,201,0.3); backdrop-filter: blur(10px); }
.btn-outline:hover { background: rgba(0,146,201,0.05); border-color: var(--primary); }
.btn-lg { padding: 1.25rem 2.5rem; font-size: 1.125rem; }
.btn-white { background: white; color: var(--primary); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.3); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
}
.navbar.scrolled .logo svg path {
  fill: #00354a !important;
}
/* ---- NAVBAR ---- */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: all 0.3s ease; padding: 1rem 0; }
.navbar.scrolled { background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); box-shadow: 0 4px 30px rgba(0,0,0,0.1); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-text { font-size: 1.5rem; font-weight: 700; background: linear-gradient(135deg, var(--primary), rgba(0,146,201,0.7)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: none; gap: 2rem; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-link { color: var(--muted); text-decoration: none; font-weight: 500; position: relative; transition: color 0.3s ease; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary); transition: width 0.3s ease; }
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }
.navbar .nav-links a { color: #FFF; }
.navbar.scrolled .nav-links a { color: #00354a; }
.nav-cta { display: none; }
@media (min-width: 768px) { .nav-cta { display: block; } }
.mobile-menu-btn { display: flex; padding: 0.5rem; background: none; border: none; cursor: pointer; color: var(--foreground); }
@media (min-width: 768px) { .mobile-menu-btn { display: none; } }
.mobile-menu { display: none; position: fixed; top: 5rem; left: 0; right: 0; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); padding: 1.5rem; border-top: 1px solid var(--border); }
.mobile-menu.active { display: block; }
.mobile-menu a { display: block; padding: 0.75rem 0; color: var(--foreground); text-decoration: none; font-weight: 500; }
.mobile-menu a:hover { color: var(--primary); }

/* ---- HERO ---- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-video-container { position: absolute; inset: 0; z-index: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(248,250,252,0.95), rgba(248,250,252,0.8), var(--background)); }
.hero-overlay-side { position: absolute; inset: 0; background: #1091c5; mix-blend-mode: multiply; }
.hero-gradient-animated { position: absolute; inset: 0; background: linear-gradient(to top right, rgba(0,146,201,0.2), transparent, rgba(0,146,201,0.1)); animation: pulseOpacity 5s ease-in-out infinite; }
@keyframes pulseOpacity { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.5; } }
.parallax-element { position: absolute; border-radius: 50%; filter: blur(40px); pointer-events: none; }
.parallax-1 { top: 15%; left: 5%; width: 5rem; height: 5rem; background: rgba(0,146,201,0.2); }
.parallax-2 { top: 25%; right: 10%; width: 8rem; height: 8rem; background: rgba(0,146,201,0.15); }
.parallax-3 { bottom: 30%; left: 15%; width: 6rem; height: 6rem; background: rgba(0,146,201,0.1); }
.hero-content { position: relative; z-index: 10; padding: 8rem 0 5rem; }
.hero-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.hero-left { text-align: center; }
@media (min-width: 1024px) { .hero-left { text-align: left; } }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.625rem 1.25rem; border-radius: 9999px; background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.2); margin-bottom: 2rem; box-shadow: 0 4px 20px rgba(0,146,201,0.1); }
.badge-dot { position: relative; width: 0.625rem; height: 0.625rem; }
.badge-dot::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #FFF; animation: ping 1.5s infinite; }
.badge-dot::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #FFF; }
@keyframes ping { 0% { transform: scale(1); opacity: 0.75; } 100% { transform: scale(2); opacity: 0; } }
.hero-title { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; color: #00354a; }
.hero-subtitle { font-size: 1.125rem; color: #FFF; max-width: 36rem; margin: 0 auto 2.5rem; line-height: 1.7; }
@media (min-width: 1024px) { .hero-subtitle { margin: 0 0 2.5rem; } }
.hero-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }
@media (min-width: 1024px) { .hero-buttons { justify-content: flex-start; } }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 3rem; justify-content: center; }
@media (min-width: 1024px) { .hero-trust { justify-content: flex-start; } }
.trust-badge { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 9999px; background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); font-size: 0.875rem; font-weight: 500; transition: transform 0.3s ease; }
.trust-badge:hover { transform: scale(1.05); }
.trust-badge svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.hero-trust.aos-init.aos-animate .trust-badge svg { color: #FFF; }
.hero-trust.aos-init.aos-animate .trust-badge span { color: #FFF; }
.hero-right { display: none; position: relative; height: 500px; }
@media (min-width: 1024px) { .hero-right { display: block; } }
.floating-card-main { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 20; animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translate(-50%,-50%) translateY(-5px); } 50% { transform: translate(-50%,-50%) translateY(5px); } }
.main-card-inner { background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); border-radius: 1.5rem; padding: 2rem; box-shadow: 0 25px 50px rgba(0,146,201,0.2); border: 1px solid rgba(255,255,255,0.2); }
.main-card-content { width: 16rem; height: 16rem; border-radius: 1rem; background: linear-gradient(135deg, rgba(0,146,201,0.3), rgba(0,146,201,0.1), transparent); display: flex; align-items: center; justify-content: center; backdrop-filter: blur(10px); }
.main-card-icon { width: 5rem; height: 5rem; border-radius: 1rem; background: linear-gradient(135deg, var(--primary), rgba(0,146,201,0.8)); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; box-shadow: 0 10px 30px rgba(0,146,201,0.4); animation: rotateY 8s linear infinite; }
@keyframes rotateY { from { transform: perspective(500px) rotateY(0deg); } to { transform: perspective(500px) rotateY(360deg); } }
.main-card-icon svg { width: 2.5rem; height: 2.5rem; color: white; }
.floating-badge { position: absolute; z-index: 30; }
.floating-badge-apple { top: 2.5rem; right: 2.5rem; animation: floatRotate 5s ease-in-out infinite; }
@keyframes floatRotate { 0%, 100% { transform: translateY(-10px) rotate(-5deg); } 50% { transform: translateY(10px) rotate(5deg); } }
.badge-icon { width: 5rem; height: 5rem; border-radius: 1rem; background: linear-gradient(135deg, var(--primary), rgba(0,146,201,0.8)); display: flex; align-items: center; justify-content: center; box-shadow: 0 15px 40px rgba(0,146,201,0.5); border: 1px solid rgba(255,255,255,0.2); }
.badge-icon svg { width: 2.5rem; height: 2.5rem; color: white; }
.floating-badge-check { bottom: 5rem; left: 1.25rem; animation: floatRotateReverse 6s ease-in-out infinite; }
@keyframes floatRotateReverse { 0%, 100% { transform: translateY(10px) rotate(5deg); } 50% { transform: translateY(-10px) rotate(-5deg); } }
.badge-icon-green { width: 4rem; height: 4rem; border-radius: 0.75rem; background: linear-gradient(135deg, #22c55e, #16a34a); display: flex; align-items: center; justify-content: center; box-shadow: 0 15px 40px rgba(34,197,94,0.5); border: 1px solid rgba(255,255,255,0.2); }
.badge-icon-green svg { width: 2rem; height: 2rem; color: white; }
.floating-badge-monitor { top: 8rem; left: 0; z-index: 10; animation: floatSimple 4s ease-in-out infinite 1s; }
@keyframes floatSimple { 0%, 100% { transform: translateY(-8px); } 50% { transform: translateY(8px); } }
.floating-badge-stars { bottom: 2.5rem; right: 0; z-index: 10; animation: floatSimple 5s ease-in-out infinite 0.5s; }
.badge-glass { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); border-radius: 0.75rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 1px solid rgba(255,255,255,0.2); }
.badge-glass svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }
.badge-glass span { font-size: 0.875rem; font-weight: 600; }
.stars-container { display: flex; gap: 2px; }
.stars-container svg { width: 1rem; height: 1rem; color: #facc15; fill: #facc15; }
.hero-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 24rem; height: 24rem; background: rgba(0,146,201,0.3); border-radius: 50%; filter: blur(100px); z-index: -1; }
@keyframes fadeIn { to { opacity: 1; } }

/* ---- STATS ---- */
.stats-section { padding: 5rem 0; position: relative; z-index: 10; }
.stats-card { background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); border-radius: 1.5rem; padding: 2rem 3rem; border: 1px solid rgba(0,146,201,0.1); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; padding: 1.5rem; }
.stat-icon { width: 4rem; height: 4rem; border-radius: 1rem; background: rgba(0,146,201,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.stat-icon svg { width: 2rem; height: 2rem; color: var(--primary); }
.stat-value { font-size: 2.5rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.stat-label { color: var(--muted); }

/* ---- SECTION SHARED ---- */
.section { padding: 5rem 0 8rem; position: relative; z-index: 10; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 9999px; background: rgba(0,146,201,0.1); border: 1px solid rgba(0,146,201,0.2); margin-bottom: 1.5rem; }
.section-badge svg { width: 1rem; height: 1rem; color: var(--primary); }
.section-badge span { font-size: 0.875rem; font-weight: 500; color: var(--primary); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--foreground); margin-bottom: 1rem; }
.section-subtitle { font-size: 1.125rem; color: var(--muted); max-width: 42rem; margin: 0 auto; }
.section-cta { text-align: center; margin-top: 3rem; }

/* ---- SERVICES GRID ---- */
.services-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card { background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); border-radius: var(--radius); padding: 2rem; border: 1px solid rgba(0,146,201,0.1); transition: all 0.5s ease; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; right: 0; width: 8rem; height: 8rem; background: linear-gradient(135deg, rgba(0,146,201,0.1), transparent); border-radius: 0 0 0 100%; opacity: 0; transition: opacity 0.5s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,146,201,0.1); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 3.5rem; height: 3.5rem; border-radius: 1rem; background: linear-gradient(135deg, var(--primary), rgba(0,146,201,0.8)); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; box-shadow: 0 8px 20px rgba(0,146,201,0.3); transition: transform 0.3s ease; }
.service-card:hover .service-icon { transform: scale(1.1); }
.service-icon svg { width: 1.75rem; height: 1.75rem; color: white; }
.service-title { font-size: 1.25rem; font-weight: 600; color: var(--foreground); margin-bottom: 0.75rem; }
.service-description { color: var(--muted); line-height: 1.7; }

/* ---- ZIGZAG ---- */
.zigzag-section { padding: 5rem 0 8rem; overflow: hidden; }
.zigzag-title { text-align: center; font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 700; margin-bottom: 5rem; }
.zigzag-items { display: flex; flex-direction: column; gap: 6rem; }
@media (min-width: 768px) { .zigzag-items { gap: 8rem; } }
.zigzag-item { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .zigzag-item { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.zigzag-image { position: relative; }
.zigzag-image img { width: 100%; height: auto; border-radius: 1.5rem; box-shadow: 0 25px 50px rgba(0,146,201,0.1); transition: transform 0.6s ease; }
.zigzag-image:hover img { transform: scale(1.05); }
.zigzag-image-glow { position: absolute; width: 6rem; height: 6rem; background: rgba(0,146,201,0.2); border-radius: 50%; filter: blur(40px); transition: background 0.5s ease; }
.zigzag-image:hover .zigzag-image-glow { background: rgba(0,146,201,0.3); }
.glow-br { bottom: -1rem; right: -1rem; }
.glow-tl { top: -1rem; left: -1rem; }
.glow-bl { bottom: -1rem; left: -1rem; }
.glow-tr { top: -1rem; right: -1rem; }
.zigzag-content { padding: 0; }
@media (min-width: 1024px) { .zigzag-content { padding: 0 2rem; } }
.zigzag-line { width: 4rem; height: 4px; background: linear-gradient(to right, var(--primary), rgba(0,146,201,0.5)); border-radius: 9999px; margin-bottom: 1.5rem; }
.zigzag-content h3 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: var(--foreground); margin-bottom: 1.5rem; line-height: 1.2; }
.zigzag-content p { font-size: 1.125rem; color: var(--muted); line-height: 1.8; }
.apple-badge { position: absolute; top: 1.5rem; right: 1.5rem; display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); border-radius: 1rem; border: 1px solid rgba(0,146,201,0.1); }
.apple-badge svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.apple-badge span { font-size: 0.875rem; font-weight: 600; }
@media (min-width: 1024px) { .zigzag-item.reverse .zigzag-image { order: 2; } .zigzag-item.reverse .zigzag-content { order: 1; } }

/* ---- ABOUT ---- */
.about-section { padding: 5rem 0 8rem; }
.about-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.about-visual { position: relative; }
.about-visual-inner { position: relative; aspect-ratio: 1; border-radius: 1.5rem; overflow: hidden; background: linear-gradient(135deg, rgba(0,146,201,0.3), rgba(0,146,201,0.1), transparent); border: 2px solid rgba(0,146,201,0.1); }
.about-visual-content { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.about-icon { width: 8rem; height: 8rem; border-radius: 1.5rem; background: linear-gradient(135deg, var(--primary), rgba(0,146,201,0.8)); display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; box-shadow: 0 20px 50px rgba(0,146,201,0.4); animation: floatSlow 4s ease-in-out infinite; }
@keyframes floatSlow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.about-icon svg { width: 4rem; height: 4rem; color: white; }
.about-floating-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); border-radius: 1rem; padding: 1rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1); animation: floatSimple 3s ease-in-out infinite; }
.about-floating-badge-inner { display: flex; align-items: center; gap: 0.75rem; }
.about-floating-icon { width: 3rem; height: 3rem; border-radius: 0.75rem; background: rgba(0,146,201,0.1); display: flex; align-items: center; justify-content: center; }
.about-floating-icon svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }
.about-content { text-align: center; }
@media (min-width: 1024px) { .about-content { text-align: left; } }
.about-text { display: flex; flex-direction: column; gap: 1rem; color: var(--muted); font-size: 1.125rem; line-height: 1.8; margin-bottom: 2rem; }
.features-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
.feature-item { display: flex; align-items: center; gap: 0.75rem; padding: 1rem; border-radius: 0.75rem; background: rgba(0,146,201,0.05); border: 1px solid rgba(0,146,201,0.1); }
.feature-item svg { width: 1.25rem; height: 1.25rem; color: var(--primary); flex-shrink: 0; }
.feature-item span { font-weight: 500; }

/* ---- TESTIMONIALS ---- */
.testimonials-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); border-radius: var(--radius); padding: 2rem; border: 1px solid rgba(0,146,201,0.1); transition: box-shadow 0.3s ease; }
.testimonial-card:hover { box-shadow: 0 10px 30px rgba(0,146,201,0.1); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 1rem; }
.testimonial-stars svg { width: 1.25rem; height: 1.25rem; color: var(--primary); fill: var(--primary); }
.testimonial-text { color: var(--muted); font-style: italic; line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar { width: 3rem; height: 3rem; border-radius: 50%; background: linear-gradient(135deg, var(--primary), rgba(0,146,201,0.6)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1.125rem; }
.testimonial-name { font-weight: 600; color: var(--foreground); }
.testimonial-role { font-size: 0.875rem; color: var(--muted); }

/* ---- CTA ---- */
.cta-section { padding: 5rem 0; }
.cta-card { position: relative; overflow: hidden; border-radius: 1.5rem; background: linear-gradient(135deg, var(--primary), rgba(0,146,201,0.9), rgba(0,146,201,0.8)); padding: 4rem 2rem; }
@media (min-width: 768px) { .cta-card { padding: 6rem 4rem; } }
.cta-effects { position: absolute; inset: 0; opacity: 0.3; pointer-events: none; }
.cta-effect-1 { position: absolute; top: 0; right: 0; width: 24rem; height: 24rem; background: rgba(255,255,255,0.2); border-radius: 50%; filter: blur(60px); transform: translate(50%,-50%); }
.cta-effect-2 { position: absolute; bottom: 0; left: 0; width: 16rem; height: 16rem; background: rgba(255,255,255,0.1); border-radius: 50%; filter: blur(40px); transform: translate(-50%,50%); }
.cta-content { position: relative; z-index: 10; text-align: center; }
.cta-title { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700; color: white; margin-bottom: 1rem; }
.cta-text { font-size: 1.125rem; color: rgba(255,255,255,0.8); max-width: 42rem; margin: 0 auto 2rem; }
.cta-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }

/* ---- CONTACT ---- */
.contact-section { padding: 5rem 0 8rem; }
.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.contact-info-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem; border-radius: 0.75rem; background: rgba(0,146,201,0.05); border: 1px solid rgba(0,146,201,0.1); }
.contact-info-icon { width: 3rem; height: 3rem; border-radius: 0.75rem; background: rgba(0,146,201,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }
.contact-info-label { font-size: 0.875rem; color: var(--muted); margin-bottom: 0.25rem; }
.contact-info-value { font-weight: 600; color: var(--foreground); }
.contact-info-value a { color: var(--foreground); text-decoration: none; transition: color 0.3s ease; }
.contact-info-value a:hover { color: var(--primary); }
.social-links { display: flex; gap: 1rem; }
.social-link { width: 3rem; height: 3rem; border-radius: 0.75rem; background: rgba(0,146,201,0.1); border: 1px solid rgba(0,146,201,0.2); display: flex; align-items: center; justify-content: center; color: var(--primary); transition: all 0.3s ease; }
.social-link:hover { background: var(--primary); color: white; }
.social-link svg { width: 1.25rem; height: 1.25rem; }
.contact-form-card { background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); border-radius: var(--radius); padding: 2rem; border: 1px solid rgba(0,146,201,0.1); }
.contact-form-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.form-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full-width { grid-column: 1 / -1; }
.form-label { font-size: 0.875rem; font-weight: 500; }
.form-input, .form-textarea { width: 100%; padding: 0.75rem 1rem; border-radius: 0.75rem; border: 1px solid var(--border); background: var(--background); font-size: 1rem; font-family: inherit; transition: all 0.3s ease; outline: none; }
.form-input:focus, .form-textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,146,201,0.2); }
.form-textarea { resize: none; min-height: 120px; }
.form-submit { margin-top: 1rem; }

/* ---- FOOTER ---- */
.footer { padding: 3rem 0; border-top: 1px solid var(--border); }
.footer-bottom { text-align: center; color: var(--muted); font-size: 0.875rem; }

/* ---- BG DECORATIONS ---- */
.bg-decorations { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.bg-blob { position: absolute; border-radius: 50%; filter: blur(100px); }
.bg-blob-1 { top: -20%; right: -10%; width: 60vw; height: 60vw; background: rgba(0,146,201,0.08); animation: pulseGlow 8s ease-in-out infinite; }
.bg-blob-2 { bottom: -20%; left: -10%; width: 50vw; height: 50vw; background: rgba(0,146,201,0.05); animation: pulseGlow 8s ease-in-out infinite 2s; }
.bg-blob-3 { top: 40%; left: 30%; width: 30vw; height: 30vw; background: rgba(0,146,201,0.03); }
@keyframes pulseGlow { 0%, 100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 0.8; transform: scale(1.1); } }
.grid-pattern { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,146,201,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,146,201,0.03) 1px, transparent 1px); background-size: 60px 60px; }

/* ---- IPHONES SECTION ---- */
.iphones-wrapper {
  display: flex;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  border: 1px solid rgba(0,146,201,0.1);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 10px 40px rgba(0,146,201,0.08);
}
.iphones-group { flex: 1; padding: 2rem 1.5rem; display: flex; flex-direction: column; }
.iphones-group-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.35rem 1rem; border-radius: 9999px; display: inline-block; margin-bottom: 1.5rem; width: fit-content; }
.seminovo-label { background: rgba(0,146,201,0.1); color: var(--primary); border: 1px solid rgba(0,146,201,0.2); }
.novo-label { background: rgba(34,197,94,0.1); color: #16a34a; border: 1px solid rgba(34,197,94,0.2); }
.iphones-cards { display: flex; gap: 1rem; flex-wrap: wrap; }
.iphone-card { flex: 1; min-width: 90px; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; padding: 1rem 0.5rem; border-radius: 1rem; transition: all 0.3s ease; cursor: default; }
.iphone-card:hover { background: rgba(0,146,201,0.04); transform: translateY(-4px); }
.iphone-card.destaque .iphone-img-wrap { background: linear-gradient(135deg, rgba(0,146,201,0.08), rgba(0,146,201,0.02)); }
.iphone-img-wrap { width: 100px; height: 100px; display: flex; align-items: center; justify-content: center; border-radius: 0.75rem; overflow: hidden; background: rgba(0,0,0,0.02); }
.iphone-img-wrap img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.3s ease; }
.iphone-card:hover .iphone-img-wrap img { transform: scale(1.08); }
.iphone-model { font-size: 0.8rem; font-weight: 600; color: var(--foreground); text-align: center; }
.iphone-tag { font-size: 0.7rem; font-weight: 600; padding: 0.2rem 0.6rem; border-radius: 9999px; }
.iphone-tag.seminovo { background: rgba(0,146,201,0.1); color: var(--primary); }
.iphone-tag.novo { background: rgba(34,197,94,0.1); color: #16a34a; }
.iphones-divider { width: 1px; background: rgba(0,146,201,0.1); margin: 1.5rem 0; }
.iphones-trust-bar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .iphones-trust-bar { grid-template-columns: repeat(4, 1fr); } }
.iphones-trust-item { display: flex; align-items: center; gap: 0.75rem; padding: 1rem; border-radius: 0.75rem; background: rgba(255,255,255,0.9); border: 1px solid rgba(0,146,201,0.1); font-size: 0.875rem; font-weight: 500; color: var(--foreground); }
.iphones-trust-item svg { color: var(--primary); flex-shrink: 0; }
@media (max-width: 767px) {
  .iphones-wrapper { flex-direction: column; }
  .iphones-divider { width: 100%; height: 1px; margin: 0; }
  .iphones-cards { justify-content: center; }
}

/* ---- LOJAS SECTION ---- */
.lojas-cards-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .lojas-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lojas-cards-grid { grid-template-columns: repeat(3, 1fr); } }

.loja-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  border-radius: 1.25rem;
  border: 1px solid rgba(0,146,201,0.15);
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0,146,201,0.08);
  display: flex;
  flex-direction: column;
}
.loja-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,146,201,0.15); }

.loja-numero {
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  display: inline-block;
}
.loja-img-wrap { width: 100%; height: 180px; overflow: hidden; flex-shrink: 0; }
.loja-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.loja-card:hover .loja-img-wrap img { transform: scale(1.05); }

.loja-info { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.loja-nome { font-size: 1rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.75rem; }

.loja-endereco {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.loja-endereco svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

/* Telefone inline abaixo do endereço */
.loja-telefone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.loja-telefone svg { color: var(--primary); flex-shrink: 0; }
.loja-telefone a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.loja-telefone a:hover { color: var(--primary); }

/* Botões da loja */
.loja-actions {
  display: flex;
  gap: 0.625rem;
  margin-top: auto;
  flex-wrap: wrap;
}
.loja-btn {
  flex: 1;
  min-width: 110px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 0.75rem;
  border-radius: 0.625rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}
.loja-btn-mapa {
  background: rgba(0,146,201,0.08);
  color: var(--primary);
  border: 1px solid rgba(0,146,201,0.25);
}
.loja-btn-mapa:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.loja-btn-whats {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}
.loja-btn-whats:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}
.loja-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Mapa + info */
.loja-mapa-wrapper { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .loja-mapa-wrapper { flex-direction: row; align-items: stretch; } }
.loja-mapa-iframe { flex: 1; width: 100%; min-height: 280px; border: none; border-radius: 1.25rem; box-shadow: 0 8px 30px rgba(0,146,201,0.1); }
.loja-mapa-info { display: flex; gap: 1rem; padding: 1.5rem; background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); border-radius: 1.25rem; border: 1px solid rgba(0,146,201,0.1); align-items: flex-start; min-width: 220px; }

/* Trust bar lojas */
.lojas-trust-bar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; background: var(--foreground); border-radius: 1.25rem; padding: 1.5rem 2rem; }
@media (min-width: 768px) { .lojas-trust-bar { grid-template-columns: repeat(4, 1fr); } }
.lojas-trust-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.9); }
.lojas-trust-item svg { color: var(--primary); flex-shrink: 0; }

/* ---- SCOOTERS SECTION ---- */
.scooters-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .scooters-wrapper { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 639px) {
  .scooters-wrapper { grid-template-columns: 1fr; }
}

.scooter-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  border-radius: 1.25rem;
  border: 1px solid rgba(0,146,201,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  box-shadow: 0 6px 24px rgba(0,146,201,0.07);
  position: relative;
}
.scooter-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,146,201,0.15);
  border-color: rgba(0,146,201,0.3);
}

/* tag badge */
.scooter-tag-wrap {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10;
}
.scooter-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(0,146,201,0.12);
  color: var(--primary);
  border: 1px solid rgba(0,146,201,0.25);
  backdrop-filter: blur(10px);
}
.scooter-tag.destaque {
  background: linear-gradient(135deg, var(--primary), rgba(0,146,201,0.85));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(0,146,201,0.4);
}
.scooter-tag.premium {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(245,158,11,0.4);
}

/* image */
.scooter-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0,146,201,0.06), rgba(0,146,201,0.02));
  flex-shrink: 0;
}
.scooter-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.scooter-card:hover .scooter-img-wrap img { transform: scale(1.06); }

/* info block */
.scooter-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
}
.scooter-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--foreground);
}
.scooter-desc {
  font-size: 0.825rem;
  color: var(--muted);
  line-height: 1.6;
}

/* specs pills */
.scooter-specs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}
.scooter-specs li {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  background: rgba(0,146,201,0.07);
  color: var(--primary);
  border: 1px solid rgba(0,146,201,0.15);
}
.scooter-specs li svg { flex-shrink: 0; }

/* CTA button */
.scooter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: auto;
  padding: 0.65rem 1rem;
  border-radius: 0.625rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}
.scooter-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
}
.scooter-btn svg { flex-shrink: 0; }

/* ---- SECTION DARK (iPhones background) ---- */
.section-dark {
  background: linear-gradient(135deg, #0a1628 0%, #0d2240 50%, #0a1f3a 100%);
  position: relative;
  z-index: 10;
}

/* Subtle grid overlay on dark section */
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,146,201,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,146,201,0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Glow blobs inside dark section */
.section-dark::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(0,146,201,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}

/* Text color overrides inside dark section */
.section-dark .section-title {
  color: #f0f8ff;
}
.section-dark .section-subtitle {
  color: rgba(255,255,255,0.6);
}
.section-dark .section-badge {
  background: rgba(0,146,201,0.2);
  border-color: rgba(0,146,201,0.35);
}
.section-dark .section-badge span {
  color: #60c8f0;
}
.section-dark .section-badge svg {
  color: #60c8f0;
}

/* iPhone wrapper inside dark */
.section-dark .iphones-wrapper {
  background: rgba(255,255,255,0.04);
  border-color: rgba(0,146,201,0.2);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.section-dark .iphones-group-label.seminovo-label {
  background: rgba(0,146,201,0.2);
  border-color: rgba(0,146,201,0.35);
  color: #60c8f0;
}
.section-dark .iphones-group-label.novo-label {
  background: rgba(34,197,94,0.15);
  border-color: rgba(34,197,94,0.3);
  color: #4ade80;
}
.section-dark .iphone-model {
  color: rgba(255,255,255,0.9);
}
.section-dark .iphone-tag.seminovo {
  background: rgba(0,146,201,0.2);
  color: #60c8f0;
}
.section-dark .iphone-tag.novo {
  background: rgba(34,197,94,0.15);
  color: #4ade80;
}
.section-dark .iphones-divider {
  background: rgba(255,255,255,0.08);
}

/* Trust bar inside dark */
.section-dark .iphones-trust-bar .iphones-trust-item {
  background: rgba(255,255,255,0.05);
  border-color: rgba(0,146,201,0.2);
  color: rgba(255,255,255,0.85);
}
.section-dark .iphones-trust-bar .iphones-trust-item svg {
  color: #60c8f0;
}


/* ============================================================
   HERO SLIDER
   ============================================================ */

/* Outer wrapper: fills the hero vertically, centres controls */
.hero-slider-outer {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 7rem;          /* space for fixed navbar */
  padding-bottom: 4rem;
  min-height: 100vh;
  justify-content: center;
}

/* Stack area: all slides occupy the same space via absolute positioning */
.hero-slides-stack {
  position: relative;
  width: 100%;
  /* height is driven by the active slide's content */
}

/* Every slide: absolutely stacked, invisible by default */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateX(40px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

/* The active slide sits on top and is fully visible */
.hero-slide.active {
  position: relative;   /* takes up flow so the stack has height */
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

/* Exiting slide fades left */
.hero-slide.exit-left {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-40px);
}

/* Inner content: constrained + vertically centred */
.hero-slide-inner {
  padding: 2rem 1.5rem;
}

/* ── Product image side ── */
.hero-product-side {
  display: none;          /* hidden on mobile */
}
@media (min-width: 1024px) {
  .hero-product-side { display: flex; align-items: center; justify-content: center; }
}

.hero-product-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 460px;
  width: 100%;
}

/* Glow blob */
.hero-product-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.iphone-glow {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,146,201,0.5) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.scooter-glow {
  width: 380px; height: 300px;
  background: radial-gradient(circle, rgba(37,211,102,0.35) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* Product image */
.hero-product-img {
  position: relative;
  z-index: 1;
  max-height: 400px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
  animation: heroImgFloat 5s ease-in-out infinite;
  border-radius: 1.5rem;
}
.hero-product-img.scooter-img {
  max-height: 340px;
  border-radius: 1.25rem;
}
@keyframes heroImgFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* Small badge below image */
.hero-product-badge {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.22);
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  z-index: 2;
}
.hero-product-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(74,222,128,0.8);
  animation: ping 1.5s infinite;
}

/* ── Controls row ── */
.hero-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  position: relative;
  z-index: 20;
}

.hero-slider-arrow {
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.hero-slider-arrow:hover {
  background: rgba(0,146,201,0.55);
  border-color: rgba(0,146,201,0.7);
  transform: scale(1.08);
}

/* Dot bars */
.hero-slider-dots { display: flex; gap: 0.625rem; align-items: center; }

.hero-dot {
  position: relative;
  width: 44px; height: 4px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  transition: background 0.3s;
}
.hero-dot.active { background: rgba(255,255,255,0.35); }

.hero-dot-progress {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 9999px;
  transform: scaleX(0);
  transform-origin: left;
}
.hero-dot.active .hero-dot-progress {
  animation: dotProgress 5s linear forwards;
}
@keyframes dotProgress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ── Responsive tweaks ── */
@media (max-width: 1023px) {
  .hero-product-frame { height: 300px; }
  .hero-product-img   { max-height: 260px; }
}
@media (max-width: 767px) {
  .hero-slider-outer  { padding-top: 5.5rem; padding-bottom: 3rem; }
  .hero-product-frame { height: 220px; }
  .hero-product-img   { max-height: 180px; }
}



/* ============================================================
   HERO PRODUCT SCENES — iPhone & Scooter
   ============================================================ */

/* ── Scene wrapper ── */
.hero-product-scene {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  overflow: visible;
}

/* ── Radial light burst (behind the image, no border) ── */
.scene-lightburst {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -20%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  /* Soft cone of light — no hard edge, fades outward */
  background: radial-gradient(
    circle at 50% 50%,
    rgba(120, 210, 255, 0.50) 0%,
    rgba(60,  170, 240, 0.25) 35%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  animation: burstPulse 4s ease-in-out infinite;
}
.scene-lightburst--green {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(60,  220, 190, 0.50) 0%,
    rgba(20,  180, 160, 0.25) 35%,
    transparent 70%
  );
}
@keyframes burstPulse {
  0%, 100% { opacity: 0.8; transform: translate(-50%,-20%) scale(1);    }
  50%       { opacity: 1;   transform: translate(-50%,-20%) scale(1.08); }
}

/* ── Concentric floor rings (the circular light effect from the reference) ── */
.scene-floor-rings {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 120px;
  pointer-events: none;
  z-index: 1;
}
.floor-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  /* Squash vertically to look like they lie flat on a floor */
  transform: translate(-50%, -50%) scaleY(0.25);
  border: 1.5px solid rgba(100, 210, 255, 0.5);
  animation: floorRingExpand 3.5s ease-out infinite;
}
/* Size each ring */
.fr1 { width:  90px; height:  90px; animation-delay: 0s;    }
.fr2 { width: 180px; height: 180px; animation-delay: 0.75s; }
.fr3 { width: 290px; height: 290px; animation-delay: 1.5s;  }
.fr4 { width: 400px; height: 400px; animation-delay: 2.25s; }

/* Green variant for scooter */
.scene-floor-rings--green .floor-ring {
  border-color: rgba(40, 210, 180, 0.5);
}

@keyframes floorRingExpand {
  0%   { opacity: 1;   transform: translate(-50%,-50%) scaleY(0.25) scale(0.4); }
  80%  { opacity: 0.2; }
  100% { opacity: 0;   transform: translate(-50%,-50%) scaleY(0.25) scale(1);   }
}

/* ── Product image wrapper (receives mouse tilt) ── */
.scene-mockup {
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.06s linear;
  /* Sit just above the floor rings */
  margin-bottom: 40px;
}

/* iPhone — tall portrait */
.scene-mockup img {
  height: 460px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  display: block;
  /* clean drop shadow — works perfectly on transparent PNGs */
  filter: drop-shadow(0 28px 36px rgba(0, 10, 40, 0.35));
}

/* Scooter — landscape, wider */
.scene-mockup--scooter img {
  height: 480px;
  max-width: 460px;
  filter: drop-shadow(0 22px 30px rgba(0, 10, 40, 0.30));
}
.hidebar {
  background: #e5f0f8;
  width: 100%;
  height: 62px;
  position: absolute;
}
/* ── Floating particles ── */
.scene-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(120, 210, 255, 0.8);
  filter: blur(0.5px);
  pointer-events: none;
  z-index: 3;
  animation: sceneParticle 5s ease-in-out infinite;
}
.sp1 { width: 5px; height: 5px; top: 20%; left:  6%; animation-delay: 0s;   animation-duration: 5.5s; }
.sp2 { width: 4px; height: 4px; top: 55%; left: 91%; animation-delay: 1.3s; animation-duration: 4.5s; }
.sp3 { width: 6px; height: 6px; top: 30%; left: 88%; animation-delay: 2.2s; animation-duration: 6s;   }
.sp4 { width: 4px; height: 4px; top: 70%; left:  4%; animation-delay: 0.8s; animation-duration: 5s;   }
@keyframes sceneParticle {
  0%, 100% { transform: translateY(0)     scale(1);   opacity: 0.65; }
  50%       { transform: translateY(-16px) scale(1.5); opacity: 1;    }
}

/* ── Badge pill ── */
.scene-badge {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.22);
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
}
.scene-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74,222,128,0.9);
  animation: ping 1.5s infinite;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1023px) {
  .hero-product-scene     { height: 400px; }
  .scene-mockup img       { height: 340px; max-width: 220px; }
  .scene-mockup--scooter img { height: 260px; max-width: 360px; }
  .scene-lightburst       { width: 340px; height: 340px; }
  .scene-floor-rings      { width: 300px; height: 90px; }
  .fr4                    { width: 300px; height: 300px; }
  .fr3                    { width: 220px; height: 220px; }
}
@media (max-width: 767px) {
  .hero-product-scene     { height: 300px; }
  .scene-mockup img       { height: 250px; max-width: 165px; }
  .scene-mockup--scooter img { height: 190px; max-width: 280px; }
  .scene-lightburst       { width: 250px; height: 250px; }
  .scene-floor-rings      { width: 220px; height: 65px; }
  .fr4                    { width: 220px; height: 220px; }
  .fr3                    { width: 160px; height: 160px; }
  .fr2                    { width: 110px; height: 110px; }
}


/* ============================================================
   PRODUCT CARD SLIDER  (Scooters + Informática)
   ============================================================ */
.prod-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.5rem;
}
.prod-slider-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: 1.25rem;
}
.prod-slider-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
  padding: 0.5rem 0.25rem 1rem;
}

/* Card — fixed width so exactly 4 show on desktop */
.prod-card {
  flex: 0 0 calc(25% - 1rem);
  min-width: 200px;
  position: relative;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  border-radius: 1.25rem;
  border: 1px solid rgba(0,146,201,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 4px 20px rgba(0,146,201,0.06);
}
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,146,201,0.15);
}
/* Inside dark section */
.section-dark .prod-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(0,146,201,0.2);
}
.section-dark .prod-name  { color: #f0f8ff; }
.section-dark .prod-desc  { color: rgba(255,255,255,0.6); }
.section-dark .prod-specs li { background: rgba(0,146,201,0.15); color: #60c8f0; border-color: rgba(0,146,201,0.2); }

/* Tag */
.prod-tag-wrap { position: absolute; top: 0.625rem; left: 0.625rem; z-index: 5; }
.prod-tag {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.2rem 0.6rem;
  border-radius: 9999px; background: rgba(0,146,201,0.12);
  color: var(--primary); border: 1px solid rgba(0,146,201,0.2);
}
.prod-tag.destaque {
  background: linear-gradient(135deg, var(--primary), rgba(0,146,201,0.85));
  color: #fff; border: none; box-shadow: 0 3px 10px rgba(0,146,201,0.4);
}
.prod-tag.premium {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff; border: none; box-shadow: 0 3px 10px rgba(245,158,11,0.4);
}

/* Image */
.prod-img-wrap { width: 100%; height: 320px; overflow: hidden; flex-shrink: 0; }
.prod-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; display: block; }
.prod-card:hover .prod-img-wrap img { transform: scale(1.05); }

/* Info */
.prod-info { padding: 1.1rem; display: flex; flex-direction: column; flex: 1; gap: 0.6rem; }
.prod-name { font-size: 1rem; font-weight: 700; color: var(--foreground); }
.prod-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.55; }
.prod-specs { list-style: none; display: flex; flex-wrap: wrap; gap: 0.35rem; }
.prod-specs li {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.7rem; font-weight: 600; padding: 0.2rem 0.5rem;
  border-radius: 9999px; background: rgba(0,146,201,0.07);
  color: var(--primary); border: 1px solid rgba(0,146,201,0.12);
}
.prod-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem; margin-top: auto; padding: 0.6rem 0.875rem;
  border-radius: 0.625rem; font-size: 0.775rem; font-weight: 600;
  text-decoration: none; background: var(--whatsapp); color: #fff;
  box-shadow: 0 3px 12px rgba(37,211,102,0.28); transition: all 0.25s ease;
}
.prod-btn:hover { background: #1ebe5d; transform: translateY(-1px); box-shadow: 0 5px 18px rgba(37,211,102,0.42); }

/* Arrows */
.prod-arrow {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  border: 1px solid rgba(0,146,201,0.25); background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0; transition: all 0.25s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.prod-arrow:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: scale(1.08); }
.prod-arrow:disabled { opacity: 0.3; cursor: default; transform: none; }
.prod-arrow-prev { margin-right: 0.75rem; }
.prod-arrow-next { margin-left:  0.75rem; }
.section-dark .prod-arrow { background: rgba(255,255,255,0.08); border-color: rgba(0,146,201,0.3); color: #60c8f0; }
.section-dark .prod-arrow:hover { background: var(--primary); color: #fff; }

/* Dots */
.prod-dots { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; }
.prod-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(0,146,201,0.25); border: none; cursor: pointer;
  transition: all 0.25s ease; padding: 0;
}
.prod-dot.active { background: var(--primary); transform: scale(1.3); }
.section-dark .prod-dot        { background: rgba(255,255,255,0.2); }
.section-dark .prod-dot.active { background: #60c8f0; }

/* Responsive */
@media (max-width: 1023px) { .prod-card { flex: 0 0 calc(50% - 0.75rem); } }
@media (max-width: 639px)  { .prod-card { flex: 0 0 calc(100% - 0.25rem); } .prod-arrow { display: none; } }



/* ============================================================
   COOKIE BANNER
   ============================================================ */
   .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0,146,201,0.2);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    transform: translateY(0);
    transition: transform 0.4s ease;
  }
  .cookie-banner.hidden {
    transform: translateY(110%);
  }
   
  .cookie-banner-text {
    flex: 1;
    min-width: 220px;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .cookie-banner-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    line-height: 1;
  }
  .cookie-banner-copy {
    font-size: 0.825rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
  }
  .cookie-banner-copy strong {
    color: #fff;
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.875rem;
  }
  .cookie-banner-copy a {
    color: #60c8f0;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
  }
  .cookie-banner-copy a:hover { color: #fff; }
   
  .cookie-banner-actions {
    display: flex;
    gap: 0.625rem;
    flex-shrink: 0;
    flex-wrap: wrap;
  }
  .cookie-btn-accept {
    padding: 0.6rem 1.375rem;
    border-radius: 0.5rem;
    background: var(--primary);
    color: #fff;
    font-size: 0.825rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }
  .cookie-btn-accept:hover { background: rgba(0,146,201,0.85); transform: translateY(-1px); }
   
  .cookie-btn-decline {
    padding: 0.6rem 1.125rem;
    border-radius: 0.5rem;
    background: transparent;
    color: rgba(255,255,255,0.55);
    font-size: 0.825rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.15);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
  }
  .cookie-btn-decline:hover { border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.8); }
   
  @media (max-width: 639px) {
    .cookie-banner { padding: 1rem; }
    .cookie-banner-actions { width: 100%; }
    .cookie-btn-accept,
    .cookie-btn-decline { flex: 1; text-align: center; }
  }


/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
 
.whatsapp-float-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.whatsapp-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.65);
}
.whatsapp-float-btn svg {
  width: 1.875rem;
  height: 1.875rem;
  flex-shrink: 0;
}
 
/* Pulse ring */
.whatsapp-float-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 0;   }
}
 
/* Tooltip label */
.whatsapp-float-label {
  background: #fff;
  color: #111;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 0.875rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-float-label {
  opacity: 1;
  transform: translateX(0);
}
