/*
  SANTA 25 CELULARES & ACESSÓRIOS
  Style Sheet - Premium Ultra Modern Interactive Card
  Author: Antigravity AI
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --bg-primary: #050505;
  --bg-secondary: #0c0c0c;
  --bg-tertiary: #121212;
  --accent-red: #ff1e27;
  --accent-red-hover: #e0121a;
  --accent-red-glow: rgba(255, 30, 39, 0.35);
  --accent-red-glow-strong: rgba(255, 30, 39, 0.6);
  --accent-green: #00e676;
  --accent-green-glow: rgba(0, 230, 118, 0.4);
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --text-muted: #666666;
  
  /* Glassmorphism */
  --glass-bg: rgba(15, 15, 15, 0.75);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-border-red: rgba(255, 30, 39, 0.15);
  --glass-glow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Layout limits */
  --app-max-width: 480px;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  background-color: #000;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-red) var(--bg-primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-red);
  border-radius: 3px;
}

body {
  background-color: #000000;
  color: var(--text-primary);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  overflow-x: hidden;
}

/* App Wrapper - Center layout on desktop, behave like a mobile app */
.app-container {
  width: 100%;
  max-width: var(--app-max-width);
  min-height: 100vh;
  background-color: var(--bg-primary);
  position: relative;
  box-shadow: 0 0 60px rgba(255, 30, 39, 0.08);
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.03);
  border-right: 1px solid rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

/* --- SPLASH SCREEN --- */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #020202;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.splash-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
}

.splash-logo-container {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--accent-red), transparent);
  box-shadow: 0 0 40px var(--accent-red-glow);
  animation: logoPulse 2s infinite ease-in-out;
}

.splash-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #000;
}

.splash-title {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.8s 0.3s forwards cubic-bezier(0.4, 0, 0.2, 1);
}

.splash-title span {
  color: var(--accent-red);
}

.splash-loader-bar {
  width: 140px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-top: 10px;
}

.splash-loader-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-red), #ff5e62);
  box-shadow: 0 0 10px var(--accent-red);
  border-radius: 10px;
  animation: loadProgress 2.2s cubic-bezier(0.1, 0.8, 0.25, 1) forwards;
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 24px 24px 24px;
  background: radial-gradient(circle at 50% 30%, rgba(255, 30, 39, 0.12) 0%, transparent 70%),
              radial-gradient(circle at 10% 80%, rgba(255, 30, 39, 0.05) 0%, transparent 50%);
  overflow: hidden;
}

/* Background image using pseudo-element with very low opacity */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('2.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--accent-red-glow) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.hero-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
  margin-top: 15px;
}

.brand-logo-wrapper {
  position: relative;
  width: 96px;
  height: 96px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-red), transparent 70%);
  padding: 2.5px;
  box-shadow: 0 10px 30px rgba(255, 30, 39, 0.2);
  animation: floatAnim 4s infinite ease-in-out;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background-color: #000;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.brand-name span {
  background: linear-gradient(135deg, #ffffff 40%, var(--accent-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-slogan {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Cinematic Smartphones Showcase in Hero */
.hero-showcase {
  position: relative;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 2;
  margin: 20px 0;
}

/* Custom vector stylized mockup to avoid generic placeholders */
.phone-mockup-wrapper {
  position: relative;
  width: 160px;
  height: 220px;
  filter: drop-shadow(0 15px 35px rgba(255, 30, 39, 0.25));
}

.phone-back-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 170px;
  background: radial-gradient(circle, var(--accent-red) 0%, transparent 70%);
  opacity: 0.6;
  filter: blur(15px);
  animation: pulseGlow 3s infinite ease-in-out;
}

.phone-mockup {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #101010, #050505);
  border-radius: 28px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  box-shadow: inset 0 0 15px rgba(255, 30, 39, 0.2);
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 10px;
  background-color: #000;
  border-radius: 10px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  position: relative;
  background: radial-gradient(circle at center, rgba(255, 30, 39, 0.15) 0%, transparent 80%);
}

.phone-screen-icon {
  font-size: 2.2rem;
  color: var(--accent-red);
  margin-bottom: 10px;
  filter: drop-shadow(0 0 10px var(--accent-red-glow-strong));
  animation: floatAnim 3s infinite ease-in-out;
}

.phone-screen-text {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
}

.phone-screen-sub {
  font-size: 9px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.phone-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
  transform: skewX(-25deg);
  animation: shineAnim 4s infinite ease-in-out;
}

/* Hero CTAs */
.hero-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-red), #e0121a);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 30, 39, 0.35);
}

.btn-primary:active {
  transform: scale(0.98);
  box-shadow: 0 3px 10px rgba(255, 30, 39, 0.2);
}

.btn-secondary {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.btn-secondary:active {
  background: rgba(255, 255, 255, 0.05);
  transform: scale(0.98);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--accent-green), #00c853);
  color: #fff;
  box-shadow: 0 6px 20px var(--accent-green-glow);
}

.btn-whatsapp:active {
  transform: scale(0.98);
  box-shadow: 0 3px 10px rgba(0, 230, 118, 0.2);
}

/* Small Utility Buttons Row */
.hero-mini-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}

.btn-mini {
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
}

/* Bounce Scroll Down Indicator */
.scroll-indicator-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 15px;
  text-align: center;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.scroll-indicator-text {
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scroll-indicator-icon {
  color: var(--accent-red);
  font-size: 14px;
  filter: drop-shadow(0 0 6px var(--accent-red-glow));
  animation: scrollBounce 2s infinite ease-in-out;
}

/* --- SECTION GENERAL STYLE --- */
.section {
  padding: 44px 24px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.section:last-of-type {
  border-bottom: none;
}

.section-header {
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.section-subtitle {
  font-size: 10px;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 6px;
  position: relative;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 1.5px;
  background-color: var(--accent-red);
  box-shadow: 0 0 6px var(--accent-red);
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 23px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.5px;
}

/* Glassmorphism Generic Card */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 22px;
  backdrop-filter: blur(12px) saturate(180%);
  box-shadow: var(--glass-glow);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.glass-card:hover {
  border-color: var(--glass-border-red);
  box-shadow: 0 10px 30px rgba(255, 30, 39, 0.05);
}

/* --- DYNAMIC STATS CARD (OPEN/CLOSED) --- */
.dynamic-status-wrapper {
  margin-bottom: 24px;
  text-align: center;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
}

.status-badge.open {
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.25);
  color: var(--accent-green);
  box-shadow: 0 0 15px rgba(0, 230, 118, 0.1);
}

.status-badge.open .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-green);
  animation: pulseDotGreen 1.8s infinite ease-in-out;
}

.status-badge.closed {
  background: rgba(255, 30, 39, 0.08);
  border: 1px solid rgba(255, 30, 39, 0.25);
  color: var(--accent-red);
  box-shadow: 0 0 15px rgba(255, 30, 39, 0.1);
}

.status-badge.closed .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-red);
  animation: pulseDotRed 1.8s infinite ease-in-out;
}

/* --- STORES / UNIDADES SECTION --- */
.unidades-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.unidade-card {
  padding: 0;
  overflow: hidden;
}

.unidade-img-wrapper {
  position: relative;
  height: 180px;
  width: 100%;
}

.unidade-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.unidade-card:hover .unidade-img {
  transform: scale(1.05);
}

.unidade-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.85) 100%);
}

.unidade-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent-red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(255, 30, 39, 0.3);
}

.unidade-content {
  padding: 22px;
}

.unidade-name {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.unidade-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.unidade-info-item i {
  color: var(--accent-red);
  margin-top: 3px;
  font-size: 14px;
}

.unidade-socials {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.social-icon-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  text-decoration: none;
  font-size: 15px;
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--accent-red-glow);
  border-color: var(--accent-red);
  color: #fff;
  transform: translateY(-2px);
}

.unidade-buttons {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10px;
  margin-top: 15px;
}

.unidade-buttons .btn {
  padding: 10px 14px;
  font-size: 13px;
  border-radius: 10px;
}

/* --- CATALOG SECTION --- */
.catalog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.catalog-card {
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
}

.catalog-img-wrapper {
  position: relative;
  width: 100%;
  height: 100px;
  border-radius: 12px;
  background: radial-gradient(circle, rgba(255,30,39,0.1) 0%, rgba(0,0,0,0.4) 100%);
  border: 1px solid rgba(255, 255, 255, 0.03);
  overflow: hidden;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.catalog-svg-icon {
  width: 44px;
  height: 44px;
  stroke: var(--accent-red);
  stroke-width: 1.5;
  fill: none;
  filter: drop-shadow(0 0 8px var(--accent-red-glow-strong));
  animation: floatAnim 3.5s infinite ease-in-out;
}

.catalog-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background-color: var(--accent-red);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.catalog-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.catalog-name {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.2;
}

.catalog-desc {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.3;
  margin-bottom: 10px;
}

.catalog-card .btn-budget {
  width: 100%;
  padding: 8px 10px;
  font-size: 11px;
  border-radius: 8px;
  background: rgba(255, 30, 39, 0.08);
  border: 1px solid rgba(255, 30, 39, 0.2);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.catalog-card:hover .btn-budget {
  background: var(--accent-red);
  border-color: var(--accent-red);
  box-shadow: 0 4px 10px var(--accent-red-glow);
}

/* --- ACCESSORIES & GALLERY SWIPER --- */
.swiper-container {
  width: 100%;
  padding: 10px 0 35px 0 !important;
}

.swiper-slide {
  height: auto;
}

.accessory-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.accessory-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  color: var(--accent-red);
  font-size: 24px;
  filter: drop-shadow(0 0 5px var(--accent-red-glow));
}

.accessory-title {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.accessory-subtitle {
  font-size: 11px;
  color: var(--text-secondary);
}

/* Custom Swiper Pagination */
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3) !important;
  opacity: 1 !important;
  width: 6px !important;
  height: 6px !important;
  transition: all var(--transition-fast) !important;
}

.swiper-pagination-bullet-active {
  background: var(--accent-red) !important;
  width: 18px !important;
  border-radius: 3px !important;
  box-shadow: 0 0 8px var(--accent-red);
}

/* Gallery Slide Style */
.gallery-slide {
  border-radius: 16px;
  overflow: hidden;
  height: 240px;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--glass-border);
}

.gallery-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-slide:hover .gallery-slide-img {
  transform: scale(1.08);
}

.gallery-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.gallery-slide-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.gallery-slide-icon {
  font-size: 12px;
  color: var(--accent-red);
  opacity: 0.8;
}

/* --- DIFFERENTIALS SECTION --- */
.differentials-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.differential-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.differential-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 30, 39, 0.06);
  border: 1px solid rgba(255, 30, 39, 0.15);
  color: var(--accent-red);
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: inset 0 0 10px rgba(255,30,39,0.1);
}

.differential-text-box {
  display: flex;
  flex-direction: column;
}

.differential-title {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.differential-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* --- TESTIMONIALS SECTION --- */
.testimonial-card {
  padding: 20px;
}

.testimonial-stars {
  color: #ffb300;
  font-size: 12px;
  margin-bottom: 12px;
  display: flex;
  gap: 4px;
}

.testimonial-text {
  font-size: 13px;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 14px;
}

.testimonial-author {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.testimonial-author::before {
  content: '';
  width: 12px;
  height: 1.5px;
  background-color: var(--accent-red);
}

/* --- DYNAMIC STATS / DETAILS (MAP/HOURS) --- */
.horario-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.horario-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-secondary);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.horario-row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.horario-row.today {
  color: #fff;
  font-weight: 600;
}

.horario-row.today span:first-of-type {
  color: var(--accent-red);
}

/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  background-color: var(--accent-green);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 16px var(--accent-green-glow);
  z-index: 990;
  transition: transform var(--transition-fast);
  animation: pulseButton 2s infinite ease-in-out;
}

.whatsapp-floating:active {
  transform: scale(0.9);
}

/* --- PWA BOTTOM FLOATING BUBBLE --- */
.pwa-floating-bubble {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: calc(100% - 48px);
  max-width: calc(var(--app-max-width) - 48px);
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid var(--accent-red-glow-strong);
  border-radius: 16px;
  padding: 14px 18px;
  z-index: 980;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 15px var(--accent-red-glow);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15), visibility 0.4s ease;
}

.pwa-floating-bubble.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.pwa-bubble-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pwa-bubble-icon {
  font-size: 22px;
  color: var(--accent-red);
  animation: logoPulse 2.5s infinite ease-in-out;
}

.pwa-bubble-text {
  display: flex;
  flex-direction: column;
}

.pwa-bubble-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.pwa-bubble-desc {
  font-size: 10px;
  color: var(--text-secondary);
}

.pwa-bubble-action {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-bubble-install {
  background: var(--accent-red);
  color: #fff;
  border: none;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-bubble-install:active {
  transform: scale(0.95);
}

.btn-bubble-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  transition: color var(--transition-fast);
  padding: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-bubble-close:hover {
  color: var(--accent-red);
}

/* --- FOOTER PREMIUM --- */
.footer-section {
  background-color: #030303;
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  margin-top: auto;
}

.footer-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(255, 30, 39, 0.1);
}

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.footer-brand span {
  color: var(--accent-red);
}

.footer-desc {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.4;
  max-width: 300px;
  margin: 0 auto 20px auto;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

/* Ad card "Tenha seu cartão" */
.footer-ad-card {
  background: radial-gradient(circle at top right, rgba(255, 30, 39, 0.08) 0%, transparent 60%);
  border: 1px solid rgba(255, 30, 39, 0.1);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  text-align: center;
}

.footer-ad-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.footer-ad-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--accent-red);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 10px rgba(255, 30, 39, 0.2);
}

.footer-ad-btn:hover {
  background-color: var(--accent-red-hover);
  transform: translateY(-1px);
}

.footer-rights {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* --- ANIMATIONS KEYFRAMES --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoPulse {
  0% {
    box-shadow: 0 0 25px rgba(255, 30, 39, 0.25);
  }
  50% {
    box-shadow: 0 0 45px rgba(255, 30, 39, 0.5);
  }
  100% {
    box-shadow: 0 0 25px rgba(255, 30, 39, 0.25);
  }
}

@keyframes loadProgress {
  0% {
    width: 0%;
  }
  10% {
    width: 15%;
  }
  45% {
    width: 65%;
  }
  80% {
    width: 90%;
  }
  100% {
    width: 100%;
  }
}

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

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.5;
    filter: blur(15px);
  }
  50% {
    opacity: 0.8;
    filter: blur(22px);
  }
}

@keyframes shineAnim {
  0% {
    left: -100%;
  }
  15% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}

@keyframes scrollBounce {
  0%, 100%, 20%, 50%, 80% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-6px);
  }
  60% {
    transform: translateY(-3px);
  }
}

@keyframes pulseButton {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 230, 118, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
  }
}

@keyframes pulseDotGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.5);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(0, 230, 118, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
  }
}

@keyframes pulseDotRed {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 30, 39, 0.5);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(255, 30, 39, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 30, 39, 0);
  }
}

/* --- BRAND CATALOGS SECTION --- */
.brand-catalogs-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand-catalog-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  padding: 24px;
}

.brand-catalog-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background-color: var(--accent-red);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(255, 30, 39, 0.2);
}

.brand-catalog-badge.devia-badge {
  background: linear-gradient(135deg, #00b0ff, #0080ff);
  box-shadow: 0 4px 10px rgba(0, 128, 255, 0.2);
}

.brand-catalog-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-catalog-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 30, 39, 0.08);
  border: 1px solid rgba(255, 30, 39, 0.2);
  color: var(--accent-red);
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(255, 30, 39, 0.15);
}

.brand-catalog-icon-wrapper.devia-icon-wrapper {
  background: rgba(0, 176, 255, 0.08);
  border: 1px solid rgba(0, 176, 255, 0.2);
  color: #00b0ff;
  box-shadow: 0 0 15px rgba(0, 176, 255, 0.15);
}

.brand-catalog-info {
  display: flex;
  flex-direction: column;
}

.brand-catalog-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.brand-catalog-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.brand-catalog-btn {
  width: 100%;
  margin-top: 4px;
}

/* --- Premium Modal (Iframe Container) --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none; /* Controlled dynamically by show class */
  justify-content: center;
  align-items: center;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition-fast) ease;
}

.modal-overlay.show {
  display: flex;
  opacity: 1;
}

.modal-container {
  width: 100%;
  max-width: var(--app-max-width); /* Matches exactly 480px width limits! */
  height: 85vh;
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 30, 39, 0.1);
  transform: translateY(30px);
  transition: transform var(--transition-normal) cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.show .modal-container {
  transform: translateY(0);
}

.modal-header {
  padding: 16px 20px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-title i {
  color: var(--accent-red);
}

.modal-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-modal-action {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 15px;
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-modal-action:hover {
  color: #00a86b;
}

.btn-modal-close {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-modal-close:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
}

.modal-body {
  flex-grow: 1;
  width: 100%;
  height: 100%;
  position: relative;
  background: #000;
}

.modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
}

/* --- Repair Section & Location Selector --- */
.location-selector {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.selector-pill {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition-fast) ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.selector-pill i {
  margin-right: 6px;
  font-size: 13px;
  transition: color var(--transition-fast) ease;
}

.selector-pill:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.selector-pill.active {
  border-color: rgba(255, 30, 39, 0.3);
  background: rgba(255, 30, 39, 0.1);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 30, 39, 0.05);
}

.selector-pill.active i {
  color: var(--accent-red);
}
