/* ==========================================================================
   SANITARIOS GINO - Modern Tech Design System
   Modern, fluid, glassmorphic, responsive & rounded aesthetic
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --color-primary: #0C3E68;
  --color-primary-dark: #072640;
  --color-primary-deep: #041626;
  --color-primary-light: #12558f;
  --color-accent: #599ED8;
  --color-accent-light: #8ec3ef;
  --color-accent-glow: rgba(89, 158, 216, 0.35);
  
  /* Modern Neutral System */
  --color-bg-light: #F8FAFC;
  --color-bg-subtle: #F1F5F9;
  --color-surface-white: #FFFFFF;
  --color-surface-glass: rgba(255, 255, 255, 0.82);
  --color-surface-glass-dark: rgba(7, 38, 64, 0.78);
  --color-border-subtle: rgba(12, 62, 104, 0.08);
  --color-border-hover: rgba(89, 158, 216, 0.4);
  --color-border-dark: rgba(255, 255, 255, 0.12);

  /* Typography Colors */
  --text-main: #0F172A;
  --text-muted: #475569;
  --text-subtle: #64748B;
  --text-light: #F8FAFC;
  --text-white: #FFFFFF;

  /* Functional Accents */
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #1EBE5D;
  --color-whatsapp-glow: rgba(37, 211, 102, 0.3);
  --color-gold: #F59E0B;
  --color-success: #10B981;
  --color-danger: #EF4444;

  /* Typography Specs */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Geometry & Curves */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Depth & Shadows */
  --shadow-sm: 0 2px 8px rgba(12, 62, 104, 0.06);
  --shadow-md: 0 8px 24px -4px rgba(12, 62, 104, 0.08), 0 4px 12px -2px rgba(12, 62, 104, 0.04);
  --shadow-lg: 0 16px 36px -6px rgba(12, 62, 104, 0.12), 0 6px 18px -3px rgba(12, 62, 104, 0.06);
  --shadow-xl: 0 24px 50px -12px rgba(12, 62, 104, 0.22);
  --shadow-glow: 0 0 30px var(--color-accent-glow);

  /* Animation Curves */
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --max-width: 1280px;
  --header-height: 80px;
  --topbar-height: 40px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--color-bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
   TOP INFO BAR (Modern live status & branch contacts)
   ========================================================================== */
.topbar {
  background: var(--color-primary-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.825rem;
  height: var(--topbar-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 101;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-success);
  position: relative;
}

.status-dot.active::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.6;
  animation: pulse-ring 1.8s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

.status-dot.closed {
  background-color: var(--color-danger);
}

@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2.4); opacity: 0; }
}

.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  transition: var(--transition-fast);
}

.topbar-phone:hover {
  color: var(--color-accent-light);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-link {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  transition: var(--transition-fast);
}

.social-link:hover {
  color: #FFFFFF;
  background: var(--color-accent);
  transform: translateY(-2px);
}

/* ==========================================================================
   STICKY GLASSMORPHIC HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border-subtle);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.brand-logo:hover img {
  transform: scale(1.03);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--color-primary);
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: -0.01em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Base Pill Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.925rem;
  font-weight: 600;
  padding: 0.75rem 1.45rem;
  border-radius: var(--radius-full);
  letter-spacing: -0.01em;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(12, 62, 104, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-accent) 100%);
  box-shadow: 0 8px 20px rgba(12, 62, 104, 0.35);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, #3d88c7 100%);
  color: var(--text-white);
  box-shadow: 0 4px 14px var(--color-accent-glow);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(89, 158, 216, 0.5);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--color-whatsapp) 0%, var(--color-whatsapp-dark) 100%);
  color: var(--text-white);
  box-shadow: 0 4px 14px var(--color-whatsapp-glow);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary);
  border: 1.5px solid var(--color-border-hover);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--text-white);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-bg-subtle);
  color: var(--color-primary);
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   HERO SECTION - High Tech & Premium Impact
   ========================================================================== */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 80% 20%, #0d4677 0%, var(--color-primary) 50%, var(--color-primary-deep) 100%);
  color: var(--text-white);
  padding: 5.5rem 0 6.5rem;
  overflow: hidden;
}

/* Tech ambient glow elements */
.hero-ambient-1 {
  position: absolute;
  top: -15%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89, 158, 216, 0.25) 0%, rgba(12, 62, 104, 0) 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-ambient-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.15) 0%, rgba(12, 62, 104, 0) 70%);
  filter: blur(70px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  width: fit-content;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent-light);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-title span.text-highlight {
  background: linear-gradient(135deg, #FFFFFF 30%, var(--color-accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  max-width: 580px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.metric-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}

.metric-label {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.3;
}

/* Hero Showcase Slider */
.hero-visual {
  position: relative;
}

.hero-slider-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--color-primary-dark);
  aspect-ratio: 4 / 3.4;
  user-select: none;
}

.hero-slides-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.05);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

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

.hero-slide-tag {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(4, 22, 38, 0.7);
  backdrop-filter: blur(12px);
  color: #FFFFFF;
  font-size: 0.775rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 22, 38, 0.05) 0%, rgba(4, 22, 38, 0.6) 100%);
  pointer-events: none;
}

/* Slider Nav Arrows */
.hero-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  opacity: 0;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.hero-slider-wrapper:hover .hero-slider-nav {
  opacity: 1;
}

.hero-slider-nav.prev {
  left: 1rem;
}

.hero-slider-nav.next {
  right: 1rem;
}

.hero-slider-nav:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Slider Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 4;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.45);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.hero-dot.active {
  width: 26px;
  background: #FFFFFF;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}

.hero-floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary-dark);
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  backdrop-filter: blur(12px);
  z-index: 3;
  animation: float-slow 4s ease-in-out infinite;
}

.hero-floating-badge.badge-top {
  top: 1.5rem;
  left: -1.5rem;
}

.hero-floating-badge.badge-bottom {
  bottom: 1.5rem;
  right: -1.5rem;
  animation-delay: -2s;
}

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

.badge-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-icon.blue {
  background: rgba(89, 158, 216, 0.18);
  color: var(--color-primary);
}

.badge-icon.green {
  background: rgba(37, 211, 102, 0.18);
  color: var(--color-whatsapp-dark);
}

.badge-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.badge-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTION HEADER (Reusable)
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  background: rgba(89, 158, 216, 0.1);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 0.9rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   BRANDS INFINITE MARQUEE & FILTERABLE SHOWCASE CAROUSEL
   ========================================================================== */
.brands-section {
  padding: 5rem 0 6rem;
  background: #FFFFFF;
  position: relative;
}

.marquee-container {
  overflow: hidden;
  user-select: none;
  display: flex;
  gap: 2rem;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  margin-bottom: 3.5rem;
  padding: 0.75rem 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
  animation: marquee-scroll 65s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - 2rem)); }
}

.marquee-card {
  width: 140px;
  height: 90px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem;
  transition: var(--transition-smooth);
}

.marquee-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.85);
  transition: var(--transition-smooth);
}

.marquee-card:hover {
  background: #FFFFFF;
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.marquee-card:hover img {
  filter: grayscale(0%) opacity(1);
}

/* Filter Controls */
.brand-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  background: var(--color-bg-subtle);
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  color: var(--color-primary);
  background: rgba(89, 158, 216, 0.12);
}

.filter-btn.active {
  background: var(--color-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(12, 62, 104, 0.2);
}

/* Brands Interactive Carousel Showcase */
.brands-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 -0.5rem;
}

.brands-carousel-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
  padding: 0.75rem 0.5rem 1.25rem;
  -webkit-overflow-scrolling: touch;
}

.brands-carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.brands-carousel-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
}

.brand-card {
  width: 220px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: #FFFFFF;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.brand-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: var(--transition-fast);
}

.brand-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg);
}

.brand-card:hover::before {
  opacity: 1;
}

.brands-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--color-border-subtle);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition-fast);
  z-index: 5;
}

.brands-nav-btn:hover {
  background: var(--color-primary);
  color: #FFFFFF;
  border-color: var(--color-primary);
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .brands-nav-btn {
    display: none;
  }
  .brand-card {
    width: 190px;
    padding: 1.25rem 1rem;
  }
  .marquee-track {
    animation-duration: 50s;
  }
}

.brands-carousel-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.brands-swipe-hint {
  font-size: 0.825rem;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.brand-img-wrap {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.brand-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.brand-card:hover .brand-img-wrap img {
  transform: scale(1.06);
}

.brand-info {
  width: 100%;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.2rem;
}

.brand-category {
  font-size: 0.75rem;
  color: var(--text-subtle);
  margin-bottom: 0.85rem;
}

.brand-catalog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--color-accent);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(89, 158, 216, 0.08);
  transition: var(--transition-fast);
}

.brand-catalog-link:hover {
  background: var(--color-accent);
  color: #FFFFFF;
}

/* ==========================================================================
   INTERACTIVE EXPRESS QUOTE / PRESUPUESTADOR SECTION
   ========================================================================== */
.quote-section {
  padding: 5.5rem 0;
  background: var(--color-bg-subtle);
  position: relative;
}

.quote-card-container {
  background: #FFFFFF;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-xl);
  max-width: 980px;
  margin: 0 auto;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3rem;
  align-items: center;
}

.quote-info h3 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.quote-info p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.quote-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.quote-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.925rem;
  color: var(--text-main);
  font-weight: 500;
}

.quote-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  color: var(--color-whatsapp-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

.quote-form {
  background: var(--color-bg-light);
  color: var(--text-main);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-subtle);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.branch-select-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.branch-pill-input {
  display: none;
}

.branch-pill-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.85rem 0.5rem;
  border: 1.5px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  background: var(--color-bg-light);
  transition: var(--transition-fast);
}

.branch-pill-label strong {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--color-primary);
}

.branch-pill-label span {
  font-size: 0.75rem;
  color: var(--text-subtle);
}

.branch-pill-input:checked + .branch-pill-label {
  border-color: var(--color-primary);
  background: rgba(12, 62, 104, 0.06);
  box-shadow: 0 0 0 1px var(--color-primary);
}

.form-select, .form-input, .form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid #E2E8F0;
  background: #FFFFFF;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.form-select:focus, .form-input:focus, .form-textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

/* ==========================================================================
   BRANCHES / SUCURSALES SECTION
   ========================================================================== */
.branches-section {
  padding: 6rem 0;
  background: var(--color-bg-subtle);
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.branch-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.branch-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-border-hover);
}

.branch-header {
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.branch-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
}

.branch-tag {
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent-light);
}

.branch-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
}

.branch-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.branch-info-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.branch-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(89, 158, 216, 0.12);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.branch-info-text strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-subtle);
  margin-bottom: 0.15rem;
}

.branch-info-text p, .branch-info-text a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
}

.branch-info-text a:hover {
  color: var(--color-accent);
}

.branch-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
}

.map-embed-wrapper {
  height: 240px;
  width: 100%;
  border-top: 1px solid var(--color-border-subtle);
  background: #E2E8F0;
  position: relative;
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   GOOGLE REVIEWS / TESTIMONIALS SECTION
   ========================================================================== */
.reviews-section {
  padding: 6rem 0;
  background: #FFFFFF;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-hover);
  background: #FFFFFF;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.review-meta strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
}

.review-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--text-subtle);
}

.review-stars {
  display: flex;
  gap: 0.2rem;
  color: var(--color-gold);
  margin-bottom: 0.85rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
}

.google-trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3.5rem;
  padding: 1rem 2rem;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-full);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* ==========================================================================
   FOOTER (Modern Dark)
   ========================================================================== */
.site-footer {
  background: var(--color-primary-deep);
  color: rgba(255, 255, 255, 0.8);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col-brand img {
  height: 55px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-col-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-accent-light);
  transform: translateX(3px);
}

.footer-branch-item {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.85rem;
}

.footer-branch-item strong {
  display: block;
  color: #FFFFFF;
  font-size: 0.9rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   FLOATING WHATSAPP HUB & TOAST
   ========================================================================== */
.floating-whatsapp-hub {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
}

.floating-whatsapp-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px var(--color-whatsapp-glow);
  cursor: pointer;
  transition: var(--transition-bounce);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

.whatsapp-popup {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 290px;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border-subtle);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.95);
  transition: var(--transition-smooth);
}

.floating-whatsapp-hub.open .whatsapp-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.whatsapp-popup-header {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: #FFFFFF;
  padding: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.whatsapp-popup-header strong {
  display: block;
  font-size: 0.95rem;
}

.whatsapp-popup-header span {
  font-size: 0.75rem;
  color: var(--color-accent-light);
}

.whatsapp-popup-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.whatsapp-popup-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.9rem;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: var(--transition-fast);
}

.whatsapp-popup-item:hover {
  background: rgba(37, 211, 102, 0.12);
  border-color: var(--color-whatsapp);
  color: var(--color-whatsapp-dark);
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--color-primary-deep);
  color: #FFFFFF;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .branches-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .topbar {
    display: none;
  }

  .main-nav, .nav-actions .btn-primary {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-section {
    padding: 3.5rem 0 4.5rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-floating-badge {
    position: static;
    margin-top: 1rem;
    animation: none;
  }

  .quote-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .quote-card-container {
    padding: 2rem 1.5rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .branch-actions {
    grid-template-columns: 1fr;
  }
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  background: rgba(4, 22, 38, 0.7);
  backdrop-filter: blur(12px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-nav-drawer.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 360px;
  background: #FFFFFF;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: var(--transition-smooth);
}

.mobile-nav-drawer.open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
}
