/* ==========================================================================
   CSS SYSTEM — AUTO PEÇAS E MECÂNICA BERNARDES
   Premium Automotive & High-Tech Aesthetic
   ========================================================================== */

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

/* Variables & Design Tokens */
:root {
  /* Colors */
  --bg-darker: #050508;
  --bg-main: #0a0a0f;
  --bg-card: rgba(22, 22, 28, 0.7);
  --bg-card-hover: rgba(28, 28, 36, 0.85);
  
  --primary-red: #b71c1c;
  --primary-red-glow: rgba(183, 28, 28, 0.4);
  --accent-red: #e53935;
  --accent-red-glow: rgba(229, 57, 53, 0.6);
  --bright-red: #ff1744;
  
  --metal-gray: #1e1e24;
  --metal-border: rgba(255, 255, 255, 0.08);
  --metal-border-hover: rgba(255, 23, 68, 0.3);
  
  --text-white: #ffffff;
  --text-silver: #e0e0e0;
  --text-gray: #9e9e9e;
  --text-dark: #616161;
  
  --whatsapp-green: #25d366;
  --whatsapp-glow: rgba(37, 211, 102, 0.4);
  
  /* Fonts */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Safe Area / Mobile App spacing */
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Core Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  background-color: var(--bg-darker);
  color: var(--text-silver);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

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

/* Background Spark Particles & Sparkles Canvas */
#spark-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.bg-radial-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(183, 28, 28, 0.12) 0%, rgba(5, 5, 8, 0) 70%),
              radial-gradient(circle at 100% 80%, rgba(229, 57, 53, 0.05) 0%, rgba(5, 5, 8, 0) 40%);
  z-index: -1;
  pointer-events: none;
}

/* App Wrapper for centering on desktop while maintaining a standalone app format on mobile */
.app-container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  background-color: var(--bg-main);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8), 
              0 0 10px rgba(183, 28, 28, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.03);
  border-right: 1px solid rgba(255, 255, 255, 0.03);
  z-index: 1;
  display: flex;
  flex-direction: column;
}

/* LOADING SCREEN (Speedometer Concept) */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-darker);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--transition-smooth), visibility 0.6s var(--transition-smooth);
}

.loader-wrapper.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.speedometer-container {
  position: relative;
  width: 220px;
  height: 220px;
  margin-bottom: 20px;
}

.speedometer-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-10deg);
}

.speedometer-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 8;
  stroke-dasharray: 280;
  stroke-dashoffset: 0;
}

.speedometer-gauge {
  fill: none;
  stroke: url(#gauge-gradient);
  stroke-width: 8;
  stroke-dasharray: 280;
  stroke-dashoffset: 280;
  stroke-linecap: round;
  transition: stroke-dashoffset 2s cubic-bezier(0.1, 0.8, 0.2, 1);
  filter: drop-shadow(0 0 8px var(--bright-red));
}

.speedometer-ticks {
  fill: none;
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 3;
  stroke-dasharray: 2 12;
}

.loader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid var(--primary-red);
  padding: 3px;
  background: var(--bg-darker);
  box-shadow: 0 0 20px var(--primary-red-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  animation: logo-glow-reveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.4s;
}

.loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.loader-digital-speed {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-white);
  text-shadow: 0 0 10px var(--accent-red-glow);
}

.loader-text {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-gray);
  margin-top: 10px;
  text-transform: uppercase;
}

.loader-bar-bg {
  width: 160px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  margin-top: 15px;
  overflow: hidden;
}

.loader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-red), var(--bright-red));
  box-shadow: 0 0 10px var(--bright-red);
  border-radius: 2px;
  transition: width 2s cubic-bezier(0.1, 0.8, 0.2, 1);
}

/* TOP BANNER — Drag hint */
.top-drag-banner {
  width: 100%;
  background: linear-gradient(180deg, rgba(7, 7, 10, 0.95) 0%, rgba(7, 7, 10, 0) 100%);
  padding: 12px 16px 8px 16px;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-silver);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  pointer-events: none;
  animation: banner-bounce 2s infinite ease-in-out;
}

.top-drag-banner i {
  color: var(--accent-red);
  filter: drop-shadow(0 0 3px var(--bright-red));
}

/* HERO SECTION */
.hero-section {
  position: relative;
  width: 100%;
  padding: 60px 20px 35px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(7, 7, 10, 0.6) 0%, var(--bg-main) 100%),
              url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h20v20H0V0zm1 1v18h18V1H1z" fill="%23ffffff" fill-opacity="0.015"/></svg>');
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Metal Grill Texture Panel behind Logo */
.hero-grill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(183, 28, 28, 0.08) 15%, transparent 20%);
  background-size: 12px 12px;
  opacity: 0.7;
  pointer-events: none;
}

.logo-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin-top: 15px;
  margin-bottom: 25px;
  z-index: 2;
}

.logo-ring-outer {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0));
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8),
              0 0 25px var(--primary-red-glow);
  animation: logo-pulse 3s infinite ease-in-out;
}

.logo-ring-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 2px solid var(--primary-red);
  padding: 4px;
  background: #0f0f13;
  overflow: hidden;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.9);
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.5s var(--transition-smooth);
}

.logo-wrapper:hover .logo-img {
  transform: scale(1.08) rotate(5deg);
}

.company-title {
  font-family: var(--font-title);
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  background: linear-gradient(180deg, #ffffff 50%, #dcdcdc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.company-title span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-red);
  -webkit-text-fill-color: var(--accent-red);
  letter-spacing: 3px;
  margin-top: 4px;
}

.slogan-principal {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-silver);
  margin-bottom: 8px;
}

.sub-slogan {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-white);
  background: linear-gradient(90deg, transparent, rgba(183, 28, 28, 0.7), transparent);
  padding: 4px 15px;
  border-radius: 12px;
  border-left: 2px solid var(--bright-red);
  border-right: 2px solid var(--bright-red);
  box-shadow: 0 0 10px rgba(183, 28, 28, 0.2);
  margin-bottom: 25px;
}

/* BUTTON GRIDS & CTAs */
.hero-actions-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  z-index: 2;
}

.hero-actions-grid .btn-full {
  grid-column: span 2;
}

/* Button Premium Standard */
.btn-premium {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  border-radius: 12px;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: 1px solid var(--metal-border);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-premium::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(25deg);
  pointer-events: none;
}

.btn-premium:hover::after {
  animation: shine-effect 1.2s ease-in-out infinite;
}

.btn-premium:active {
  transform: scale(0.97);
}

/* Button Variants */
.btn-red-metallic {
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px var(--primary-red-glow);
}

.btn-red-metallic:hover {
  background: linear-gradient(135deg, #e53935 0%, #d32f2f 100%);
  box-shadow: 0 4px 20px var(--accent-red-glow);
  transform: translateY(-2px);
}

.btn-outline-red {
  background: rgba(183, 28, 28, 0.08);
  color: var(--bright-red);
  border: 1.5px solid var(--bright-red);
  box-shadow: inset 0 0 10px rgba(183, 28, 28, 0.1);
}

.btn-outline-red:hover {
  background: rgba(183, 28, 28, 0.15);
  box-shadow: 0 0 15px var(--primary-red-glow);
  transform: translateY(-2px);
}

.btn-outline-red.pulsing i {
  animation: heart-beat 1.5s infinite;
}

.btn-metal {
  background: linear-gradient(135deg, #22222a 0%, #15151c 100%);
  color: var(--text-white);
  border-color: var(--metal-border);
}

.btn-metal:hover {
  background: linear-gradient(135deg, #2d2d38 0%, #1a1a24 100%);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-glow-pwa {
  background: linear-gradient(135deg, #16161f 0%, #0c0c12 100%);
  color: var(--text-white);
  border: 1.5px solid var(--bright-red);
  box-shadow: 0 0 15px rgba(255, 23, 68, 0.25);
  animation: border-pulse 2.5s infinite alternate;
}

.btn-glow-pwa:hover {
  background: linear-gradient(135deg, #22222c 0%, #13131d 100%);
  box-shadow: 0 0 25px rgba(255, 23, 68, 0.4);
  transform: translateY(-2px);
}

.btn-green-metallic {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px var(--whatsapp-glow);
}

.btn-green-metallic:hover {
  background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
  transform: translateY(-2px);
}

/* APP PORTFOLIO CAROUSEL */
.carousel-container {
  width: 100%;
  padding: 0 20px 25px 20px;
  background-color: var(--bg-main);
}

.carousel-title {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-title::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.05), transparent);
}

.carousel-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--metal-border);
  position: relative;
  aspect-ratio: 16 / 9;
}

.carousel-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-slide {
  width: 33.333%;
  height: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.carousel-slide-title {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 2px;
}

.carousel-slide-desc {
  font-size: 11px;
  color: var(--text-gray);
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(10, 10, 15, 0.8);
  border: 1px solid var(--metal-border);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
}

.carousel-nav-btn:hover {
  background: var(--primary-red);
  border-color: var(--accent-red);
}

.carousel-btn-prev {
  left: 10px;
}

.carousel-btn-next {
  right: 10px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.carousel-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-indicator.active {
  width: 18px;
  border-radius: 3px;
  background: var(--bright-red);
  box-shadow: 0 0 5px var(--bright-red);
}

/* SECTION GLOBAL STRUCTURE */
.section-wrapper {
  padding: 30px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-wrapper.no-border {
  border-bottom: none;
}

.section-header {
  margin-bottom: 25px;
}

.section-label {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent-red);
  display: block;
  margin-bottom: 5px;
  text-shadow: 0 0 8px rgba(229, 57, 53, 0.3);
}

.section-title {
  font-family: var(--font-title);
  font-size: 21px;
  font-weight: 800;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title i {
  color: var(--primary-red);
}

/* CARD GLASSMORPHISM & HOVERS */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--metal-border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-smooth);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--metal-border-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5),
              0 0 15px rgba(183, 28, 28, 0.1);
}

/* SERVICES SECTION */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 18px;
  align-items: center;
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1e1e24 0%, #111115 100%);
  border: 1px solid var(--metal-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bright-red);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: all var(--transition-smooth);
  flex-shrink: 0;
}

.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--primary-red) 0%, #900c0c 100%);
  color: var(--text-white);
  box-shadow: 0 4px 12px var(--primary-red-glow);
  transform: scale(1.08) rotate(-5deg);
}

.service-card:hover .service-icon-box i {
  filter: drop-shadow(0 0 5px var(--text-white));
}

.service-info {
  flex-grow: 1;
}

.service-name {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 3px;
  text-transform: uppercase;
}

.service-desc {
  font-size: 12.5px;
  color: var(--text-gray);
  line-height: 1.4;
}

/* DIFFERENTIALS SECTION */
.differentials-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

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

.diff-check-box {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(183, 28, 28, 0.15);
  border: 1px solid rgba(255, 23, 68, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bright-red);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(183, 28, 28, 0.2);
}

.differential-item:hover .diff-check-box {
  background: var(--bright-red);
  color: var(--text-white);
  box-shadow: 0 0 10px var(--bright-red);
}

.diff-text-box {
  flex-grow: 1;
}

.diff-title {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
}

.diff-sub {
  font-size: 12px;
  color: var(--text-gray);
}

/* TESTIMONIALS SECTION */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.testimonial-card {
  padding: 20px;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.testimonial-author {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
}

.testimonial-author span {
  display: block;
  font-size: 11px;
  color: var(--text-dark);
  font-weight: 500;
}

.stars-container {
  display: flex;
  gap: 2px;
  color: #ffb300;
  filter: drop-shadow(0 0 2px rgba(255, 179, 0, 0.4));
}

.stars-container i {
  font-size: 12px;
  animation: star-pulse 2s infinite ease-in-out;
}

.stars-container i:nth-child(2) { animation-delay: 0.2s; }
.stars-container i:nth-child(3) { animation-delay: 0.4s; }
.stars-container i:nth-child(4) { animation-delay: 0.6s; }
.stars-container i:nth-child(5) { animation-delay: 0.8s; }

.testimonial-comment {
  font-size: 13px;
  color: var(--text-silver);
  font-style: italic;
  line-height: 1.5;
  position: relative;
  padding-left: 15px;
}

.testimonial-comment::before {
  content: '“';
  position: absolute;
  left: 0;
  top: -5px;
  font-family: var(--font-title);
  font-size: 26px;
  color: var(--primary-red);
  opacity: 0.6;
}

/* BUDGET CTA SECTION (Destaque Orçamento) */
.budget-cta-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(22, 22, 28, 0.9) 0%, rgba(10, 10, 15, 0.95) 100%);
  border: 1.5px solid var(--primary-red);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 
              0 0 15px var(--primary-red-glow);
  text-align: center;
  padding: 30px 20px;
}

.budget-cta-badge {
  position: absolute;
  top: 12px;
  right: -30px;
  background: var(--bright-red);
  color: var(--text-white);
  font-family: var(--font-title);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 30px;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  letter-spacing: 1px;
}

.budget-cta-text {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 8px;
}

.budget-cta-subtext {
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 22px;
  line-height: 1.5;
  padding: 0 10px;
}

/* EMERGENCY SECTION */
.emergency-card {
  background: linear-gradient(135deg, rgba(144, 12, 12, 0.4) 0%, rgba(22, 22, 28, 0.85) 100%);
  border: 1.5px solid var(--bright-red);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5),
              inset 0 0 20px rgba(255, 23, 68, 0.1);
  padding: 25px 20px;
  position: relative;
}

.emergency-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.emergency-pulse-box {
  width: 48px;
  height: 48px;
  background: var(--bright-red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  box-shadow: 0 0 15px var(--bright-red);
  animation: pulse-glow-red 1.5s infinite;
  flex-shrink: 0;
}

.emergency-pulse-box i {
  font-size: 20px;
}

.emergency-title-box h3 {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-white);
}

.emergency-title-box span {
  font-size: 11px;
  color: var(--bright-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.emergency-desc {
  font-size: 13px;
  color: var(--text-silver);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* LIVE STATUS SECTION */
.live-hours-card {
  padding: 25px 20px;
}

.live-indicator-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
}

.live-clock-box {
  display: flex;
  flex-direction: column;
}

.live-clock-label {
  font-size: 11px;
  color: var(--text-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.live-time {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-white);
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 30px;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.live-badge.open {
  background: rgba(46, 125, 50, 0.15);
  border: 1px solid #2e7d32;
  color: #4caf50;
}

.live-badge.open i {
  color: #4caf50;
  animation: pulse-dot 1.5s infinite;
}

.live-badge.closed {
  background: rgba(183, 28, 28, 0.15);
  border: 1px solid #b71c1c;
  color: #ff5252;
}

.live-badge.closed i {
  color: #ff5252;
  animation: pulse-dot-red 1.5s infinite;
}

/* Hours Table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

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

.hours-row:last-child {
  border-bottom: none;
}

.hours-row.current-day {
  color: var(--bright-red);
  font-weight: 700;
}

.hours-day {
  color: var(--text-silver);
  text-transform: capitalize;
}

.hours-row.current-day .hours-day {
  color: var(--text-white);
}

.hours-val {
  color: var(--text-white);
}

.hours-row.current-day .hours-val {
  color: var(--bright-red);
}

/* LOCATION & INTEGRATED GOOGLE MAPS */
.map-card {
  padding: 10px;
  overflow: hidden;
}

.map-iframe-container {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--metal-border);
  /* Elegant dark mode Google Maps filter using standard CSS */
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
  -webkit-filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
  margin-bottom: 15px;
}

.map-address-box {
  padding: 10px 10px 15px 10px;
}

.map-address-title {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.map-address-text {
  font-size: 12.5px;
  color: var(--text-gray);
  line-height: 1.4;
  margin-bottom: 15px;
}

/* PWA INSTALL SECTION */
.pwa-install-card {
  text-align: center;
  background: linear-gradient(135deg, rgba(22, 22, 28, 0.8) 0%, rgba(183, 28, 28, 0.05) 100%);
  border: 1px solid var(--metal-border);
  padding: 30px 20px;
}

.pwa-mockup-wrapper {
  margin: 0 auto 20px auto;
  position: relative;
  width: 110px;
  height: 110px;
}

.pwa-app-icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 22px;
  background: #0f0f13;
  border: 2px solid var(--primary-red);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 
              0 0 15px var(--primary-red-glow);
  position: absolute;
  top: 10px;
  left: 10px;
  overflow: hidden;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pwa-app-icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.pwa-device-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 50%);
  pointer-events: none;
}

.pwa-install-title {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 8px;
}

.pwa-install-text {
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 22px;
  line-height: 1.5;
}

/* EXTRA PREMIUM SECTION (Final) */
.extra-premium-section {
  background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-darker) 100%);
  padding: 45px 20px 40px 20px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.extra-premium-title {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 25px;
  letter-spacing: 0.5px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.extra-premium-title span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--bright-red);
  letter-spacing: 3px;
  margin-bottom: 5px;
}

.extra-premium-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.extra-premium-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  padding: 10px 16px;
  border-radius: 12px;
  text-align: left;
}

.extra-premium-row i {
  color: var(--bright-red);
  font-size: 16px;
  filter: drop-shadow(0 0 4px var(--bright-red));
}

.extra-premium-row span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-silver);
}

/* PREMIUM FOOTER */
.footer-premium {
  background: #050508;
  padding: 40px 20px calc(105px + var(--safe-bottom)) 20px; /* Large space for floating bars */
  border-top: 2px solid var(--primary-red);
  position: relative;
  z-index: 2;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--primary-red);
  padding: 2px;
  background: #0f0f13;
  overflow: hidden;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.footer-logo-title {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-white);
  line-height: 1.2;
}

.footer-logo-title span {
  display: block;
  font-size: 11px;
  color: var(--text-gray);
  font-weight: 500;
  letter-spacing: 1px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.4;
}

.footer-contact-item i {
  color: var(--bright-red);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: var(--text-silver);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
  color: var(--bright-red);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.footer-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.footer-social-btn:hover {
  background: var(--primary-red);
  border-color: var(--accent-red);
  transform: translateY(-2px);
}

/* Custom Social Icon Masks using local PNG assets colored in RED by default */
.social-icon-mask {
  width: 20px;
  height: 20px;
  background-color: var(--accent-red); /* DEFAULT RED COLOR AS REQUESTED! */
  display: inline-block;
  transition: background-color var(--transition-fast);
}

.mask-instagram {
  -webkit-mask-image: url('instagram.png');
  mask-image: url('instagram.png');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.mask-facebook {
  -webkit-mask-image: url('facebook.png');
  mask-image: url('facebook.png');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* Mask turns white on hover to stand out on the red background */
.footer-social-btn:hover .social-icon-mask {
  background-color: var(--text-white);
}

.footer-bottom-info {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-copyright {
  font-size: 11px;
  color: var(--text-dark);
}

.footer-dev {
  font-size: 11px;
  color: var(--text-dark);
}

.footer-dev a {
  color: var(--text-gray);
  text-decoration: none;
}

.footer-dev a:hover {
  color: var(--bright-red);
}

/* FLOATING CONTROLS & BOTTOM BARS */
.floating-footer-bars {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  z-index: 999;
  pointer-events: none; /* Allows click through to items under it unless clicking the elements themselves */
  padding: 12px 16px calc(12px + var(--safe-bottom)) 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.floating-bar {
  pointer-events: auto; /* Re-enable clicks */
  width: 100%;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7);
  transition: all var(--transition-smooth);
  animation: slide-in-bar 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.floating-bar.hide {
  transform: translateY(150px) translateX(0);
  opacity: 0;
  pointer-events: none;
}

/* WhatsApp Floating Bar */
.bar-whatsapp {
  border: 1px solid rgba(37, 211, 102, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5),
              0 0 10px rgba(37, 211, 102, 0.15);
}

.bar-wa-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bar-wa-pulse-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  box-shadow: 0 0 10px var(--whatsapp-glow);
  animation: pulse-glow-green 1.6s infinite;
  flex-shrink: 0;
}

.bar-wa-pulse-icon i {
  font-size: 16px;
}

.bar-wa-text {
  display: flex;
  flex-direction: column;
}

.bar-wa-label {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 800;
  color: var(--text-white);
  text-transform: uppercase;
}

.bar-wa-sub {
  font-size: 10.5px;
  color: var(--text-gray);
}

.bar-wa-action {
  background: var(--whatsapp-green);
  color: var(--text-white);
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: all var(--transition-fast);
}

.bar-wa-action:hover {
  background: #20ba5a;
  transform: translateY(-1px);
}

/* Install PWA Floating Bar */
.bar-install {
  border: 1px solid rgba(255, 23, 68, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5),
              0 0 10px rgba(255, 23, 68, 0.15);
  display: none; /* Dynamic visibility via JS based on event listener */
}

.bar-inst-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bar-inst-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bright-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  box-shadow: 0 0 10px rgba(255, 23, 68, 0.4);
  animation: pulse-glow-red-small 1.6s infinite;
  flex-shrink: 0;
}

.bar-inst-text {
  display: flex;
  flex-direction: column;
}

.bar-inst-label {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 800;
  color: var(--text-white);
  text-transform: uppercase;
}

.bar-inst-sub {
  font-size: 10.5px;
  color: var(--text-gray);
}

.bar-inst-action {
  background: var(--bright-red);
  color: var(--text-white);
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: all var(--transition-fast);
}

.bar-inst-action:hover {
  background: var(--accent-red);
  transform: translateY(-1px);
}

/* Close button for floating bars */
.bar-close-btn {
  background: transparent;
  border: none;
  color: var(--text-dark);
  font-size: 12px;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
  margin-left: 2px;
}

.bar-close-btn:hover {
  color: var(--bright-red);
}

/* IOS HELPER MODAL BOTTOM-SHEET */
.ios-sheet-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--transition-smooth);
}

.ios-sheet-overlay.active {
  opacity: 1;
  visibility: visible;
}

.ios-bottom-sheet {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 100%;
  max-width: 480px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-top: 1px solid var(--metal-border-hover);
  padding: 25px 20px calc(25px + var(--safe-bottom)) 20px;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ios-sheet-overlay.active .ios-bottom-sheet {
  transform: translateX(-50%) translateY(0);
}

.ios-sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.ios-sheet-title {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ios-sheet-title i {
  color: var(--bright-red);
}

.ios-sheet-close {
  background: transparent;
  border: none;
  color: var(--text-gray);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
}

.ios-steps {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ios-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-silver);
}

.ios-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-red);
  color: var(--text-white);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ios-step-text {
  flex-grow: 1;
  padding-top: 1px;
}

.ios-step-text .ios-share-icon {
  display: inline-flex;
  background: rgba(255,255,255,0.06);
  padding: 4px 6px;
  border-radius: 6px;
  width: 16px;
  height: 16px;
  color: #007aff; /* Apple Blue color */
  margin: 0 2px;
  vertical-align: middle;
}

.ios-step-text .ios-plus-icon {
  display: inline-flex;
  background: rgba(255,255,255,0.06);
  padding: 4px 6px;
  border-radius: 6px;
  width: 16px;
  height: 16px;
  color: var(--text-white);
  margin: 0 2px;
  vertical-align: middle;
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */

@keyframes shine-effect {
  100% {
    left: 120%;
  }
}

@keyframes banner-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

@keyframes logo-glow-reveal {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes logo-pulse {
  0%, 100% {
    box-shadow: inset 0 0 10px rgba(0,0,0,0.8), 0 0 25px var(--primary-red-glow);
    border-color: rgba(255,255,255,0.05);
  }
  50% {
    box-shadow: inset 0 0 10px rgba(0,0,0,0.8), 0 0 35px var(--accent-red-glow);
    border-color: rgba(255, 23, 68, 0.25);
  }
}

@keyframes border-pulse {
  0% {
    border-color: rgba(255, 23, 68, 0.4);
    box-shadow: 0 0 10px rgba(255, 23, 68, 0.15);
  }
  100% {
    border-color: rgba(255, 23, 68, 0.85);
    box-shadow: 0 0 20px rgba(255, 23, 68, 0.4);
  }
}

@keyframes heart-beat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.15); }
  50% { transform: scale(1); }
  75% { transform: scale(1.15); }
}

@keyframes pulse-glow-red {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 23, 68, 0.5);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 23, 68, 0.9), 0 0 5px rgba(255, 23, 68, 0.4);
  }
}

@keyframes pulse-glow-red-small {
  0%, 100% {
    box-shadow: 0 0 5px rgba(255, 23, 68, 0.4);
  }
  50% {
    box-shadow: 0 0 15px rgba(255, 23, 68, 0.7);
  }
}

@keyframes pulse-glow-green {
  0%, 100% {
    box-shadow: 0 0 5px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 0 18px rgba(37, 211, 102, 0.8);
  }
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.85);
  }
}

@keyframes pulse-dot-red {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 0 2px #ff5252);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.85);
    filter: none;
  }
}

@keyframes star-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

@keyframes slide-in-bar {
  0% {
    transform: translateY(150px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Scroll reveal helper classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   CALENDAR & SCHEDULING SYSTEM
   ========================================================================== */
.calendar-card {
  padding: 18px;
  overflow: hidden;
}

/* Custom Native Premium Calendar Widget */
.calendar-widget {
  width: 100%;
  background: rgba(20, 20, 26, 0.4);
  border: 1px solid var(--metal-border);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.calendar-widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.calendar-month-year {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-white);
}

.calendar-nav-controls {
  display: flex;
  gap: 8px;
}

.calendar-widget-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--metal-border);
  color: var(--text-silver);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.calendar-widget-nav-btn:hover:not(:disabled) {
  background: var(--primary-red);
  border-color: var(--accent-red);
  color: var(--text-white);
}

.calendar-widget-nav-btn:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.calendar-weekdays-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 10px;
}

.calendar-weekday-label {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-red);
  opacity: 0.8;
}

.calendar-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  text-align: center;
}

.calendar-day-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-silver);
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.calendar-day-cell:hover:not(.disabled):not(.selected) {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.1);
}

.calendar-day-cell.disabled {
  color: var(--text-dark);
  opacity: 0.3;
  cursor: not-allowed;
}

.calendar-day-cell.selected {
  background: linear-gradient(135deg, var(--accent-red) 0%, var(--primary-red) 100%);
  color: var(--text-white);
  font-weight: 800;
  border-color: var(--bright-red);
  box-shadow: 0 0 12px rgba(255, 23, 68, 0.4);
}

.calendar-day-cell.today {
  border-color: rgba(255, 23, 68, 0.4);
  text-decoration: underline;
}

.calendar-actions-box {
  padding: 5px 8px 10px 8px;
}

.calendar-actions-title {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.calendar-actions-title i {
  color: var(--bright-red);
}

.calendar-actions-desc {
  font-size: 12.5px;
  color: var(--text-gray);
  line-height: 1.4;
  margin-bottom: 18px;
}

/* Styled Period Selector Cards */
.period-selector-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 15px;
}

.period-card-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--metal-border);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-gray);
}

.period-card-btn:hover {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-silver);
}

.period-card-btn.active {
  background: rgba(183, 28, 28, 0.1);
  border-color: var(--bright-red);
  color: var(--text-white);
  box-shadow: inset 0 0 10px rgba(183, 28, 28, 0.2);
}

.period-card-title {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 3px;
  letter-spacing: 0.5px;
}

.period-card-hours {
  font-size: 10.5px;
  opacity: 0.8;
}

/* Interactive Scheduling Proposal Form */
.sched-form-container {
  margin-top: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sched-form-title {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-white);
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sched-form-title i {
  color: var(--whatsapp-green);
}

.sched-input-group {
  margin-bottom: 14px;
  text-align: left;
}

.sched-input-label {
  display: block;
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-silver);
  margin-bottom: 5px;
}

.sched-input {
  width: 100%;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--metal-border);
  border-radius: 8px;
  color: var(--text-white);
  padding: 0 12px;
  font-family: var(--font-body);
  font-size: 13.5px;
  transition: all var(--transition-fast);
}

.sched-input:focus {
  outline: none;
  border-color: var(--bright-red);
  background-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 8px rgba(255, 23, 68, 0.2);
}

/* ==========================================================================
   SERVICE TRACKING & ADMIN SYSTEM
   ========================================================================== */

/* Main Tracking Card CSS */
.tracking-header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  position: relative;
}

.tracking-admin-gear-btn {
  background: transparent;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tracking-admin-gear-btn:hover {
  color: var(--accent-red);
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.05);
}

.tracking-search-wrapper {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.tracking-input {
  flex-grow: 1;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--metal-border);
  border-radius: 8px;
  color: var(--text-white);
  padding: 0 12px;
  font-family: var(--font-body);
  font-size: 13.5px;
  transition: all var(--transition-fast);
}

.tracking-input:focus {
  outline: none;
  border-color: var(--bright-red);
  background-color: rgba(255, 255, 255, 0.06);
}

.tracking-btn {
  height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
  border: none;
  color: var(--text-white);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.tracking-btn:hover {
  background: linear-gradient(135deg, #e53935 0%, #d32f2f 100%);
  box-shadow: 0 0 10px var(--primary-red-glow);
}

/* Visual Results Stepper */
.tracking-results-box {
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  animation: fadeIn 0.4s ease-out;
}

.tracking-client-details {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--metal-border);
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 20px;
}

.tracking-detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 12px;
}

.tracking-detail-row:last-child {
  margin-bottom: 0;
}

.tracking-detail-label {
  color: var(--text-gray);
  font-weight: 600;
}

.tracking-detail-val {
  color: var(--text-white);
  font-weight: 700;
}

.tracking-stepper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 30px 10px 10px 10px;
}

.tracking-stepper::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.tracking-stepper-progress {
  position: absolute;
  top: 16px;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-red), var(--whatsapp-green));
  z-index: 1;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.tracking-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tracking-step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #121218;
  border: 2px solid var(--metal-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: all 0.6s ease;
}

.tracking-step-label {
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 10px;
  color: var(--text-dark);
  transition: color 0.6s ease;
  letter-spacing: 0.5px;
}

/* Step Active/Completed states */
.tracking-step.active .tracking-step-circle {
  border-color: var(--accent-red);
  color: var(--text-white);
  box-shadow: 0 0 15px var(--accent-red-glow);
  background: linear-gradient(135deg, var(--accent-red) 0%, var(--primary-red) 100%);
  animation: pulse-glow-step 2s infinite alternate;
}

.tracking-step.active .tracking-step-label {
  color: var(--accent-red);
}

.tracking-step.completed .tracking-step-circle {
  border-color: var(--whatsapp-green);
  color: var(--text-white);
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
}

.tracking-step.completed .tracking-step-label {
  color: var(--whatsapp-green);
}

/* Elegant Error Toast */
.tracking-error-alert {
  background: rgba(183, 28, 28, 0.1);
  border: 1px solid var(--bright-red);
  border-radius: 10px;
  padding: 12px 15px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-white);
  font-size: 12.5px;
  animation: shakeError 0.4s ease;
}

.tracking-error-alert i {
  color: var(--bright-red);
  flex-shrink: 0;
}

/* ==========================================================================
   ADMIN PORTAL DASHBOARD MODAL
   ========================================================================== */
.admin-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
  padding: 20px;
}

.admin-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.admin-modal-box {
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  border: 1px solid var(--metal-border);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8),
              0 0 30px rgba(183, 28, 28, 0.05);
  overflow: hidden;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  transition: transform var(--transition-smooth);
}

.admin-modal-overlay.active .admin-modal-box {
  transform: translateY(0);
}

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

.admin-modal-title {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.admin-modal-close-btn {
  background: transparent;
  border: none;
  color: var(--text-gray);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.admin-modal-close-btn:hover {
  color: var(--text-white);
}

.admin-modal-body {
  padding: 20px;
  overflow-y: auto;
  flex-grow: 1;
}

/* Admin Lock Login Screen Styles */
.admin-lock-screen {
  text-align: center;
  padding: 20px 10px;
}

.admin-lock-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(183, 28, 28, 0.1);
  border: 1px solid rgba(255, 23, 68, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bright-red);
  margin: 0 auto 20px auto;
  box-shadow: 0 0 15px rgba(183, 28, 28, 0.2);
}

.admin-lock-desc {
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Dashboard Panel Layout */
.admin-dashboard-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.admin-section-title {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-silver);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.admin-form-box {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 15px;
}

/* Auto-Generate Code Row styling */
.admin-code-row {
  display: flex;
  gap: 10px;
}

.admin-badge-btn {
  height: 44px;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--metal-border);
  color: var(--text-silver);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.admin-badge-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Database Table/List UI */
.admin-db-box {
  max-height: 350px;
  overflow-y: auto;
  border: 1px solid var(--metal-border);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
}

.admin-service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  gap: 12px;
}

.admin-service-row:last-child {
  border-bottom: none;
}

.admin-service-info {
  flex-grow: 1;
}

.admin-service-name-text {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 2px;
}

.admin-service-meta-text {
  font-size: 11px;
  color: var(--text-gray);
}

.admin-service-meta-text span {
  font-family: var(--font-title);
  color: var(--accent-red);
  font-weight: 700;
  margin-left: 5px;
  background: rgba(183, 28, 28, 0.1);
  padding: 1px 4px;
  border-radius: 4px;
}

.admin-actions-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Style for changing service status */
.admin-status-dropdown {
  height: 30px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--metal-border);
  border-radius: 6px;
  color: var(--text-silver);
  padding: 0 8px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-title);
  text-transform: uppercase;
  cursor: pointer;
}

.admin-status-dropdown:focus {
  outline: none;
  border-color: var(--bright-red);
}

.admin-delete-btn {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: rgba(183, 28, 28, 0.1);
  border: 1px solid rgba(255, 23, 68, 0.2);
  color: var(--bright-red);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.admin-delete-btn:hover {
  background: var(--bright-red);
  color: var(--text-white);
  border-color: var(--bright-red);
}

/* Animations */
@keyframes shakeError {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

@keyframes pulse-glow-step {
  from {
    filter: drop-shadow(0 0 4px var(--accent-red-glow));
  }
  to {
    filter: drop-shadow(0 0 12px var(--bright-red));
  }
}

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

/* ==========================================================================
   CUSTOM REFINEMENT STYLES — MECÂNICA BERNARDES
   ========================================================================== */

/* Missão, Visão e Valores (MVV) list styling */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 15px; }
@media (max-width: 768px) { .mvv-grid { grid-template-columns: 1fr; gap: 14px; } }
.mvv-card { padding: 20px 15px; text-align: center; display: flex; flex-direction: column; align-items: center; transition: all var(--transition-smooth); }
.mvv-card:hover { transform: translateY(-3px); border-color: rgba(255, 23, 68, 0.2); box-shadow: 0 8px 25px rgba(0,0,0,0.4); }
.mvv-icon-box { width: 48px; height: 48px; border-radius: 50%; background: rgba(183, 28, 28, 0.1); border: 1px solid rgba(255, 23, 68, 0.25); display: flex; align-items: center; justify-content: center; color: var(--bright-red); margin-bottom: 15px; box-shadow: 0 0 10px rgba(255, 23, 68, 0.1); transition: all var(--transition-fast); }
.mvv-card:hover .mvv-icon-box { background: var(--bright-red); color: var(--text-white); box-shadow: 0 0 15px var(--bright-red); }
.mvv-title { font-family: var(--font-title); font-size: 15px; font-weight: 800; text-transform: uppercase; color: var(--text-white); margin-bottom: 10px; letter-spacing: 0.5px; }
.mvv-desc { font-size: 12px; line-height: 1.5; color: var(--text-silver); margin: 0; }

.mvv-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  width: 100%;
}
.mvv-list li {
  font-size: 12px !important;
  line-height: 1.4;
  color: var(--text-silver);
  display: block !important;
  text-align: center !important;
  margin: 0;
  padding: 0;
}

/* Tracking Card Highlight (Fundo Vermelho Acompanhar Serviço) */
.tracking-card-highlight {
  background: linear-gradient(135deg, rgba(183, 28, 28, 0.45) 0%, rgba(22, 22, 28, 0.9) 100%) !important;
  border: 1px solid rgba(255, 23, 68, 0.3) !important;
  box-shadow: 0 12px 35px rgba(183, 28, 28, 0.25) !important;
}
.tracking-card-highlight .tracking-input {
  background-color: rgba(0, 0, 0, 0.4) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Nossos Diferenciais - Premium Grid Layout & Fundo Vermelho */
.differentials-intro-card { padding: 25px 20px; }
.diff-intro-text { font-size: 13.5px; line-height: 1.6; color: var(--text-silver); margin-bottom: 25px; text-align: justify; }
.diff-subtitle { font-family: var(--font-title); font-size: 15px; font-weight: 800; text-transform: uppercase; color: var(--text-white); margin-bottom: 20px; letter-spacing: 0.5px; text-align: center; position: relative; display: inline-block; left: 50%; transform: translateX(-50%); }
.diff-subtitle::after { content: ''; position: absolute; bottom: -6px; left: 20%; right: 20%; height: 2px; background: var(--bright-red); }

.differentials-card-red-gradient {
  background: linear-gradient(135deg, rgba(183, 28, 28, 0.4) 0%, rgba(10, 10, 15, 0.9) 100%) !important;
  border: 1.5px solid rgba(255, 23, 68, 0.25) !important;
  box-shadow: 0 15px 40px rgba(183, 28, 28, 0.2) !important;
}

.differentials-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 25px;
}
@media (max-width: 480px) {
  .differentials-grid-new {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .diff-card-full-width {
    grid-column: span 1 !important;
  }
}

.diff-card-new {
  background: rgba(0, 0, 0, 0.25) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 12px;
  padding: 18px 15px !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  justify-content: center;
  align-items: center;
  transition: all var(--transition-smooth);
}
.diff-card-new:hover {
  background: rgba(255, 23, 68, 0.1) !important;
  border-color: var(--bright-red) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.diff-card-full-width {
  grid-column: span 2;
}

.diff-desc-new {
  font-size: 12.5px !important;
  font-weight: 500;
  color: var(--text-white) !important;
  line-height: 1.4;
}

.diff-conclusion-box {
  margin-top: 25px;
  padding: 15px;
  background: rgba(183, 28, 28, 0.05);
  border-left: 3px solid var(--bright-red);
  border-radius: 4px 12px 12px 4px;
}
.diff-conclusion-text {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-silver);
  font-style: italic;
  margin: 0;
  text-align: center;
}

/* Testimonials Solid Stars */
.stars-container svg {
  fill: #ffb300 !important;
  stroke: #ffb300 !important;
  filter: drop-shadow(0 0 4px rgba(255, 179, 0, 0.3));
}

/* Interactive Budget Form Card & Ribbon Fix */
.budget-form-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--metal-border);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  padding: 30px 20px;
  text-align: center;
}
.budget-cta-text {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-white);
}
.budget-cta-text i {
  color: var(--bright-red);
  margin-right: 5px;
}
.budget-cta-subtext {
  font-size: 12.5px;
  color: var(--text-gray);
  line-height: 1.5;
  padding: 0 10px;
}
.budget-form-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 100%;
  margin: 0 auto;
}
.budget-cta-badge {
  position: absolute;
  top: 16px;
  right: -32px;
  background: linear-gradient(135deg, var(--bright-red) 0%, var(--primary-red) 100%);
  color: var(--text-white);
  font-family: var(--font-title);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 6px 32px;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  letter-spacing: 1px;
  z-index: 10;
}

/* ==========================================================================
   SOCIAL NETWORKS RED PREMIUM BUTTONS & WHITE ICONS — MECÂNICA BERNARDES
   ========================================================================== */
.hero-socials, .footer-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 15px;
  margin-bottom: 25px;
  z-index: 5;
}

.hero-social-btn, .footer-social-btn {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-red) 0%, var(--primary-red) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  cursor: pointer;
}

.hero-social-btn:hover, .footer-social-btn:hover {
  background: linear-gradient(135deg, var(--bright-red) 0%, var(--accent-red) 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 0 15px var(--accent-red-glow);
}

.social-icon-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1) !important; /* Forces PNG to render in pure white */
  transition: transform var(--transition-fast);
}

.hero-social-btn:hover .social-icon-img, .footer-social-btn:hover .social-icon-img {
  transform: scale(1.1);
}

/* ==========================================================================
   MINIMAL MVV STYLES (Less Prominence, Near Footer)
   ========================================================================== */
.mvv-section-minimal {
  padding: 25px 20px !important;
  border-bottom: none !important;
}

.mvv-minimal-container {
  padding: 20px !important;
  background: rgba(22, 22, 28, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.mvv-minimal-title {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-gray);
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 20px;
}

.mvv-minimal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .mvv-minimal-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.mvv-minimal-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mvv-minimal-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mvv-minimal-header h4 {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-white);
  margin: 0;
}

.mvv-minimal-icon {
  color: var(--accent-red);
  width: 16px !important;
  height: 16px !important;
  opacity: 0.8;
}

.mvv-minimal-desc {
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--text-gray);
  margin: 0;
  text-align: left;
}

.mvv-minimal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mvv-minimal-list li {
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--text-gray);
  position: relative;
  padding-left: 12px;
  text-align: left;
}

.mvv-minimal-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-red);
  font-size: 12px;
}




