/* ==========================================================================
   ELETROLUZ — COMPONENTES DE INTERFACE & MICROINTERAÇÕES
   ========================================================================== */

/* 1. BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1.2;
}

.btn:active {
  transform: scale(0.98);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.0625rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8125rem;
  border-radius: var(--radius-sm);
}

.btn-primary {
  background: var(--primary-700);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(15, 76, 129, 0.3);
}

.btn-primary:hover {
  background: var(--primary-800);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(15, 76, 129, 0.45);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-400) 0%, var(--accent-500) 100%);
  color: var(--primary-900);
  box-shadow: 0 4px 15px rgba(251, 133, 0, 0.35);
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--accent-300) 0%, var(--accent-400) 100%);
  box-shadow: var(--shadow-glow-gold);
  transform: translateY(-2px);
  color: var(--primary-900);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-whatsapp img,
.btn-whatsapp svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-sm.btn-whatsapp img,
.btn-sm.btn-whatsapp svg {
  width: 16px;
  height: 16px;
}

.btn-lg.btn-whatsapp img,
.btn-lg.btn-whatsapp svg {
  width: 22px;
  height: 22px;
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  backdrop-filter: blur(8px);
}

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

.btn-outline-primary {
  background: transparent;
  border-color: var(--primary-600);
  color: var(--primary-700);
}

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

/* 2. STATS / CONTADORES NUMÉRICOS */
.stats-bar {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  box-shadow: var(--shadow-xl);
  margin-top: -50px;
  position: relative;
  z-index: 10;
  border: 1px solid var(--slate-100);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  divide-x: 1px solid var(--slate-200);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-lg);
  background: var(--primary-100);
  color: var(--primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-item:nth-child(2) .stat-icon {
  background: var(--accent-100);
  color: var(--accent-600);
}

.stat-item:nth-child(3) .stat-icon {
  background: #DCFCE7;
  color: #16A34A;
}

.stat-item:nth-child(4) .stat-icon {
  background: #EDE9FE;
  color: #7C3AED;
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-900);
  line-height: 1;
}

.stat-suffix {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-500);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--slate-500);
  font-weight: 600;
  margin-top: 4px;
}

/* 3. CATEGORY CARDS */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-200);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-400);
}

.category-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
  background-color: var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.category-card:hover .category-img-wrap img,
.category-card:hover .category-img-wrap svg {
  transform: scale(1.08);
}

.category-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.category-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--primary-900);
}

.category-desc {
  font-size: 0.9375rem;
  color: var(--slate-500);
  margin-bottom: 20px;
  flex-grow: 1;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-600);
}

.category-link svg {
  transition: transform var(--transition-fast);
}

.category-card:hover .category-link {
  color: var(--accent-500);
}

.category-card:hover .category-link svg {
  transform: translateX(5px);
}

/* 4. PRODUCT CARDS & CATALOG FILTERS */
.catalog-controls {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.search-bar-wrap {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.search-input {
  width: 100%;
  background: var(--white);
  border: 2px solid var(--slate-200);
  border-radius: var(--radius-full);
  padding: 14px 20px 14px 50px;
  font-size: 1rem;
  color: var(--slate-800);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.search-input:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 4px var(--primary-100);
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate-400);
  pointer-events: none;
}

.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1px solid var(--slate-200);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--slate-600);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.filter-btn:hover {
  border-color: var(--primary-500);
  color: var(--primary-600);
  background: var(--primary-50);
}

.filter-btn.active {
  background: var(--primary-700);
  color: var(--white);
  border-color: var(--primary-700);
  box-shadow: 0 4px 12px rgba(15, 76, 129, 0.25);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
  cursor: pointer;
}

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

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--accent-500);
  color: var(--primary-900);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-img-wrap {
  position: relative;
  height: 200px;
  background: var(--slate-50);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
  border-bottom: 1px solid var(--slate-100);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform var(--transition-normal);
}

.product-img-wrap svg {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.product-card:hover .product-img-wrap img,
.product-card:hover .product-img-wrap svg {
  transform: scale(1.06);
}

.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.product-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 6px;
  line-height: 1.35;
}

.product-brand {
  font-size: 0.8125rem;
  color: var(--slate-500);
  margin-bottom: 12px;
}

.product-specs-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
  font-size: 0.8125rem;
  color: var(--slate-600);
  flex-grow: 1;
}

.product-specs-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-specs-list li::before {
  content: "•";
  color: var(--accent-500);
  font-weight: bold;
}

.product-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.product-actions .btn {
  flex: 1;
}

/* 5. DIFFERENTIALS / POR QUE A ELETROLUZ */
.differentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.diff-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
}

.diff-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-400);
}

.diff-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: var(--primary-50);
  color: var(--primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition-fast);
}

.diff-card:hover .diff-icon {
  background: var(--accent-400);
  color: var(--primary-900);
  transform: scale(1.05) rotate(5deg);
}

.diff-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--primary-900);
}

.diff-desc {
  font-size: 0.9375rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* 6. TESTIMONIALS CAROUSEL */
.testimonials-slider-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  padding: 10px 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  padding: 10px 15px;
  box-sizing: border-box;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
  position: relative;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  color: #F59E0B;
  margin-bottom: 18px;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--slate-700);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-100);
  color: var(--primary-700);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.testimonial-name {
  font-weight: 800;
  color: var(--primary-900);
  font-size: 1.0625rem;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--slate-500);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--slate-300);
  color: var(--primary-800);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.slider-btn:hover {
  background: var(--primary-700);
  color: var(--white);
  border-color: var(--primary-700);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--slate-300);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  width: 28px;
  border-radius: 6px;
  background: var(--accent-500);
}

/* 7. MARCAS PARCEIRAS */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  align-items: center;
}

.brand-card {
  background: var(--white);
  padding: 24px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--slate-600);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.brand-card:hover {
  border-color: var(--primary-500);
  color: var(--primary-700);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* 8. GOOGLE MAPS & LOCATION CARD */
.location-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--slate-200);
}

.location-info {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-title {
  font-size: 1.75rem;
  margin-bottom: 20px;
  color: var(--primary-900);
}

.location-details-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.location-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.location-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-100);
  color: var(--primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-detail-item strong {
  display: block;
  font-size: 1rem;
  color: var(--slate-800);
  margin-bottom: 2px;
}

.location-detail-item p {
  font-size: 0.9375rem;
  color: var(--slate-600);
}

.map-container {
  min-height: 400px;
  width: 100%;
  height: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* 9. FLOATING WHATSAPP BUTTON WITH PULSE */
.whatsapp-float-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.whatsapp-pulse-btn {
  width: 62px;
  height: 62px;
  background-color: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  position: relative;
  transition: transform var(--transition-fast);
}

.whatsapp-pulse-btn:hover {
  transform: scale(1.1);
}

.whatsapp-pulse-btn::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  background: var(--whatsapp);
  opacity: 0.6;
  animation: pulseEffect 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
  z-index: -1;
}

.whatsapp-tooltip {
  background: var(--white);
  color: var(--slate-800);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: 12px;
  white-space: nowrap;
  border: 1px solid var(--slate-200);
  animation: floatTooltip 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-tooltip span.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
}

@keyframes pulseEffect {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1.3); opacity: 0; }
}

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

/* 10. MODAL DIALOG (ORÇAMENTO / DETALHES DE PRODUTO) */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 37, 64, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: scale(0.92);
  transition: transform var(--transition-normal);
  padding: 36px;
}

.modal-backdrop.is-open .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--slate-100);
  color: var(--slate-700);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--slate-200);
  color: var(--primary-900);
}

/* 11. FAQ ACCORDION */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast);
}

.accordion-item.active {
  border-color: var(--primary-500);
}

.accordion-header {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--primary-900);
  cursor: pointer;
  background: transparent;
}

.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal), background-color var(--transition-normal);
  flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  background: var(--primary-100);
  color: var(--primary-700);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

.accordion-content {
  padding: 0 24px 24px 24px;
  color: var(--slate-600);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* 12. FORMS & INPUTS */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.col-span-2 {
  grid-column: span 2;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-700);
}

.form-control {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--slate-300);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.9375rem;
  color: var(--slate-800);
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px var(--primary-100);
}

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

.form-success-banner {
  background: var(--success-bg);
  border: 1px solid var(--success);
  color: var(--success);
  padding: 16px;
  border-radius: var(--radius-md);
  font-weight: 600;
  display: none;
  margin-top: 16px;
  text-align: center;
}

/* ==========================================================================
   HERO SHOWCASE INTERATIVO (GLASSMORPHISM 3D + FOTOS REAIS + WIDGETS)
   ========================================================================== */
.hero-showcase-container {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.hero-glow-sphere {
  position: absolute;
  top: 10%;
  left: 20%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(251, 133, 0, 0.25) 0%, rgba(2, 132, 199, 0.2) 50%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.15); opacity: 1; }
}

.hero-showcase-card {
  position: relative;
  z-index: 2;
  background: rgba(15, 42, 74, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-2xl);
  padding: 22px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.hero-showcase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.6), inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 2px;
}

.showcase-brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #F8FAFC;
  letter-spacing: 0.3px;
}

.status-indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 10px #10B981;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.showcase-city-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-300);
}

.showcase-media-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0B1E36;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease, transform 0.6s ease;
}

.hero-showcase-card:hover .showcase-img {
  transform: scale(1.04);
}

.showcase-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 37, 64, 0.1) 0%, rgba(10, 37, 64, 0.85) 100%);
  pointer-events: none;
}

.showcase-caption {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  z-index: 2;
}

.caption-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.caption-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.showcase-nav-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.showcase-tab {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 10px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
  color: #CBD5E1;
}

.showcase-tab:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.showcase-tab.active {
  background: linear-gradient(135deg, var(--accent-500) 0%, var(--accent-600) 100%);
  color: var(--primary-900);
  border-color: var(--accent-400);
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(251, 133, 0, 0.35);
  transform: translateY(-2px);
}

.showcase-tab .tab-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.showcase-tab .tab-label {
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.showcase-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.showcase-stock-info {
  display: flex;
  flex-direction: column;
}

.showcase-stock-info strong {
  font-size: 1rem;
  color: var(--white);
  font-family: var(--font-heading);
}

.showcase-stock-info span {
  font-size: 0.75rem;
  color: #94A3B8;
}

.showcase-action-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.showcase-action-btn:hover {
  background: var(--white);
  color: var(--primary-900);
  transform: translateX(3px);
}

/* Floating Widgets com animação suave de levitação */
.floating-widget {
  position: absolute;
  z-index: 5;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 18px;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: none;
  animation: floatWidget 5s ease-in-out infinite alternate;
}

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

.widget-top-right {
  top: -24px;
  right: -20px;
  animation-delay: 0.5s;
}

.widget-bottom-left {
  bottom: -22px;
  left: -20px;
  animation-delay: 1.8s;
}

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

.widget-icon.bg-green {
  background: #DCFCE7;
  color: #16A34A;
}

.widget-icon.bg-gold {
  background: #FEF3C7;
  color: #D97706;
}

.widget-title {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--primary-900);
  line-height: 1.2;
}

.widget-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-500);
}

@media (max-width: 991px) {
  .hero-showcase-container {
    max-width: 100%;
    margin-top: 30px;
  }
  .widget-top-right {
    top: -16px;
    right: 0px;
  }
  .widget-bottom-left {
    bottom: -16px;
    left: 0px;
  }
}

@media (max-width: 576px) {
  .showcase-media-wrap {
    height: 190px;
  }
  .showcase-nav-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  .floating-widget {
    display: none;
  }
}

/* ==================== STORE SHOWCASE CARD (CONTATO / SOBRE) ==================== */
.store-showcase-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--slate-200);
  margin-bottom: 48px;
}

.store-showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

.store-showcase-img-wrap {
  position: relative;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  background: var(--slate-100);
  display: flex;
}

.store-showcase-img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.store-showcase-card:hover .store-showcase-img {
  transform: scale(1.03);
}

.store-badge-live {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(10, 37, 64, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FFF;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.store-badge-live .dot-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #22C55E;
  box-shadow: 0 0 10px #22C55E;
  animation: pulse-dot 2s infinite ease-in-out;
}

.store-showcase-info {
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.store-showcase-title {
  font-size: 1.875rem;
  color: var(--primary-900);
  margin-top: 6px;
  margin-bottom: 14px;
  line-height: 1.25;
}

.store-showcase-desc {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 24px;
}

.store-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.store-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.store-highlight-icon {
  font-size: 1.35rem;
  line-height: 1;
  background: var(--primary-50);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.store-highlight-item strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--primary-900);
  margin-bottom: 2px;
}

.store-highlight-item span {
  font-size: 0.8125rem;
  color: var(--slate-500);
  line-height: 1.35;
  display: block;
}

.store-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .store-showcase-grid {
    grid-template-columns: 1fr;
  }
  .store-showcase-img-wrap {
    min-height: 280px;
    height: 320px;
  }
  .store-showcase-info {
    padding: 30px 24px;
  }
}

@media (max-width: 600px) {
  .store-highlights-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .store-actions .btn {
    width: 100%;
  }
}

