:root {
  --bg-main: #0c0e14;
  --bg-secondary: #141722;
  --bg-card: rgba(22, 26, 38, 0.88);
  --bg-card-hover: rgba(30, 36, 52, 0.95);
  --publi-orange: #ff8c00;
  --publi-orange-dark: #d35b00;
  --publi-orange-light: #ffa733;
  --orange-gradient: linear-gradient(135deg, #ffa733 0%, #ff8c00 50%, #d35b00 100%);
  --orange-glow: 0 4px 22px rgba(255, 140, 0, 0.4);
  --accent-green: #25d366;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #0b0f19;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-orange: rgba(255, 140, 0, 0.3);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.65);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 85px;
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }
}

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

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

.orange-text {
  color: var(--publi-orange);
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   HEADER & TOP NAV
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(12, 14, 20, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-orange);
  transition: var(--transition);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.brand-logo .logo-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 2px 8px rgba(255, 140, 0, 0.5));
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.8rem;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.25rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-main);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange-gradient);
  border-radius: var(--radius-full);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-whatsapp-quick {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #128c7e;
  color: #fff;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 3px 12px rgba(18, 140, 126, 0.35);
  transition: var(--transition);
}

.btn-whatsapp-quick:hover {
  background: #25d366;
  transform: translateY(-1px);
}

.btn-header-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange-gradient);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: var(--orange-glow);
}

@media (min-width: 768px) {
  .btn-header-cta {
    display: inline-flex;
  }
}

.drawer-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

@media (min-width: 1024px) {
  .drawer-toggle {
    display: none;
  }
}

.drawer-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
}

/* ==========================================================================
   MOBILE DRAWER
   ========================================================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-orange);
  z-index: 1001;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-weight: 600;
  font-size: 1.05rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
}

.drawer-link.active,
.drawer-link:hover {
  background: rgba(255, 140, 0, 0.12);
  border-color: var(--border-orange);
  color: var(--publi-orange-light);
}

/* ==========================================================================
   FLOATING BOTTOM NAVIGATION BAR
   ========================================================================== */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: rgba(14, 16, 24, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-orange);
  padding: 0.4rem 0.5rem calc(0.4rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  justify-content: space-around;
  align-items: center;
}

@media (min-width: 1024px) {
  .mobile-bottom-nav {
    display: none;
  }
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  gap: 3px;
  flex: 1;
  padding: 0.35rem 0;
  transition: var(--transition);
}

.bottom-nav-item .nav-icon {
  font-size: 1.25rem;
  transition: var(--transition);
}

.bottom-nav-item.active {
  color: var(--publi-orange-light);
}

.bottom-nav-item.active .nav-icon {
  transform: translateY(-2px) scale(1.1);
  filter: drop-shadow(0 2px 6px rgba(255, 140, 0, 0.6));
}

.bottom-nav-item.highlight-btn {
  margin-top: -24px;
}

.bottom-nav-item.highlight-btn .nav-btn-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange-gradient);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 18px rgba(255, 140, 0, 0.55), 0 0 0 4px var(--bg-main);
  transition: var(--transition);
}

/* ==========================================================================
   VIEWPORT & TABS
   ========================================================================== */
.main-viewport {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
  min-height: calc(100vh - 180px);
}

.tab-pane {
  display: none;
  animation: fadeIn 0.25s ease-in-out;
}

.tab-pane.active {
  display: block;
}

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

/* ==========================================================================
   HERO WITH VELOSO SECTION
   ========================================================================== */
.hero-veloso-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(255, 140, 0, 0.18), transparent 70%),
              linear-gradient(180deg, rgba(22, 26, 38, 0.95) 0%, rgba(12, 14, 20, 0.98) 100%);
  border: 1px solid var(--border-orange);
  padding: 2.5rem 1.5rem;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .hero-veloso-card {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 3.5rem 3rem;
  }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 140, 0, 0.12);
  border: 1px solid var(--border-orange);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  color: var(--publi-orange-light);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
}

.hero-main-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.75rem;
}

.hero-veloso-image-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-veloso-image-wrap img {
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.7));
}

.veloso-caption {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--publi-orange);
  margin-top: 0.75rem;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   SERVICES GRID (INFO BOXES)
   ========================================================================== */
.services-section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

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

@media (min-width: 640px) {
  .info-boxes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .info-boxes-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.info-box-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.info-box-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-orange);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card);
}

.info-box-icon {
  font-size: 2.2rem;
  filter: drop-shadow(0 2px 8px rgba(255, 140, 0, 0.4));
}

.info-box-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
}

/* ==========================================================================
   HOW IT WORKS (COMO FUNCIONA)
   ========================================================================== */
.how-it-works-wrap {
  background: var(--bg-secondary);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  padding: 3rem 1.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
  }
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange-gradient);
  color: var(--text-dark);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.2rem;
}

.step-arrow {
  display: none;
  font-size: 1.8rem;
  color: var(--publi-orange);
}

@media (min-width: 768px) {
  .step-arrow {
    display: block;
  }
}

/* ==========================================================================
   PRODUCT CARDS & CATALOGS GRID
   ========================================================================== */
.products-grid-wp {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .products-grid-wp {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid-wp {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-wp-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-wp-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card);
}

.product-wp-image {
  height: 250px;
  background: #08090d;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

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

.product-wp-card:hover .product-wp-image img {
  transform: scale(1.06);
}

.product-wp-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-wp-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--publi-orange);
  margin-bottom: 0.5rem;
}

.product-wp-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 1.25rem;
  flex: 1;
}

.product-wp-actions {
  display: flex;
  gap: 0.6rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary-orange {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange-gradient);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  box-shadow: var(--orange-glow);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 140, 0, 0.5);
}

.btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-orange);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 1.25rem 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-brand {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

/* ==========================================================================
   CONTACT SECTION 2-COLUMN REDESIGN (DARK GLASSMORPHISM)
   ========================================================================== */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .contact-main-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

.contact-form-glass {
  background: var(--bg-card);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

@media (min-width: 768px) {
  .contact-form-glass {
    padding: 3rem 2.5rem;
  }
}

.contact-sidebar-glass {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .contact-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-label-custom {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

/* Premium Dark Inputs (Eliminates harsh white background) */
.form-input-dark,
.form-textarea-dark {
  width: 100%;
  background: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

.form-input-dark:focus,
.form-textarea-dark:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--publi-orange) !important;
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.25) !important;
}

.form-input-dark::placeholder,
.form-textarea-dark::placeholder {
  color: #64748b;
  opacity: 0.85;
}

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

.sidebar-contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.4rem;
  transition: var(--transition);
}

.sidebar-contact-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-2px);
}

.sidebar-contact-card.highlight-whatsapp {
  border-color: rgba(37, 211, 102, 0.4);
  background: linear-gradient(180deg, rgba(18, 140, 126, 0.12) 0%, rgba(22, 26, 38, 0.95) 100%);
}

.badge-online-pulse {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #25d366;
  background: rgba(37, 211, 102, 0.15);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 0 8px #25d366;
  animation: pulseGreen 1.5s infinite;
}

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

.sidebar-map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-orange);
  min-height: 220px;
}

/* ==========================================================================
   INTERACTIVE LASER SIMULATOR
   ========================================================================== */
.simulador-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

@media (min-width: 880px) {
  .simulador-card-grid {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 3rem 2.5rem;
    align-items: center;
  }
}

.sim-material-btn,
.sim-font-btn {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.sim-material-btn:hover,
.sim-font-btn:hover,
.sim-material-btn.active,
.sim-font-btn.active {
  background: rgba(255, 140, 0, 0.15);
  border-color: var(--publi-orange);
  color: var(--publi-orange-light);
}

/* Realistic Metal Plate Preview */
.metal-plate {
  position: relative;
  width: 100%;
  min-height: 220px;
  border-radius: 8px;
  padding: 2.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: all 0.35s ease;
  overflow: hidden;
}

/* Gold Finish */
.metal-plate.gold {
  background: linear-gradient(135deg, #d49f37 0%, #f7d57f 30%, #e0ac43 50%, #f3ce70 70%, #ba8422 100%);
  border: 2px solid #8e6212;
}

.metal-plate.gold .metal-plate-content {
  color: #2b1d03;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4), 0 -1px 0 rgba(0, 0, 0, 0.2);
}

/* Silver Finish */
.metal-plate.silver {
  background: linear-gradient(135deg, #c0c5cb 0%, #f0f3f6 30%, #d1d6dc 50%, #f5f7fa 70%, #9ba1a8 100%);
  border: 2px solid #757c85;
}

.metal-plate.silver .metal-plate-content {
  color: #1a1e24;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5), 0 -1px 0 rgba(0, 0, 0, 0.2);
}

/* Corner Screws / Rivets */
.plate-rivet {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, #555 80%);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.8), 0 1px 1px rgba(255,255,255,0.4);
}

.plate-rivet::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 2px;
  right: 2px;
  height: 1.5px;
  background: #333;
  transform: translateY(-50%) rotate(45deg);
}

.plate-rivet.top-left { top: 10px; left: 10px; }
.plate-rivet.top-right { top: 10px; right: 10px; }
.plate-rivet.bottom-left { bottom: 10px; left: 10px; }
.plate-rivet.bottom-right { bottom: 10px; right: 10px; }

/* Laser Engraved Typography */
.metal-plate-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.metal-plate-content.font-sans {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-transform: uppercase;
}

.metal-plate-content.font-serif {
  font-family: "Georgia", "Times New Roman", serif;
}

.metal-plate-content.font-script {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  text-transform: none;
}

.plate-line-1 {
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 1px;
}

.plate-divider {
  width: 60px;
  height: 1.5px;
  background: currentColor;
  opacity: 0.5;
  margin: 0.2rem auto;
}

.plate-line-2 {
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  font-weight: 900;
  letter-spacing: 1.5px;
}

.plate-line-3 {
  font-size: clamp(0.82rem, 1.6vw, 0.98rem);
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.88;
}

/* ==========================================================================
   INTERACTIVE PDF READER MODAL (FOLHEADOR DIGITAL SPA)
   ========================================================================== */
.pdf-reader-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  background: rgba(8, 10, 15, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pdf-reader-topbar {
  height: 60px;
  background: rgba(15, 18, 26, 0.95);
  border-bottom: 1px solid var(--border-orange);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  flex-shrink: 0;
  z-index: 10;
}

.pdf-topbar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow: hidden;
}

.pdf-badge {
  background: rgba(255, 140, 0, 0.15);
  color: var(--publi-orange-light);
  border: 1px solid var(--border-orange);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.pdf-topbar-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 450px;
}

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

.btn-topbar-action {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: var(--transition);
}

.btn-topbar-action:hover {
  border-color: var(--border-orange);
  background: rgba(255, 140, 0, 0.15);
}

.btn-topbar-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-main);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn-topbar-close:hover {
  background: #ff4757;
  border-color: #ff4757;
  color: #fff;
  transform: rotate(90deg);
}

.pdf-viewport-container {
  flex: 1;
  overflow: auto;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1.5rem 1rem 6.5rem;
}

.pdf-loading-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 15, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: opacity 0.3s ease;
}

.pdf-spinner {
  width: 44px;
  height: 44px;
  border: 4px solid rgba(255, 140, 0, 0.2);
  border-top-color: var(--publi-orange);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.pdf-canvas-wrap {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  display: inline-block;
  margin: auto;
  transition: transform 0.2s ease;
}

#pdfCanvas {
  display: block;
  max-width: 100%;
  height: auto;
}

.pdf-bottom-toolbar {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12100;
  background: rgba(18, 22, 32, 0.95);
  border: 1px solid var(--border-orange);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  max-width: 96vw;
  flex-wrap: wrap;
  justify-content: center;
}

.pdf-nav-controls,
.pdf-zoom-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pdf-ctrl-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-main);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.pdf-ctrl-btn:hover {
  background: rgba(255, 140, 0, 0.2);
  border-color: var(--publi-orange);
  color: var(--publi-orange-light);
}

.pdf-page-display {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

#pdfPageInput {
  width: 55px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-orange);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.4rem;
  text-align: center;
  font-weight: 800;
  font-size: 0.88rem;
  outline: none;
}

.btn-whatsapp-page {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-whatsapp-page:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.badge-catalog-meta {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--publi-orange-light);
  background: rgba(255, 140, 0, 0.12);
  border: 1px solid rgba(255, 140, 0, 0.3);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
}

.btn-catalog-wa-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.3rem 0;
  transition: var(--transition);
}

.btn-catalog-wa-link:hover {
  color: #25d366;
}

@media (max-width: 640px) {
  .desktop-only {
    display: none !important;
  }
  .pdf-bottom-toolbar {
    padding: 0.4rem 0.6rem;
    gap: 0.5rem;
  }
  .btn-whatsapp-page {
    font-size: 0.78rem;
    padding: 0.4rem 0.75rem;
  }
}

/* ==========================================================================
   GOOGLE REVIEWS & HOMEPAGE SLIDER (4.9 ★★★★★)
   ========================================================================== */
.google-verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(66, 133, 244, 0.1);
  border: 1px solid rgba(66, 133, 244, 0.3);
  color: #8ab4f8;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
}

.google-score-card {
  background: var(--bg-card);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto 3rem;
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .google-score-card {
    flex-direction: row;
    padding: 2.25rem 3rem;
  }
}

.google-score-main {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.google-logo-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.score-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.stars-gold-row {
  display: flex;
  gap: 3px;
  color: #fbbc05;
  font-size: 1.4rem;
  line-height: 1;
  margin: 0.25rem 0;
}

.stars-gold {
  color: #fbbc05;
  letter-spacing: 2px;
}

.reviews-count-text {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.reviews-count-text strong {
  color: var(--publi-orange-light);
}

.google-score-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Reviews Grid on Tab Opinioes */
.reviews-grid-wp {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 640px) {
  .reviews-grid-wp {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-grid-wp {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card-wp {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.review-card-wp:hover {
  border-color: var(--border-orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  background: var(--bg-card-hover);
}

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

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--publi-orange) 0%, #a84200 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(255, 140, 0, 0.3);
}

.review-author-name {
  display: block;
  font-size: 1rem;
  color: var(--text-main);
}

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

.review-role-badge {
  display: block;
  font-size: 0.78rem;
  color: var(--publi-orange-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-stars-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.verified-buyer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #34a853;
  background: rgba(52, 168, 83, 0.12);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
}

.review-highlight-quote {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.review-card-body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

/* Leave Review CTA Banner */
.leave-review-cta-card {
  background: radial-gradient(circle at center, rgba(255, 140, 0, 0.14) 0%, rgba(18, 22, 32, 0.95) 100%);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

@media (min-width: 768px) {
  .leave-review-cta-card {
    flex-direction: row;
    text-align: left;
    padding: 2.75rem 3rem;
  }
}

/* ==========================================================================
   HOMEPAGE REVIEWS SLIDER
   ========================================================================== */
.reviews-slider-container {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 3rem;
}

.reviews-slider-track {
  position: relative;
  min-height: 220px;
}

.review-slide-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(30px);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
  background: var(--bg-card);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-slide-card.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.slide-quote-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  line-height: 1.6;
  color: #f1f5f9;
  font-style: italic;
  margin: 0.5rem 0;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 5;
}

.slider-arrow:hover {
  background: var(--publi-orange);
  border-color: var(--publi-orange);
  color: #000;
  box-shadow: var(--orange-glow);
}

.slider-prev { left: 0; }
.slider-next { right: 0; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.slider-dot.active {
  width: 28px;
  background: var(--publi-orange);
  box-shadow: 0 0 8px var(--publi-orange);
}

@media (max-width: 640px) {
  .reviews-slider-container {
    padding: 0 0.5rem;
  }
  .slider-arrow {
    display: none;
  }
  .review-slide-card {
    padding: 1.5rem 1.25rem;
  }
}

/* ==========================================================================
   VIEW TOGGLE & TAB SLIDER (OPINIOES TAB)
   ========================================================================== */
.view-toggle-wrap {
  display: flex;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 4px;
}

.btn-toggle-view {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.btn-toggle-view.active,
.btn-toggle-view:hover {
  background: var(--publi-orange);
  color: #000;
}

.reviews-tab-slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 3.25rem;
}

.reviews-tab-slider-track {
  position: relative;
  min-height: 280px;
}

.tab-review-slide-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(30px);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
  background: var(--bg-card);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
}

.tab-review-slide-card.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

@media (max-width: 640px) {
  .reviews-tab-slider-container {
    padding: 0 0.25rem;
  }
  .tab-review-slide-card {
    padding: 1.5rem 1.25rem;
  }
}
