/* ==========================================================================
   GOMERÍA LA MONUMENTAL - DESIGN SYSTEM & STYLES
   Theme: Industrial Dark & Vibrant Electric Yellow
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-primary: #0a0a0c;
  --bg-secondary: #14151a;
  --bg-tertiary: #1e1f26;
  --bg-card: #16171d;
  --bg-card-hover: #1f2028;
  
  --yellow-primary: #ffcc00;
  --yellow-hover: #ffe033;
  --yellow-dark: #cc0300;
  --yellow-glow: rgba(255, 204, 0, 0.25);
  --yellow-border: rgba(255, 204, 0, 0.35);

  --text-main: #f0f0f5;
  --text-muted: #a0a2b0;
  --text-dark: #0f0f12;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-yellow: rgba(255, 204, 0, 0.4);

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 204, 0, 0.08);

  --font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4 {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.text-yellow {
  color: var(--yellow-primary);
}

.bg-yellow {
  background-color: var(--yellow-primary);
  color: var(--text-dark);
}

/* Modern Top Announcement & Quick Contact Bar */
.top-bar {
  background: #000000;
  border-bottom: 2px solid var(--yellow-primary);
  padding: 0.6rem 0;
  font-size: 0.9rem;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
}

.info-item i {
  color: var(--yellow-primary);
}

.contact-quick-buttons {
  display: flex;
  gap: 0.75rem;
}

.btn-contact-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-phone {
  background: rgba(255, 204, 0, 0.12);
  color: var(--yellow-primary);
  border: 1px solid var(--border-yellow);
}

.btn-phone:hover {
  background: var(--yellow-primary);
  color: var(--text-dark);
  box-shadow: 0 0 12px var(--yellow-glow);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
}

.btn-whatsapp:hover {
  background: #20ba5a;
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.4);
}

/* Back to Faro Button */
.btn-back-faro {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-back-faro:hover {
  background: var(--yellow-primary);
  color: var(--text-dark);
  border-color: var(--yellow-primary);
  box-shadow: 0 0 12px var(--yellow-glow);
}

/* ==========================================================================
   HEADER / HERO SECTION
   ========================================================================== */

.header-hero {
  position: relative;
  background: var(--bg-primary);
  padding: 3rem 0 4rem 0;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.shop-photo-featured-box {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto 2.5rem auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid var(--yellow-primary);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.9), 0 0 25px var(--yellow-glow);
  background-color: var(--bg-card);
  position: relative;
  transition: var(--transition-normal);
}

.shop-photo-featured-box:hover {
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.95), 0 0 35px rgba(255, 204, 0, 0.35);
  transform: translateY(-2px);
}

.shop-photo-img {
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: cover;
  display: block;
  filter: none;
}

.header-hero-content {
  position: relative;
  z-index: 2;
}

.hero-header-title-box {
  text-align: center;
  margin-bottom: 2rem;
}

.hero-header-title-box .badge-tag {
  display: inline-block;
  background: rgba(255, 204, 0, 0.15);
  color: var(--yellow-primary);
  border: 1px solid var(--border-yellow);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-main-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  text-transform: uppercase;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(0,0,0,0.8);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.hero-main-title span {
  color: var(--yellow-primary);
  text-shadow: 0 0 15px var(--yellow-glow);
}

.hero-description-lead {
  max-width: 780px;
  margin: 1rem auto 0 auto;
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
  }
}

.hero-left-box {
  background: rgba(22, 23, 29, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--yellow-primary);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.section-subtitle-small {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--yellow-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.services-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.services-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
  color: var(--text-main);
  font-size: 1.05rem;
}

.services-list li i {
  color: var(--yellow-primary);
  font-size: 1.1rem;
}

.schedule-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 204, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-top: 1rem;
}

.schedule-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.schedule-title i {
  color: var(--yellow-primary);
}

.schedule-rows {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
}

.schedule-row .day {
  font-weight: 600;
  color: var(--text-main);
}

.schedule-row .hours {
  color: var(--yellow-primary);
  font-weight: 600;
}

.owner-card-hero {
  background: rgba(22, 23, 29, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-right: 4px solid var(--yellow-primary);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.owner-photo-slot {
  width: 100%;
  max-width: 400px;
  height: 330px;
  border-radius: var(--radius-md);
  border: 2px solid var(--yellow-primary);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 15px var(--yellow-glow);
  transition: var(--transition-normal);
}

.owner-photo-slot:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 204, 0, 0.3);
  transform: translateY(-2px);
}

.owner-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.owner-photo-slot i {
  font-size: 3.5rem;
  color: var(--yellow-primary);
  margin-bottom: 0.3rem;
}

.owner-photo-slot span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.owner-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.owner-badge {
  display: inline-block;
  background: var(--yellow-primary);
  color: var(--text-dark);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.25rem 0.8rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.owner-lines {
  max-width: 420px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.section-padding {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
}

.yellow-bar-accent {
  width: 70px;
  height: 4px;
  background: var(--yellow-primary);
  margin: 1rem auto 0 auto;
  border-radius: 2px;
  box-shadow: 0 0 10px var(--yellow-glow);
}

.feature-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.large-feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  min-height: 320px;
}

.large-feature-card:hover {
  border-color: var(--border-yellow);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .large-feature-card {
    grid-template-columns: 1fr;
  }
}

.feature-card-text {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, rgba(22,23,29,1) 0%, rgba(16,17,21,1) 100%);
  position: relative;
}

.card-num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 204, 0, 0.12);
  color: var(--yellow-primary);
  border: 1px solid var(--border-yellow);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.feature-card-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.feature-card-desc {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.equip-detail-block {
  margin-top: 1.1rem;
}

.equip-subtitle {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--yellow-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.equip-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.equip-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.5;
}

.equip-list li::before {
  content: "•";
  position: absolute;
  left: 0.1rem;
  color: var(--yellow-primary);
  font-weight: bold;
  font-size: 1.1rem;
}

.equip-steps {
  padding-left: 1.2rem;
  margin: 0;
}

.equip-steps li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.5;
}

.equip-text-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.equip-highlight-note {
  background: rgba(255, 204, 0, 0.08);
  border: 1px solid var(--border-yellow);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin-top: 1.25rem;
  font-size: 0.92rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.4;
}

.equip-highlight-note i {
  color: var(--yellow-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-card-image-slot {
  background: #0d0e12;
  border-left: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
  min-height: 320px;
}

.feature-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.feature-card-img.contain-img {
  object-fit: contain;
  padding: 2.5rem;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6));
}

.large-feature-card:hover .feature-card-img {
  transform: scale(1.04);
}

.tire-catalog-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

@media (max-width: 850px) {
  .tire-grid-2col {
    grid-template-columns: 1fr;
  }
}

.tire-card {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
  min-height: 170px;
}

.tire-card:hover {
  border-color: var(--yellow-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.6), 0 0 15px rgba(255, 204, 0, 0.1);
}

.tire-photo-slot {
  width: 175px;
  min-width: 175px;
  background: #08090b;
  border-right: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.tire-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.tire-card:hover .tire-photo-img {
  transform: scale(1.06);
}

@media (max-width: 550px) {
  .tire-card {
    flex-direction: column;
  }
  .tire-photo-slot {
    width: 100%;
    min-width: 100%;
    height: 180px;
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }
}

.tire-info-side {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.tire-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tire-title i {
  color: var(--yellow-primary);
  font-size: 1rem;
}

.tire-description {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.tire-vehicle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.vehicle-tag {
  background: rgba(255, 204, 0, 0.1);
  color: var(--yellow-primary);
  border: 1px solid rgba(255, 204, 0, 0.25);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
}

.sub-section-title-box {
  margin-bottom: 1.5rem;
}

.sub-section-heading {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.25rem;
}

.sub-section-heading i {
  color: var(--yellow-primary);
}

.sub-section-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.solo-ruedas-block {
  background: rgba(255, 204, 0, 0.03);
  border: 1px solid var(--border-yellow);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.solo-ruedas-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed var(--border-yellow);
}

@media (max-width: 650px) {
  .solo-ruedas-header {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.solo-ruedas-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 204, 0, 0.15);
  border: 1px solid var(--border-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--yellow-primary);
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.15);
}

.solo-ruedas-badge {
  display: inline-block;
  background: var(--yellow-primary);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
}

.solo-ruedas-title {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.solo-ruedas-desc {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.solo-ruedas-desc strong {
  color: var(--yellow-primary);
}

.tire-card-warning {
  border-left: 3px solid var(--yellow-primary);
}

.only-wheel-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 204, 0, 0.15);
  color: var(--yellow-primary);
  border: 1px solid var(--border-yellow);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
  align-self: flex-start;
}

.vehicle-tag.tag-warning {
  background: rgba(255, 204, 0, 0.1);
  color: var(--yellow-primary);
  border: 1px solid rgba(255, 204, 0, 0.3);
}

.location-section {
  position: relative;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

.location-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--yellow-primary);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
}

.address-title {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.address-title i {
  color: var(--yellow-primary);
}

.address-highlight {
  background: rgba(255, 204, 0, 0.12);
  border: 1px solid var(--border-yellow);
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

.address-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--yellow-primary);
  display: block;
}

.address-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.map-container-box {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--border-yellow);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.2) contrast(1.1) invert(0.9) hue-rotate(180deg);
}

.main-footer {
  background: #040405;
  border-top: 3px solid var(--yellow-primary);
  padding: 4rem 0 2rem 0;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col-brand h3 {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  font-weight: 800;
}

.footer-col-brand h3 span {
  color: var(--yellow-primary);
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--yellow-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.footer-link-btn:hover {
  background: var(--yellow-primary);
  color: var(--text-dark);
  border-color: var(--yellow-primary);
  transform: translateX(4px);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-muted);
}

.footer-contact-item i {
  color: var(--yellow-primary);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.75rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
}

.floating-wa-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 99;
  transition: var(--transition-fast);
}

.floating-wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
}

.btn-version-toggle {
  background: rgba(255, 204, 0, 0.15);
  color: var(--yellow-primary);
  border: 1px solid var(--border-yellow);
}

.btn-version-toggle:hover {
  background: var(--yellow-primary);
  color: var(--text-dark);
  box-shadow: 0 0 12px var(--yellow-glow);
}

body.brick-theme {
  background-image: linear-gradient(rgba(10, 10, 12, 0.45), rgba(10, 10, 12, 0.45)), url('/assets/automotor/gomeria/gomeria_la_monumental/ladrillos2.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body.brick-theme .header-hero {
  background: transparent;
  border-bottom: 1px solid rgba(255, 204, 0, 0.25);
}

body.brick-theme .section-padding {
  background: transparent;
}

body.brick-theme .tire-catalog-section {
  background: rgba(10, 10, 12, 0.65);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 204, 0, 0.3);
  border-bottom: 1px solid rgba(255, 204, 0, 0.3);
}

body.brick-theme .location-section {
  background: transparent;
}

body.brick-theme .main-footer {
  background: rgba(4, 4, 5, 0.94);
  backdrop-filter: blur(10px);
}

body.brick-theme .large-feature-card,
body.brick-theme .tire-card,
body.brick-theme .hero-left-box,
body.brick-theme .owner-card-hero,
body.brick-theme .location-info-card {
  background: rgba(22, 23, 29, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 204, 0, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85), 0 0 15px rgba(255, 204, 0, 0.12);
}

body.brick-theme .large-feature-card:hover,
body.brick-theme .tire-card:hover,
body.brick-theme .hero-left-box:hover,
body.brick-theme .owner-card-hero:hover,
body.brick-theme .location-info-card:hover {
  border-color: var(--yellow-primary);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.95), 0 0 25px rgba(255, 204, 0, 0.25);
}

body.brick-theme .feature-card-text {
  background: linear-gradient(135deg, rgba(22, 23, 29, 0.95) 0%, rgba(14, 15, 19, 0.95) 100%);
}

body.brick-theme .feature-card-image-slot,
body.brick-theme .tire-photo-slot {
  background: rgba(12, 13, 17, 0.95);
}
