/* ======================================================
   site.css - Estilos globais do site R1
   Versão alinhada ao Tailwind original
====================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ======================================================
   VARIÁVEIS DA MARCA R1 (HSL-first, estilo Tailwind)
====================================================== */
:root {
  /* Brand HSL Tokens */
  --r1-red-hsl: 0 100% 50%;
  --r1-red-dark-hsl: 0 100% 40%;
  --r1-orange-hsl: 25 95% 53%;

  --r1-dark-hsl: 220 20% 8%;
  --r1-charcoal-hsl: 220 15% 15%;
  --r1-gray-hsl: 220 10% 25%;
  --r1-light-gray-hsl: 220 10% 96%;

  /* Derived colors */
  --r1-red: hsl(var(--r1-red-hsl));
  --r1-red-dark: hsl(var(--r1-red-dark-hsl));
  --r1-orange: hsl(var(--r1-orange-hsl));

  --r1-dark: hsl(var(--r1-dark-hsl));
  --r1-charcoal: hsl(var(--r1-charcoal-hsl));
  --r1-gray: hsl(var(--r1-gray-hsl));
  --r1-light-gray: hsl(var(--r1-light-gray-hsl));

  --text-dark: hsl(220 20% 10%);
  --text-light: hsl(0 0% 100%);

  /* Radius (Tailwind compatible) */
  --radius-sm: 6px;
  --radius: 12px;     /* rounded-lg */
  --radius-lg: 16px;  /* rounded-xl */
  --radius-2xl: 24px; /* rounded-2xl */

  /* Shadows (Tailwind-like) */
  --shadow-sm: 0 2px 8px -2px hsl(220 20% 8% / 0.08);
  --shadow-md: 0 8px 24px -8px hsl(220 20% 8% / 0.12);
  --shadow-lg: 0 16px 48px -12px hsl(220 20% 8% / 0.18);
}

.text-red {
  color: var(--r1-red);
}
/* ======================================================
   BASE GLOBAL
====================================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background-color: hsl(0 0% 100%);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 700; /* font-semibold / bold balance */
  letter-spacing: -0.025em; /* tracking-tight */
  margin-bottom: .75rem;
}

p {
  line-height: 1.6;
}

.btn-secondary {
  background-color: #b1b2b3!important;
  border: 0;
}
.btn-secondary:hover {
  background-color: #737374!important;
}
/* ======================================================
   CONTAINER R1 (equivalente ao max-w-7xl)
====================================================== */
.container-r1 {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1rem;
}


/* ======================================================
   HEADER — fidelidade Tailwind
====================================================== */
.site-header {
  background: #000000;
  backdrop-filter: blur(6px);
}

.site-header .dropdown-toggle {
  color: #fff;
  font-weight: 700;
  letter-spacing: .06em;
}

.site-header .dropdown-toggle:hover {
  color: var(--r1-red);
}

.site-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: transform .3s ease;
}

.site-header-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: .5rem;
}

.site-header-left {
  justify-self: start;
}

.site-header-right {
  justify-self: end;
}

.header-whatsapp {
  min-width: 0;
  justify-self: center;
  overflow: hidden;
}

.header-whatsapp a {
  font-size: .78rem;
  white-space: nowrap;
  line-height: 1;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-whatsapp span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 34px;
  padding: .2rem .55rem;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .header-whatsapp a {
    font-size: .95rem;
  }
}

@media (max-width: 991.98px) {
  .site-header-row {
    grid-template-columns: 116px minmax(0, 1fr) 46px;
  }

  .site-logo {
    height: 42px;
  }

  .site-header-right {
    width: 46px;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
  }

  .site-header-right .dropdown {
    display: none !important;
  }

  .header-hamburger {
    display: inline-flex !important;
  }
}

.site-logo:hover {
  transform: scale(1.05);
}

/* Link do header (Catálogo) */
.site-header .header-link {
  background: none;
  border: none;
  color: hsl(0 0% 100% / 0.9);
  font-size: .875rem; /* text-sm */
  font-weight: 600;   /* font-semibold */
  text-transform: uppercase;
  letter-spacing: .08em; /* tracking-wide */
  padding: .5rem 0;
  transition: color .2s ease;
}

.site-header .header-link:hover {
  color: var(--r1-red);
}

/* Remove caret feio do Bootstrap */
.site-header .dropdown-toggle::after {
  margin-left: .35rem;
  vertical-align: middle;
}

/* Dropdown menu */
.site-header .dropdown-menu {
  background: #000;
  border: 1px solid hsl(0 0% 100% / 0.1);
  border-radius: 12px; /* rounded-lg */
  box-shadow: 0 20px 40px rgba(0,0,0,.6);
  padding: .5rem 0;
}

/* Itens do dropdown */
.site-header .dropdown-item {
  color: hsl(0 0% 100% / 0.9);
  font-size: .875rem;
  font-weight: 500;
  padding: .75rem 1rem;
  transition: background .2s ease, color .2s ease;
}

.site-header .dropdown-item:hover {
  background: hsl(0 0% 100% / 0.1);
  color: var(--r1-red);
}

/* Item destacado */
.site-header .dropdown-item.text-primary {
  color: var(--r1-red);
}

.site-header .dropdown-item.text-primary:hover {
  background: hsl(var(--r1-red-hsl) / 0.1);
}

/* Divider */
.site-header .dropdown-divider {
  border-color: hsl(0 0% 100% / 0.1);
}

/* WhatsApp link */
.site-header .whatsapp-link i {
  font-size: 1.25rem;
  color: #25D366;
}

.site-header .whatsapp-link:hover {
  color: #25D366;
}

/* ======================================================
   HERO (BANNER DESKTOP + MOBILE)
====================================================== */
.hero-section {
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
  height: clamp(440px, 89vh, 1020px);
  background: #000;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  margin: 0;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #000;
}

@media (max-width: 767px) {
  .hero-section {
    height: clamp(360px, 76vh, 780px);
  }
}

.hero-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0, 0, 0, .45);
  border: 1px solid rgba(255, 255, 255, .45);
  z-index: 4;
  text-decoration: none;
  animation: hero-scroll-bounce 1.8s infinite;
}

.hero-scroll-indicator:hover {
  color: #fff;
  background: rgba(0, 0, 0, .65);
}

.hero-scroll-indicator i {
  font-size: 1.2rem;
  line-height: 1;
}

@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ======================================================
   OVERLAY PRIMEIRO ACESSO (LOJAS)
====================================================== */
.overlay-primeiro-acesso {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

.overlay-primeiro-acesso.mostrar {
  display: flex;
}

.overlay-card-primeiro-acesso {
  position: relative;
  width: min(680px, 100%);
  max-height: 88vh;
  overflow: auto;
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem 1.25rem 1rem;
  box-shadow: 0 24px 54px rgba(0, 0, 0, .35);
}

.overlay-close-primeiro-acesso {
  position: absolute;
  top: .4rem;
  right: .7rem;
  border: none;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  color: #333;
  cursor: pointer;
}

.overlay-title-primeiro-acesso {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-right: 1.5rem;
}

.overlay-lojas-lista {
  display: grid;
  gap: .8rem;
}

.overlay-loja-item {
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 12px;
  padding: .8rem .9rem;
  display: grid;
  gap: .35rem;
}

.overlay-loja-item strong {
  font-size: .98rem;
}

.overlay-loja-item span {
  font-size: .9rem;
  color: #4b5563;
}

.overlay-loja-item a {
  font-size: .92rem;
  color: var(--r1-red);
  text-decoration: none;
  font-weight: 600;
}

.overlay-loja-item a:hover {
  text-decoration: underline;
}

.overlay-loja-vazio {
  margin: 0;
  color: #4b5563;
}

/* ======================================================
   CARDS / EFEITOS
====================================================== */
.glass-card {
  background: hsl(0 0% 100% / 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid hsl(220 13% 90% / 0.5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.catalog-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: transform .5s ease, box-shadow .5s ease;
}

.catalog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* ======================================================
   SECTION TITLE
====================================================== */
.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--r1-red);
  border-radius: 999px;
}

/* ======================================================
   FOOTER (Lovable-like)
====================================================== */
.footer {
  font-size: .95rem;
  background: #000;
  overflow-x: hidden;
}

.footer-text {
  font-size: .7rem;
  color: hsl(0 0% 100% / 0.8);
  max-width: 420px;
  line-height: 1.6;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 16px;
}

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

.footer-list li {
  margin-bottom: 8px;
}

.footer-list a,
.footer-link {
  color: hsl(0 0% 100% / 0.7);
  text-decoration: none;
  transition: color .2s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-list a:hover,
.footer-link:hover {
  color: var(--r1-red);
}

.footer-address {
  display: flex;
  gap: 10px;
  font-size: .9rem;
  color: hsl(0 0% 100% / 0.75);
}

.footer-address i {
  color: var(--r1-red);
  margin-top: 4px;
}

.footer-address span {
  display: block;
  font-size: .85rem;
  opacity: .8;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-address strong {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-dot {
  position: absolute;
  top: -6px;
  right: -10px;
  width: 10px;
  height: 10px;
  background: var(--r1-red);
  border-radius: 50%;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: hsl(0 0% 100% / 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: background .3s ease, transform .3s ease;
}

.social-btn:hover {
  background: var(--r1-red);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid hsl(0 0% 100% / 0.1);
}

@media (max-width: 767.98px) {
  .footer-social-links {
    max-width: 200px;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-copy {
    text-align: center;
  }
}

/* ======================================================
   WHATSAPP FLOAT
====================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #fff;
  padding: 16px;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  animation: pulse-whatsapp 2s infinite;
  z-index: 999;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37,211,102,.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(37,211,102,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0);
  }
}

/* ======================================================
   Benefits Bar
====================================================== */
/* ======================================================
   BENEFITS BAR (estilo Lovable)
====================================================== */
.benefits-bar {
  background: #000;
}

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

  padding: 16px;
  border-radius: 14px;

  transition: background-color .3s ease;
}

.benefit-item:hover {
  background: rgba(255,255,255,.05);
}

.benefit-icon {
  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;
  background: rgba(255,0,0,.1);
  flex-shrink: 0;
}

.benefit-icon i {
  font-size: 1.5rem;
  color: var(--r1-red);
}

.benefit-item h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.benefit-item p {
  margin: 0;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}
/* ======================================================
   CATALOG HIGHLIGHTS (Lovable-like)
====================================================== */
.catalog-highlights {
  padding: 96px 0;
  background: hsl(220 10% 96% / 0.3);
}

.catalog-subtitle {
  max-width: 640px;
  margin: 16px auto 0;
  color: hsl(220 10% 40%);
  font-size: 1.05rem;
}

.catalog-link {
  text-decoration: none;
}

.catalog-card {
  position: relative;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
}

.catalog-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.catalog-card:hover img {
  transform: scale(1.1);
}

.catalog-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.85) 0%,
    rgba(0,0,0,.55) 45%,
    transparent 100%
  );
  z-index: 1;
}

.catalog-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}

.catalog-content h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
  transition: color .3s ease;
}

.catalog-card:hover h3 {
  color: var(--r1-red);
}

.catalog-content p {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  margin-bottom: 16px;
}

.catalog-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--r1-red);
}

.catalog-cta i {
  transition: transform .3s ease;
}

.catalog-card:hover .catalog-cta i {
  transform: translateX(6px);
}

/* ======================================================
   STATS SECTION
====================================================== */
.stats-section {
  padding: 120px 0;
  background: #000;
  position: relative;
}

.stats-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 12px;
}

.stats-subtitle {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}

.stat-item {
  padding: 24px;
  transition: transform .3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
}

.stat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: rgba(255,0,0,.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon i {
  font-size: 32px;
  color: var(--r1-red);
}

.stat-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  color: var(--r1-red);
  margin-bottom: 6px;
}

.stat-label {
  color: rgba(255,255,255,.7);
  font-weight: 500;
}

/* PRODUCT CARD */
.maisprocurados-h2 {
  padding-top: 3rem!important;
}
.product-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
  margin-bottom: 2rem;
}

.product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.body-card {
  height: 150px;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-image-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.product-card:hover img {
  transform: scale(1.1);
}

/* Badge */
.badge-new {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--r1-red);
  color: #fff;
  padding: 4px 10px;
  font-size: .75rem;
  font-weight: 700;
  border-radius: 20px;
}

/* Hover Overlay */
.product-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity .3s ease;
}

.product-card:hover .product-hover {
  opacity: 1;
}

/* Content */
.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 6px 0;
}

.product-card:hover .product-title {
  color: var(--r1-red);
}

.product-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--r1-red);
}

/* ======================================================
   PAGINAS DE CATALOGO E DETALHE
====================================================== */
.catalogo-page {
  padding-top: 7.5rem !important;
}

.catalogo-filtros {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.catalogo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .15);
  padding: .45rem .9rem;
  font-size: .9rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: all .2s ease;
}

.catalogo-chip:hover,
.catalogo-chip.active {
  border-color: var(--r1-red);
  background: rgba(255, 0, 0, .08);
  color: var(--r1-red);
}

.produto-detalhe-page {
  padding-top: 7.5rem !important;
}

.produto-galeria {
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  padding: 14px;
  background: #fff;
}

.produto-imagem-principal {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.produto-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.produto-thumb {
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 10px;
  padding: 0;
  width: 72px;
  height: 72px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease;
}

.produto-thumb:hover,
.produto-thumb.active {
  border-color: var(--r1-red);
  transform: translateY(-2px);
}

.produto-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.produto-titulo {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0;
}

.produto-preco-antigo {
  display: block;
  color: #7f8791;
  font-size: .95rem;
  text-decoration: line-through;
}

.produto-preco-atual {
  color: var(--r1-red);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.15;
}

.produto-descricao-conteudo {
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  padding: 1rem;
  background: #fff;
}

.produto-descricao-conteudo p:last-child {
  margin-bottom: 0;
}

/* ======================================================
   BLOG
====================================================== */
.blog-page {
  padding-top: 7.5rem !important;
}

.blog-post-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.blog-post-title {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
}

.blog-post-lead {
  color: #4b5563;
  font-size: 1.08rem;
}

.blog-post-image {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  max-height: 540px;
  margin-bottom: 1.3rem;
}

.blog-post-content {
  font-size: 1rem;
  line-height: 1.75;
}

.blog-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.blog-post-content iframe {
  max-width: 100%;
}

.blog-relacionados-lista {
  padding-left: 1.1rem;
}

.blog-relacionados-lista li {
  margin-bottom: .55rem;
}

.blog-relacionados-lista a {
  color: var(--text-dark);
  text-decoration: none;
}

.blog-relacionados-lista a:hover {
  color: var(--r1-red);
  text-decoration: underline;
}

/* ======================================================
   DIFERENCIAIS
====================================================== */

.diferenciais {
  background: rgba(0,0,0,.08);
}
.diferencial-h2 {
  padding-top: 3rem!important;
}
.diferencial-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 24px;
  transition: all .3s ease;
  height: 100%;
}

.diferencial-card:hover {
  border-color: rgba(255,0,0,.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.diferencial-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255,0,0,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background .3s ease;
}

.diferencial-card:hover .diferencial-icon {
  background: rgba(255,0,0,.2);
}

.diferencial-icon i {
  font-size: 28px;
  color: var(--r1-red);
}

.diferencial-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 8px;
  transition: color .3s ease;
}

.diferencial-card:hover .diferencial-title {
  color: var(--r1-red);
}

.diferencial-desc {
  font-size: .9rem;
  color: #6b7280;
  line-height: 1.6;
}

/* ======================================================
   MAIS INFORMACOES (BLOG)
====================================================== */
.mais-informacoes {
  padding: 5rem 0;
  background: #fff;
}

.maisinfo-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.maisinfo-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.maisinfo-body {
  padding: 1rem;
}

.maisinfo-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.maisinfo-text {
  color: #6b7280;
  margin-bottom: .9rem;
}

/* ======================================================
   R1 ELÉTRICOS
====================================================== */

.eletricos-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  color: #fff;
}

.eletricos-bg .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .35;
}

.glow-red {
  width: 320px;
  height: 320px;
  background: var(--r1-red);
  top: 80px;
  left: 60px;
}

.glow-orange {
  width: 420px;
  height: 420px;
  background: var(--r1-orange);
  bottom: 60px;
  right: 80px;
}

.eletricos-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,0,0,.15);
  color: var(--r1-red);
  font-weight: 700;
  font-size: .85rem;
}

.text-muted-light {
  color: rgba(255,255,255,.7);
}

.eletrico-card {
  display: block;
  background: rgba(255,255,255,.05);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  transition: all .3s ease;
  color: #fff;
  text-decoration: none;
}

.eletrico-card:hover {
  border-color: var(--r1-red);
  box-shadow: 0 0 40px rgba(255,0,0,.35);
  transform: translateY(-6px);
}

.eletrico-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.eletrico-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.eletrico-card:hover img {
  transform: scale(1.1);
}

.eletrico-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.35;
  min-height: calc(1.35em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.eletrico-card .price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--r1-red);
}

/* Swiper – Elétricos */
.eletricos-swiper .swiper-button-prev,
.eletricos-swiper .swiper-button-next {
  color: #fff;
  background: rgba(255,255,255,.1);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  backdrop-filter: blur(6px);
  transition: background .3s ease, transform .3s ease;
}

.eletricos-swiper .swiper-button-prev:hover,
.eletricos-swiper .swiper-button-next:hover {
  background: var(--r1-red);
  transform: scale(1.1);
}

.eletricos-swiper .swiper-button-prev::after,
.eletricos-swiper .swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
}
