﻿/* ==========================================================================
   paginawebrapida.com - Modern Futuristic Stylesheet
   Inspired by Reference: Sky Blue Atmosphere, 3D Mockup Arc, Lime Accents, Bento Grid
   ========================================================================== */

:root {
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Color Palette */
  --sky-600: #0284c7;
  --sky-500: #0ea5e9;
  --sky-400: #38bdf8;
  --sky-300: #7dd3fc;
  --sky-200: #bae6fd;
  --sky-100: #e0f2fe;
  --sky-50:  #f0f9ff;

  --neon-lime: #d6ff38;
  --neon-lime-hover: #e2ff5e;
  --neon-lime-glow: 0 0 25px rgba(214, 255, 56, 0.45);
  
  --dark-bg: #090d16;
  --dark-card: #101726;
  --dark-border: rgba(255, 255, 255, 0.1);
  
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;

  --wa-green: #25d366;
  --wa-green-hover: #20ba5a;

  --radius-hero: 34px;
  --radius-card: 22px;
  --radius-pill: 9999px;
  --radius-btn: 14px;

  --shadow-subtle: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
  --shadow-hero-card: 0 25px 60px -12px rgba(2, 132, 199, 0.25);
  --shadow-floating: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset y Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-main);
  background-color: #f6f9fc;
  color: var(--slate-900);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* -------------------------------------------------------------
   TOP FLASH BANNER
   ------------------------------------------------------------- */
.top-flash-banner {
  background: linear-gradient(90deg, #0f172a 0%, #0369a1 50%, #0f172a 100%);
  color: #ffffff;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.flash-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.flash-pill {
  background: var(--neon-lime);
  color: #000;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}

.flash-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  padding: 2px 10px;
  border-radius: 6px;
  font-family: var(--font-heading);
}

.timer-unit b {
  color: var(--neon-lime);
  font-size: 0.95rem;
  display: inline-block;
  min-width: 18px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.flash-action-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  transition: var(--transition-smooth);
}

.flash-action-btn:hover {
  background: var(--neon-lime);
  color: #000;
}

/* -------------------------------------------------------------
   OUTER WRAPPER
   ------------------------------------------------------------- */
.outer-wrapper {
  max-width: 1360px;
  margin: 0 auto;
  padding: 14px 16px 40px;
}

/* -------------------------------------------------------------
   HERO CONTAINER - ESTILO CIELO AZUL DE REFERENCIA
   ------------------------------------------------------------- */
.hero-card-container {
  background: linear-gradient(180deg, #0284c7 0%, #0ea5e9 45%, #38bdf8 82%, #8ae0fd 100%);
  border-radius: var(--radius-hero);
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 24px 28px 48px;
  box-shadow: var(--shadow-hero-card);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Nubes suaves flotantes */
.sky-atmosphere {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.sky-glow {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(40px);
}

.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.35);
  filter: blur(35px);
  border-radius: 50%;
}

.cloud-1 {
  width: 420px;
  height: 160px;
  bottom: 8%;
  left: -80px;
  animation: floatCloud1 24s ease-in-out infinite alternate;
}

.cloud-2 {
  width: 480px;
  height: 180px;
  bottom: 5%;
  right: -100px;
  animation: floatCloud2 28s ease-in-out infinite alternate;
}

.cloud-3 {
  width: 320px;
  height: 120px;
  top: 35%;
  right: 15%;
  opacity: 0.4;
  animation: floatCloud3 20s ease-in-out infinite alternate;
}

@keyframes floatCloud1 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, -15px); }
}

@keyframes floatCloud2 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-50px, -20px); }
}

@keyframes floatCloud3 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(25px, 15px); }
}

/* -------------------------------------------------------------
   NAVBAR
   ------------------------------------------------------------- */
.nav-bar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  color: #fff;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-lime);
}

.logo-icon svg {
  width: 22px;
  height: 22px;
}

.logo-text {
  font-weight: 500;
}

.logo-text b {
  font-weight: 800;
  color: #fff;
}

.dot-com {
  color: var(--neon-lime);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition-smooth);
  letter-spacing: 0.2px;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

/* BOTÓN NEÓN LIMA (IDÉNTICO A LA REFERENCIA) */
.btn-lime-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--neon-lime);
  color: #0a0d14;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.4px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  transition: var(--transition-smooth);
}

.btn-lime-pill:hover {
  background: var(--neon-lime-hover);
  box-shadow: var(--neon-lime-glow);
  transform: translateY(-2px);
}

.btn-large {
  font-size: 0.95rem;
  padding: 13px 26px;
}

.btn-arrow-circle {
  width: 26px;
  height: 26px;
  background: #0a0d14;
  color: var(--neon-lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
}

.btn-glass-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 20, 40, 0.35);
  backdrop-filter: blur(12px);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.btn-glass-pill:hover {
  background: rgba(10, 20, 40, 0.55);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* -------------------------------------------------------------
   HERO CONTENT
   ------------------------------------------------------------- */
.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding-top: 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.pulse-green {
  width: 8px;
  height: 8px;
  background: var(--neon-lime);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--neon-lime);
  animation: pulseAnim 2s ease-in-out infinite;
}

@keyframes pulseAnim {
  0% { opacity: 0.6; box-shadow: 0 0 4px var(--neon-lime); }
  50% { opacity: 1; box-shadow: 0 0 14px var(--neon-lime); }
  100% { opacity: 0.6; box-shadow: 0 0 4px var(--neon-lime); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 5.2vw, 4.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.8px;
  margin-bottom: 18px;
  text-shadow: 0 2px 14px rgba(2, 60, 110, 0.15);
}

.hero-highlight {
  color: #ffffff;
  position: relative;
}

.hero-subtitle {
  max-width: 680px;
  margin: 0 auto 32px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
}

.hero-subtitle b {
  color: #ffffff;
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

/* -------------------------------------------------------------
   3D FLOATING MOCKUP RIBBON / ARC (FIEL A LA REFERENCIA)
   ------------------------------------------------------------- */
.mockup-ribbon-stage {
  perspective: 1200px;
  width: 100%;
  overflow: visible;
  padding: 20px 0 25px;
  contain: layout;
}

.mockup-arc {
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  gap: 14px;
  margin: 0 auto;
  position: relative;
  max-width: 1140px;
}

.arc-card {
  width: 170px;
  min-height: 220px;
  border-radius: 18px;
  background: #ffffff;
  color: var(--slate-900);
  padding: 12px;
  box-shadow: 0 16px 35px -8px rgba(0, 30, 70, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  user-select: none;
  cursor: pointer;
  position: relative;
  z-index: 1;

  /* Disposición fija y elegante en arco parabólico según --i */
  transform: perspective(1000px)
             rotateY(calc(var(--i) * -11deg))
             translateZ(calc(40px - abs(var(--i)) * 25px))
             translateY(calc(abs(var(--i)) * 14px));
}

/* Tarjeta central destacada en el arco */
.arc-card[style*="--i: 0"],
.arc-card.card-centerpiece {
  width: 200px;
  min-height: 240px;
  z-index: 5;
}

/* Movimiento hacia el frente suave al pasar el cursor (Hover) */
.arc-card:hover {
  transform: perspective(1000px)
             rotateY(0deg)
             translateZ(120px)
             translateY(-18px) scale(1.09) !important;
  box-shadow: 0 30px 60px -10px rgba(0, 20, 60, 0.42), 0 0 25px rgba(255, 255, 255, 0.5);
  z-index: 50 !important;
}

/* Mini Header de Ventana Web */
.mockup-window-header {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--slate-100);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.mock-url {
  font-size: 0.62rem;
  color: var(--slate-500);
  margin-left: auto;
  font-family: monospace;
}

.card-inner-ui {
  display: flex;
  flex-direction: column;
  height: calc(100% - 24px);
  justify-content: space-between;
  text-align: left;
}

/* Card 1 Dental */
.tag-pill-sm {
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--sky-50);
  color: var(--sky-600);
  padding: 3px 6px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 6px;
}

.card-dentist h4 {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
}

.mockup-metric-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--slate-50);
  padding: 6px 8px;
  border-radius: 8px;
  margin: 10px 0;
}

.metric-col .lbl {
  font-size: 0.6rem;
  color: var(--slate-500);
  display: block;
}

.metric-col .val {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--sky-600);
}

.metric-chart-mini {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
}

.metric-chart-mini .bar {
  width: 4px;
  background: var(--sky-400);
  border-radius: 2px;
}
.bar.h-60 { height: 60%; }
.bar.h-90 { height: 90%; }
.bar.h-40 { height: 40%; }
.bar.h-100 { height: 100%; background: var(--sky-600); }

.mock-btn-sm {
  background: var(--slate-900);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  text-align: center;
  padding: 6px 4px;
  border-radius: 6px;
}

/* Card 2 Restaurante */
.food-tag {
  font-size: 0.65rem;
  font-weight: 700;
  color: #ea580c;
  background: #fff7ed;
  padding: 3px 6px;
  border-radius: 4px;
  display: inline-block;
}

.dish-name {
  font-size: 0.88rem;
  font-weight: 700;
  margin: 4px 0 8px;
}

.stats-row-duo {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.stat-box {
  flex: 1;
  background: var(--slate-50);
  padding: 6px 4px;
  border-radius: 6px;
  text-align: center;
}

.stat-box small {
  display: block;
  font-size: 0.58rem;
  color: var(--slate-500);
}

.stat-box strong {
  font-size: 0.76rem;
  color: var(--slate-900);
}

.text-green {
  color: #16a34a !important;
}

.mini-stars {
  font-size: 0.65rem;
  font-weight: 700;
  color: #b45309;
}

/* Card 3 Profile Andrés & Daniela */
.profile-pic-header {
  position: relative;
  margin-bottom: 8px;
}

.avatar-hero {
  width: 100%;
  height: 95px;
  object-fit: cover;
  border-radius: 12px;
}

.expert-badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--neon-lime);
  font-size: 0.58rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.person-name {
  font-size: 0.82rem;
  font-weight: 800;
}

.person-role {
  font-size: 0.62rem;
  color: var(--slate-500);
  margin-bottom: 8px;
}

.stat-pills-row {
  display: flex;
  gap: 6px;
}

.pill-green {
  background: #dcfce7;
  color: #15803d;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
}

.pill-blue {
  background: var(--sky-100);
  color: var(--sky-600);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
}

/* Card 4 Centerpiece Prototipo 24h */
.card-centerpiece {
  background: #ffffff;
  border: 2px solid var(--neon-lime);
  box-shadow: 0 25px 45px rgba(2, 60, 110, 0.35);
}

.center-badge {
  font-size: 0.62rem;
  font-weight: 800;
  color: #0369a1;
  background: #e0f2fe;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 4px;
}

.center-ui h3 {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.1;
}

.big-timer-val {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: #0284c7;
  letter-spacing: -0.5px;
  margin: 4px 0;
}

.center-desc {
  font-size: 0.65rem;
  color: var(--slate-600);
  line-height: 1.3;
}

.sparkline-svg {
  width: 100%;
  height: 32px;
  margin: 8px 0;
}

.tag-satisfaction {
  background: var(--slate-900);
  color: var(--neon-lime);
  font-size: 0.6rem;
  font-weight: 700;
  text-align: center;
  padding: 5px;
  border-radius: 6px;
}

/* Card 5 E-Commerce */
.card-ecommerce {
  background: #0f172a;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

.store-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--neon-lime);
  margin-bottom: 4px;
}

.store-item-name {
  font-size: 0.85rem;
  font-weight: 700;
}

.store-price-tag {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  margin: 4px 0 8px;
}

.gateway-icons-mini {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.g-badge {
  font-size: 0.55rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 2px 4px;
  border-radius: 3px;
}

.checkout-btn-mini {
  background: var(--neon-lime);
  color: #000;
  font-size: 0.62rem;
  font-weight: 800;
  text-align: center;
  padding: 6px 4px;
  border-radius: 6px;
}

/* Card 6 SEO Google */
.card-seo {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
}

.seo-icon-box {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.seo-title {
  font-size: 0.8rem;
  font-weight: 700;
}

.seo-metric {
  font-size: 1.4rem;
  font-weight: 900;
  font-family: var(--font-heading);
  margin: 2px 0;
}

.seo-sub {
  font-size: 0.62rem;
  opacity: 0.85;
  line-height: 1.3;
  margin-bottom: 8px;
}

.badge-status-green {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--neon-lime);
}

/* Card 7 Mobile */
.card-mobile {
  border-radius: 24px;
  border: 4px solid #1e293b;
  background: #f8fafc;
  padding: 10px 8px;
}

.mobile-speaker {
  width: 32px;
  height: 3px;
  background: #cbd5e1;
  border-radius: 2px;
  margin: 0 auto 8px;
}

.chat-header-mini {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6rem;
  font-weight: 700;
  color: #075e54;
  margin-bottom: 8px;
}

.wa-dot {
  width: 6px;
  height: 6px;
  background: #25d366;
  border-radius: 50%;
}

.bubble-incoming {
  background: #e2e8f0;
  font-size: 0.58rem;
  padding: 5px 8px;
  border-radius: 8px 8px 8px 0;
  margin-bottom: 6px;
  line-height: 1.2;
}

.bubble-outgoing {
  background: #dcf8c6;
  font-size: 0.58rem;
  padding: 5px 8px;
  border-radius: 8px 8px 0 8px;
  margin-left: 10px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.mobile-stats-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.62rem;
  background: #fff;
  padding: 4px 6px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.mobile-stats-row strong {
  color: #16a34a;
}

/* Social Proof Stars */
.hero-social-proof {
  margin-top: 36px;
}

.proof-text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 6px;
}

.proof-text strong {
  color: #ffffff;
}

.stars-row {
  color: #fde047;
  font-size: 1.15rem;
  letter-spacing: 2px;
}

/* -------------------------------------------------------------
   MARQUEE DE CONFIANZA / TECH TICKER
   ------------------------------------------------------------- */
.trust-marquee-section {
  padding: 36px 0 20px;
  overflow: hidden;
  position: relative;
}

.trust-marquee-section::before,
.trust-marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.trust-marquee-section::before {
  left: 0;
  background: linear-gradient(to right, #f6f9fc, rgba(246, 249, 252, 0));
}

.trust-marquee-section::after {
  right: 0;
  background: linear-gradient(to left, #f6f9fc, rgba(246, 249, 252, 0));
}

.marquee-track {
  display: flex;
  width: 100%;
  overflow: hidden;
  user-select: none;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: scrollMarquee 32s linear infinite;
  white-space: nowrap;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--slate-500);
  transition: var(--transition-smooth);
}

.marquee-item:hover {
  color: var(--slate-900);
}

.t-icon {
  font-size: 1.15rem;
}

/* -------------------------------------------------------------
   SECCIONES COMUNES
   ------------------------------------------------------------- */
.section-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
}

.pill-category {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--sky-600);
  background: var(--sky-100);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--slate-900);
  margin-bottom: 14px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* Badges decorativos inline (como en la referencia) */
.badge-inline-clock,
.badge-inline-lightbulb {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.85em;
  font-weight: 700;
  vertical-align: middle;
}

.badge-inline-clock {
  background: #e0f2fe;
  color: #0369a1;
}

.badge-inline-lightbulb {
  background: #ecfccb;
  color: #3f6212;
}

/* -------------------------------------------------------------
   BENTO GRID "¿POR QUÉ ELEGIRNOS?"
   ------------------------------------------------------------- */
.section-bento {
  padding: 60px 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.bento-card {
  border-radius: var(--radius-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  transform: translateY(-4px);
}

.bento-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.card-corner-icon {
  font-size: 1.3rem;
}

.bento-big-stat {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 12px;
}

.bento-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
}

.bento-card p {
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Bento 1: Azul Gradiente (100+ Webs) */
.card-bento-blue {
  grid-column: span 4;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
}

.card-brand-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 6px;
}

.card-bento-blue p {
  color: rgba(255, 255, 255, 0.9);
}

/* Bento 2: Blanco Limpio (50% / 50%) */
.card-bento-white {
  grid-column: span 4;
  background: #ffffff;
  border: 1px solid var(--slate-200);
}

.card-tag-gray {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-600);
  background: var(--slate-100);
  padding: 4px 10px;
  border-radius: 6px;
}

.card-bento-white .bento-big-stat {
  color: var(--slate-900);
}

.card-bento-white p {
  color: var(--slate-600);
}

.avatars-proof-row {
  display: flex;
  align-items: center;
  margin-top: 18px;
}

.avatar-sm {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -8px;
  object-fit: cover;
}

.avatar-sm:first-child {
  margin-left: 0;
}

.avatars-caption {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-600);
  margin-left: 10px;
}

/* Bento 3: Verde Lima Neón (24h - Exacto a Referencia) */
.card-bento-lime {
  grid-column: span 4;
  background: var(--neon-lime);
  color: #0a0d14;
}

.card-tag-dark {
  font-size: 0.75rem;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.12);
  padding: 4px 10px;
  border-radius: 6px;
  color: #000;
}

.text-dark {
  color: #0a0d14 !important;
}

.text-dark-muted {
  color: #1e293b !important;
}

/* Bento 4: Negro Mate Profundo (0% Permanencia) */
.card-bento-dark {
  grid-column: span 4;
  background: #0a0d14;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-tag-light {
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: 6px;
  color: #fff;
}

.text-gray-300 {
  color: #cbd5e1 !important;
}

/* Bento 5: Fotografía y Retoque Incluido (Ancho Especial) */
.card-bento-photo {
  grid-column: span 5;
  background: #ffffff;
  border: 1px solid var(--slate-200);
}

.card-tag-accent {
  font-size: 0.75rem;
  font-weight: 800;
  background: #fef08a;
  color: #854d0e;
  padding: 4px 10px;
  border-radius: 6px;
}

.photo-bento-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.photo-badge-preview {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.camera-pill {
  background: var(--sky-50);
  color: var(--sky-600);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--sky-200);
}

/* Bento 6: SEO Google */
.card-bento-seo {
  grid-column: span 3;
  background: #ffffff;
  border: 1px solid var(--slate-200);
}

.card-tag-blue {
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--sky-100);
  color: var(--sky-600);
  padding: 4px 10px;
  border-radius: 6px;
}

.card-bento-seo .bento-big-stat {
  font-size: 2.2rem;
  color: var(--sky-600);
}

/* -------------------------------------------------------------
   SERVICIOS COMPLETOS (LOS 2 PAQUETES)
   ------------------------------------------------------------- */
.section-services {
  padding: 70px 0;
}

.services-dual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-package-card {
  background: #ffffff;
  border-radius: var(--radius-card);
  padding: 36px 32px 32px;
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition-smooth);
}

.service-package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -15px rgba(2, 132, 199, 0.15);
}

.featured-service {
  border-color: var(--sky-500);
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
}

.ecommerce-card {
  border-color: #0f172a;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.service-ribbon-tag {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--sky-600);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}

.tag-ecommerce {
  background: #0f172a;
  color: var(--neon-lime);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--sky-100);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.ecommerce-card .service-icon-wrap {
  background: #e2e8f0;
}

.service-header h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.15;
}

.service-target {
  font-size: 0.85rem;
  color: var(--slate-500);
}

.service-delivery-badge {
  background: rgba(2, 132, 199, 0.08);
  border: 1px dashed var(--sky-400);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--sky-600);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--slate-700);
}

.check-icon {
  color: #10b981;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.service-footer-action {
  border-top: 1px solid var(--slate-200);
  padding-top: 20px;
}

.payment-guarantee-note {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0369a1;
  margin-bottom: 14px;
  text-align: center;
}

.btn-full-width {
  width: 100%;
  padding: 14px;
  font-size: 0.95rem;
}

/* -------------------------------------------------------------
   SECCIÓN DESTACADA: FOTOGRAFÍA Y RETOQUE PROFESIONAL
   ------------------------------------------------------------- */
.section-photo-highlight {
  padding: 40px 0;
}

.photo-highlight-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--radius-card);
  color: #ffffff;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow-card);
}

.photo-highlight-text h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  margin: 12px 0;
  line-height: 1.15;
}

.photo-highlight-text p {
  color: #cbd5e1;
  font-size: 1rem;
  margin-bottom: 24px;
}

.photo-perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.photo-perk-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 12px;
  border-radius: 12px;
}

.perk-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 8px;
}

.photo-perk-item h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--neon-lime);
}

.photo-perk-item p {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-bottom: 0;
  line-height: 1.3;
}

.before-after-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 14px;
}

.ba-header {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neon-lime);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.ba-image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.ba-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.ba-floating-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ba-caption {
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: center;
  margin-top: 10px;
}

/* -------------------------------------------------------------
   PORTAFOLIO Y CASOS DE ÉXITO
   ------------------------------------------------------------- */
.section-portfolio {
  padding: 70px 0;
}

.portfolio-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.tab-btn {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate-600);
  background: #ffffff;
  border: 1px solid var(--slate-200);
  transition: var(--transition-smooth);
}

.tab-btn:hover, .tab-btn.active {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.portfolio-card {
  background: #ffffff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--slate-200);
  transition: var(--transition-smooth);
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12);
}

.portfolio-thumb-wrapper {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.portfolio-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-thumb {
  transform: scale(1.04);
}

.cat-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.portfolio-info {
  padding: 24px;
}

.portfolio-info h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.portfolio-info p {
  font-size: 0.9rem;
  color: var(--slate-600);
  margin-bottom: 14px;
  line-height: 1.5;
}

.portfolio-metric-badge {
  display: inline-block;
  background: var(--sky-50);
  color: var(--sky-600);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}

.portfolio-quote {
  background: var(--slate-50);
  border-left: 3px solid var(--sky-500);
  padding: 10px 12px;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--slate-700);
  border-radius: 0 6px 6px 0;
}

.quote-author {
  font-style: normal;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--slate-900);
  margin-top: 6px;
}

/* -------------------------------------------------------------
   SECCIÓN: ¿QUIÉNES SOMOS? (ANDRÉS Y DANIELA TORRES)
   ------------------------------------------------------------- */
.section-about {
  padding: 60px 0;
}

.about-container-card {
  background: #ffffff;
  border-radius: var(--radius-card);
  padding: 44px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--slate-200);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.founders-photo-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-floating);
}

.founders-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.founders-floating-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.f-dot {
  width: 8px;
  height: 8px;
  background: var(--neon-lime);
  border-radius: 50%;
}

.about-content-col h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  margin: 10px 0 4px;
}

.about-tagline {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--sky-600);
  margin-bottom: 20px;
}

.about-story {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 14px;
}

.location-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  padding: 14px 16px;
  border-radius: 12px;
  margin: 20px 0;
}

.loc-pin {
  font-size: 1.4rem;
}

.loc-details strong {
  display: block;
  font-size: 0.88rem;
  color: var(--slate-900);
}

.loc-details span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--sky-600);
  display: block;
}

.loc-details small {
  font-size: 0.78rem;
  color: var(--slate-500);
}

.about-guarantees {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.guar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--slate-700);
}

/* -------------------------------------------------------------
   PREGUNTAS FRECUENTES (FAQ)
   ------------------------------------------------------------- */
.section-faq {
  padding: 60px 0;
}

.faq-accordion-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--slate-200);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: var(--sky-500);
  box-shadow: 0 10px 25px -5px rgba(2, 132, 199, 0.1);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--sky-600);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--slate-600);
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 24px 20px;
}

/* -------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------- */
.main-footer {
  background: #0a0d14;
  color: #ffffff;
  border-radius: var(--radius-card);
  padding: 48px 36px 24px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 18px;
}

.footer-location-info p {
  font-size: 0.82rem;
  color: #cbd5e1;
  margin-bottom: 6px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: #94a3b8;
  transition: var(--transition-smooth);
}

.footer-col ul li a:hover {
  color: var(--neon-lime);
}

.footer-cta-text {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 16px;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal-links {
  display: flex;
  gap: 10px;
}

/* -------------------------------------------------------------
   POP-UP MODAL (MODERN WEB GUIDANCE: DIALOG + ALLOW-DISCRETE)
   ------------------------------------------------------------- */
.promo-modal {
  margin: auto;
  border: none;
  border-radius: 24px;
  padding: 0;
  background: transparent;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.5);

  /* Modern Web Guidance Discrete Transitions */
  opacity: 0;
  transform: scale(0.92);
  transition-property: opacity, transform, display, overlay;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-behavior: allow-discrete;
}

.promo-modal[open] {
  opacity: 1;
  transform: scale(1);

  @starting-style {
    opacity: 0;
    transform: scale(0.92);
  }
}

.promo-modal::backdrop {
  background-color: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  transition: display 0.3s allow-discrete, overlay 0.3s allow-discrete, background-color 0.3s ease-out, backdrop-filter 0.3s ease-out;
}

.promo-modal[open]::backdrop {
  background-color: rgba(10, 15, 30, 0.65);
  backdrop-filter: blur(8px);

  @starting-style {
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
  }
}

.modal-dialog-content {
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 36px 30px 28px;
  color: #ffffff;
  position: relative;
  text-align: center;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1.6rem;
  color: #94a3b8;
  line-height: 1;
  transition: color 0.2s ease;
}

.modal-close-btn:hover {
  color: #ffffff;
}

.modal-badge-flash {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.modal-desc {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 20px;
}

.modal-countdown-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px;
  border-radius: 14px;
  margin-bottom: 18px;
}

.countdown-caption {
  font-size: 0.72rem;
  color: #94a3b8;
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-timer-boxes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.t-box {
  background: #0284c7;
  padding: 8px 12px;
  border-radius: 8px;
  min-width: 60px;
}

.t-box span {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  display: block;
  line-height: 1;
  color: #ffffff;
}

.t-box small {
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

.colon {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--neon-lime);
}

.modal-perks {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--neon-lime);
  font-weight: 700;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.modal-whatsapp-btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 0.95rem;
  background: var(--neon-lime);
  color: #000;
  font-weight: 900;
  box-shadow: 0 0 20px rgba(214, 255, 56, 0.4);
}

.modal-whatsapp-btn:hover {
  background: var(--neon-lime-hover);
  box-shadow: 0 0 30px rgba(214, 255, 56, 0.6);
}

.modal-terms-note {
  font-size: 0.68rem;
  color: #64748b;
  margin-top: 14px;
}

/* -------------------------------------------------------------
   FLOATING WHATSAPP BUTTON (BOTTOM-RIGHT)
   ------------------------------------------------------------- */
.floating-whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.whatsapp-bubble {
  width: 58px;
  height: 58px;
  background: var(--wa-green);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  position: relative;
  transition: var(--transition-smooth);
}

.whatsapp-bubble:hover {
  background: var(--wa-green-hover);
  transform: scale(1.08);
}

.wa-svg-icon {
  width: 32px;
  height: 32px;
}

.wa-badge-notification {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ef4444;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 900;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

.wa-tooltip-msg {
  position: absolute;
  right: 70px;
  background: #0f172a;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-smooth);
}

.whatsapp-bubble:hover .wa-tooltip-msg {
  opacity: 1;
  transform: translateX(0);
}

/* -------------------------------------------------------------
   RESPONSIVE DESIGN (TABLET & MOBILE)
   ------------------------------------------------------------- */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-bento-blue,
  .card-bento-white,
  .card-bento-lime,
  .card-bento-dark,
  .card-bento-photo,
  .card-bento-seo {
    grid-column: span 1;
  }
  .card-bento-photo {
    grid-column: span 2;
  }
  .services-dual-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .photo-highlight-box {
    grid-template-columns: 1fr;
  }
  .photo-perks-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .outer-wrapper {
    padding: 8px;
  }
  .hero-card-container {
    padding: 16px 14px 36px;
    border-radius: 24px;
  }
  .hero-title {
    font-size: 2.2rem;
    letter-spacing: -1px;
  }
  .mockup-ribbon-stage {
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
  }
  .mockup-ribbon-stage::-webkit-scrollbar {
    display: none;
  }
  .mockup-arc {
    transform-style: flat;
    gap: 12px;
    padding: 0 20px;
  }
  .arc-card {
    transform: none !important;
    animation: none !important;
    width: 220px;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .card-bento-photo {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
