/* ============================================
   FixPhone — app.css
   Glassmorphism + Dark Tech Design System
   ============================================ */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: #050f1a;
  color: #e2e8f0;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

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

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

ul,
ol {
  list-style: none;
}

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

/* ---- Custom Properties ---- */
:root {
  --bg-deep: #050f1a;
  --bg-surface: #0a1628;
  --bg-glass: rgba(255, 255, 255, 0.03);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 230, 118, 0.25);
  --primary: #00e676;
  --primary-dark: #00c853;
  --primary-glow: rgba(0, 230, 118, 0.2);
  --text-primary: #e2e8f0;
  --text-secondary: #94a3b8;
  --text-dim: #64748b;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 999px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(0, 230, 118, 0.15);
  --container: 1280px;
}

/* ---- Utilities ---- */
.fp-container {
  width: min(var(--container), 100% - 40px);
  margin-inline: auto;
}

.fp-glass {
  background: var(--bg-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass);
}

.fp-glass-strong {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fp-glow-hover:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
}

.fp-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fp-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.fp-grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }

/* ---- Typography ---- */
.fp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.fp-section-head {
  text-align: center;
  margin-bottom: 48px;
}

.fp-section-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-top: 10px;
}

.fp-section-head h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
  margin: 16px auto 0;
}

.fp-section-head p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-top: 14px;
  max-width: 600px;
  margin-inline: auto;
}

/* ---- Buttons ---- */
.fp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.fp-btn:hover {
  transform: translateY(-2px);
}

.fp-btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #050f1a;
  box-shadow: 0 8px 32px var(--primary-glow);
}

.fp-btn--primary:hover {
  box-shadow: 0 12px 40px rgba(0, 230, 118, 0.35);
}

.fp-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.fp-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-glow);
}

.fp-btn--whatsapp {
  background: #00e676;
  color: #050f1a;
  font-weight: 800;
}

.fp-btn--whatsapp:hover {
  box-shadow: 0 8px 32px rgba(0, 230, 118, 0.4);
}

/* ---- Animations ---- */
@keyframes fpGlowSweep {
  0% { left: -40%; }
  100% { left: 120%; }
}

@keyframes fpFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes fpPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.5); }
  50% { box-shadow: 0 0 0 16px rgba(0, 230, 118, 0); }
}

@keyframes fpFadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fpShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.fp-animate-in {
  animation: fpFadeInUp 0.7s ease forwards;
}

/* ---- Skeleton Loader ---- */
.fp-skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 100%);
  background-size: 200% 100%;
  animation: fpShimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-sm);
}

/* ---- Topbar ---- */
.fp-topbar {
  background: #030c17;
  border-bottom: 1px solid var(--border-glass);
  position: relative;
  z-index: 100;
  overflow: hidden;
}

.fp-topbar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 230, 118, 0.08), transparent);
  filter: blur(12px);
  animation: fpGlowSweep 7s linear infinite;
  pointer-events: none;
}

.fp-topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.fp-topbar__left,
.fp-topbar__right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.fp-topbar__left a,
.fp-topbar__right span {
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 700;
  transition: color 0.2s;
}

.fp-topbar__left a:hover {
  color: var(--primary);
}

.fp-topbar__login {
  color: var(--primary) !important;
  font-weight: 800 !important;
}

/* ---- Header ---- */
.fp-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(5, 15, 26, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-glass);
}

.fp-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.fp-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.fp-brand__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #050f1a;
  font-weight: 900;
  font-size: 1.1rem;
  box-shadow: 0 8px 28px var(--primary-glow);
}

.fp-brand__text {
  font-size: 1.28rem;
  font-weight: 950;
  letter-spacing: -0.04em;
  color: #fff;
}

.fp-search {
  flex: 1;
  min-width: 280px;
  max-width: 520px;
  height: 48px;
  display: grid;
  grid-template-columns: 1fr 48px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  overflow: hidden;
  transition: border-color 0.25s;
}

.fp-search:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 24px var(--primary-glow);
}

.fp-search input {
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 20px;
  color: var(--text-primary);
  font-weight: 700;
}

.fp-search input::placeholder {
  color: var(--text-dim);
}

.fp-search button {
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 1.1rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background 0.2s;
}

.fp-search button:hover {
  background: rgba(0, 230, 118, 0.1);
}

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

.fp-nav a {
  color: var(--text-secondary);
  font-weight: 800;
  font-size: 0.92rem;
  transition: color 0.2s;
  white-space: nowrap;
}

.fp-nav a:hover {
  color: var(--primary);
}

.fp-header-wsp {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--primary);
  border: 1px solid var(--border-glow);
  background: rgba(0, 230, 118, 0.06);
  transition: all 0.25s;
  flex-shrink: 0;
}

.fp-header-wsp:hover {
  background: rgba(0, 230, 118, 0.15);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.fp-mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.5rem;
}

/* ---- Hero Slider ---- */
.fp-hero {
  position: relative;
  overflow: hidden;
  background: #020b17;
}

.fp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 230, 118, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 200, 83, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.fp-hero .swiper {
  position: relative;
  z-index: 2;
  min-height: 540px;
}

.fp-hero .swiper-slide {
  height: 540px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.fp-hero .swiper-slide:nth-child(1) {
  background-image: linear-gradient(90deg, rgba(2, 11, 23, 0.9) 0%, rgba(2, 11, 23, 0.7) 50%, rgba(2, 11, 23, 0.4) 100%), url('/assets/img/hero-fixphone.webp');
}

.fp-hero .swiper-slide:nth-child(2) {
  background-image: linear-gradient(90deg, rgba(2, 11, 23, 0.9) 0%, rgba(2, 11, 23, 0.7) 50%, rgba(2, 11, 23, 0.4) 100%), url('/assets/img/hero-bateria.webp');
}

.fp-hero .swiper-slide:nth-child(3) {
  background-image: linear-gradient(90deg, rgba(2, 11, 23, 0.9) 0%, rgba(2, 11, 23, 0.7) 50%, rgba(2, 11, 23, 0.4) 100%), url('/assets/img/hero-lab.webp');
}

.fp-hero-content {
  max-width: 720px;
}

.fp-hero-badge {
  display: inline-flex;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #050f1a;
  font-weight: 900;
  font-size: 0.82rem;
  margin-bottom: 24px;
}

.fp-hero-content h1 {
  font-size: clamp(3rem, 5.5vw, 5.4rem);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.06em;
  color: #fff;
  margin-bottom: 20px;
}

.fp-hero-content p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 560px;
}

.fp-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.fp-swiper-prev,
.fp-swiper-next {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  width: 50px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: rgba(2, 11, 23, 0.7);
  color: #fff;
  font-size: 2rem;
  display: grid;
  place-items: center;
  transition: background 0.25s;
  backdrop-filter: blur(8px);
}

.fp-swiper-prev:hover,
.fp-swiper-next:hover {
  background: rgba(2, 11, 23, 0.95);
}

.fp-swiper-prev { left: 20px; }
.fp-swiper-next { right: 20px; }

.fp-hero .swiper-pagination {
  bottom: 24px !important;
}

.fp-hero .swiper-pagination-bullet {
  width: 36px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
}

.fp-hero .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 48px;
  box-shadow: 0 0 12px var(--primary-glow);
}

/* ---- Benefit Bar ---- */
.fp-benefit-bar {
  background: linear-gradient(90deg, rgba(0, 230, 118, 0.12) 0%, rgba(10, 18, 30, 0.98) 18%, rgba(10, 18, 30, 0.98) 82%, rgba(0, 230, 118, 0.12) 100%);
  border-top: 1px solid rgba(0, 230, 118, 0.2);
  border-bottom: 1px solid var(--border-glass);
  position: relative;
  overflow: hidden;
}

.fp-benefit-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -35%;
  width: 28%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 230, 118, 0.55) 50%, transparent 100%);
  box-shadow: 0 0 18px rgba(0, 230, 118, 0.5), 0 0 40px rgba(0, 230, 118, 0.2);
  filter: blur(5px);
  animation: fpGlowSweep 4.5s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.fp-benefit-bar__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  padding-block: 6px;
}

.fp-benefit-bar__item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.fp-benefit-bar__item i {
  color: var(--primary);
  font-size: 0.7rem;
  opacity: 0.8;
}

.fp-benefit-bar__item::after {
  content: '';
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.1);
  margin-left: 24px;
}

.fp-benefit-bar__item:last-child::after {
  display: none;
}

/* ---- Sections ---- */
.fp-section {
  padding: 80px 0;
}

.fp-section--dark {
  background: var(--bg-deep);
}

.fp-section--surface {
  background: var(--bg-surface);
}

/* ---- Services Grid ---- */
.fp-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fp-service-card {
  padding: 32px 24px;
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  transition: all 0.3s ease;
}

.fp-service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
}

.fp-service-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.15), rgba(0, 200, 83, 0.08));
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.fp-service-card h3 {
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.fp-service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ---- Product Grid ---- */
.fp-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.fp-product-card {
  position: relative;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.fp-product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 30px var(--primary-glow);
}

.fp-product-card--featured {
  border-color: var(--border-glow);
  box-shadow: 0 0 30px rgba(0, 230, 118, 0.1);
}

.fp-product-card__image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 16px 12px;
  background: rgba(255, 255, 255, 0.02);
}

.fp-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s;
}

.fp-product-card:hover .fp-product-card__image img {
  transform: scale(1.05);
}

.fp-product-card__body {
  padding: 14px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.fp-product-card__tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.fp-product-tag {
  background: rgba(0, 230, 118, 0.1);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fp-product-tag--brand {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
}

.fp-product-card h3 {
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 900;
  color: var(--text-primary);
  min-height: 40px;
}

.fp-product-card__meta {
  display: flex;
  justify-content: space-between;
  color: var(--text-dim);
  font-size: 0.74rem;
  font-weight: 800;
}

.fp-product-card__offer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fp-product-card__offer span {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  font-weight: 900;
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 5px;
}

.fp-product-card__offer del {
  color: var(--text-dim);
  font-weight: 800;
  font-size: 0.82rem;
}

.fp-product-card__price {
  color: var(--text-primary);
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1;
}

.fp-product-card__price-label {
  color: var(--text-primary);
  font-size: 0.76rem;
  font-weight: 800;
}

.fp-product-card__other-price {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 800;
}

.fp-product-card__other-price small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 2px;
}

.fp-product-card__btn {
  margin-top: auto;
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #050f1a;
  font-weight: 900;
  font-size: 0.88rem;
  transition: all 0.25s;
}

.fp-product-card__btn:hover {
  box-shadow: 0 6px 24px var(--primary-glow);
}

/* ---- Quality Ribbons ---- */
.fp-quality-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  backdrop-filter: blur(4px);
}

.fp-quality-ribbon--original { background: linear-gradient(135deg, #00e676, #00c853); color: #050f1a; }
.fp-quality-ribbon--premium { background: linear-gradient(135deg, #0f172a, #00e676); }
.fp-quality-ribbon--oled-gx { background: linear-gradient(135deg, #4a0e8f, #c026d3); }
.fp-quality-ribbon--oled { background: linear-gradient(135deg, #6d28d9, #a855f7); }
.fp-quality-ribbon--incell { background: linear-gradient(135deg, #1d4ed8, #38bdf8); }
.fp-quality-ribbon--refurbished { background: linear-gradient(135deg, #ea580c, #f59e0b); }
.fp-quality-ribbon--alternativo { background: linear-gradient(135deg, #334155, #64748b); }
.fp-quality-ribbon--mechanic { background: linear-gradient(135deg, #0f172a, #2563eb); }
.fp-quality-ribbon--default { background: linear-gradient(135deg, #111827, #475569); }

.fp-product-card--has-quality .fp-product-card__image {
  padding-top: 48px;
}

/* ---- Category Filters ---- */
.fp-cat-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0 40px;
}

.fp-cat-filters a,
.fp-cat-filters button {
  height: 40px;
  padding: 0 18px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-weight: 800;
  font-size: 0.88rem;
  transition: all 0.25s;
  cursor: pointer;
}

.fp-cat-filters a:hover,
.fp-cat-filters button:hover,
.fp-cat-filters a.active,
.fp-cat-filters button.active {
  background: var(--primary);
  color: #050f1a;
  border-color: var(--primary);
  box-shadow: 0 4px 20px var(--primary-glow);
}

/* ---- Pagination ---- */
.fp-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.fp-pagination a {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-weight: 900;
  transition: all 0.25s;
}

.fp-pagination a:hover,
.fp-pagination a.active {
  background: var(--primary);
  color: #050f1a;
  border-color: var(--primary);
}

/* ---- Why Section ---- */
.fp-why {
  background: linear-gradient(180deg, var(--bg-surface), #020b17);
  padding: 90px 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.fp-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.fp-why__content h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 14px 0 20px;
  color: var(--text-primary);
}

.fp-why__content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.fp-why__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fp-why-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  transition: all 0.3s;
}

.fp-why-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
}

.fp-why-card__icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.fp-why-card strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.fp-why-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ---- Contact CTA ---- */
.fp-contact-cta {
  background: linear-gradient(180deg, #020b17, var(--bg-deep));
  border-top: 1px solid var(--border-glow);
}

.fp-contact-cta__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding-block: 56px;
}

.fp-contact-cta h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 10px 0 14px;
}

.fp-contact-cta p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 560px;
}

.fp-contact-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---- Footer ---- */
.fp-footer {
  background: #020812;
  padding: 70px 0 28px;
  border-top: 1px solid var(--border-glass);
}

.fp-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.fp-footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.fp-footer__mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #050f1a;
  font-weight: 900;
}

.fp-footer__brand-logo strong {
  font-size: 1.35rem;
  font-weight: 950;
  color: var(--text-primary);
}

.fp-footer__brand-logo small {
  display: block;
  color: var(--text-dim);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.fp-footer p,
.fp-footer a {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.7;
}

.fp-footer a:hover {
  color: var(--primary);
}

.fp-footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fp-footer h3 {
  font-size: 0.95rem;
  font-weight: 950;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.fp-footer__cta {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
}

.fp-footer__cta-btn,
.fp-footer__cta-admin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  border-radius: var(--radius-full);
  font-weight: 900;
  margin-top: 12px;
  transition: all 0.25s;
}

.fp-footer__cta-btn {
  background: var(--primary);
  color: #050f1a;
}

.fp-footer__cta-btn:hover {
  box-shadow: 0 6px 24px var(--primary-glow);
}

.fp-footer__cta-admin {
  background: var(--bg-glass);
  color: var(--text-secondary);
  border: 1px solid var(--border-glass);
}

.fp-footer__cta-admin:hover {
  border-color: var(--border-glow);
}

.fp-footer__bottom {
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* ---- Floating Social ---- */
.fp-floating-social {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fp-float {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  font-size: 1.35rem;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.fp-float:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: var(--border-glow);
}

.fp-float--whatsapp:hover { color: #00e676; box-shadow: 0 8px 32px rgba(0, 230, 118, 0.3); }
.fp-float--instagram:hover { color: #ec4899; box-shadow: 0 8px 32px rgba(236, 72, 153, 0.3); }

.fp-float--whatsapp::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 16px;
  border: 2px solid rgba(0, 230, 118, 0.3);
  animation: fpPulse 2s infinite;
  pointer-events: none;
}

/* ---- Empty State ---- */
.fp-empty {
  padding: 48px;
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  text-align: center;
  font-weight: 700;
  color: var(--text-dim);
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .fp-products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .fp-services-grid { grid-template-columns: repeat(2, 1fr); }
  .fp-nav { display: none; }
  .fp-header-wsp { display: none; }
  .fp-mobile-toggle { display: flex; }
  .fp-header__inner { min-height: 68px; }
  .fp-search { margin: 0 12px; }

  .fp-why__grid { grid-template-columns: 1fr; gap: 40px; }
  .fp-why__cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .fp-container { width: min(100% - 32px, 1280px); }

  .fp-topbar { display: none; }

  .fp-header {
    position: relative;
    top: auto;
  }

  .fp-header__inner {
    flex-wrap: wrap;
    gap: 14px;
    padding: 16px 0;
  }

  .fp-search {
    order: 3;
    width: 100%;
    max-width: none;
    min-width: 0;
    margin: 0;
  }

  .fp-mobile-toggle { display: flex; }

  .fp-hero .swiper-slide { height: 500px; }
  .fp-hero-content h1 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .fp-swiper-prev,
  .fp-swiper-next { display: none; }

  .fp-products-grid { grid-template-columns: 1fr; gap: 16px; }
  .fp-product-card { max-width: 360px; width: 100%; margin-inline: auto; }
  .fp-product-card__image { height: 200px; }

  .fp-services-grid { grid-template-columns: 1fr; }

  .fp-cat-filters {
    overflow-x: auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    gap: 8px;
  }

  .fp-cat-filters a,
  .fp-cat-filters button {
    flex: 0 0 auto;
    height: 38px;
    padding: 0 16px;
    font-size: 0.84rem;
  }

  .fp-why__cards { grid-template-columns: 1fr; }

  .fp-contact-cta__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 40px;
  }

  .fp-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .fp-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .fp-floating-social {
    right: 14px;
    bottom: 90px;
  }

  .fp-float {
    width: 52px;
    height: 52px;
  }

  .fp-section { padding: 56px 0; }

  .fp-benefit-bar__inner { gap: 16px; justify-content: flex-start; }
  .fp-benefit-bar__item { font-size: 0.72rem; }
  .fp-benefit-bar__item::after { margin-left: 12px; }
}

/* Desktop nav hidden always, visible on mobile via Alpine */
.fp-nav-mobile {
  display: none;
}

.fp-nav-mobile.open {
  display: flex;
}

@media (max-width: 1100px) {
  .fp-nav-mobile {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-glass);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--border-glass);
    padding: 16px 24px;
    flex-direction: column;
    gap: 12px;
    z-index: 80;
  }

  .fp-nav-mobile.open {
    display: flex;
  }

  .fp-nav-mobile a {
    color: var(--text-primary);
    font-weight: 800;
    font-size: 1rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-glass);
  }

  .fp-nav-mobile a:last-child {
    border-bottom: 0;
  }
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}
