@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600;700;800;900&display=swap");

/* =====================================================
   RESET + BASE GLOBAL
   ===================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Source Sans Pro", sans-serif;
  background: #ffffff;
  color: #111;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Classe para SEO: elemento existe no DOM mas não é visível */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[hidden] {
  display: none !important;
}

/* =====================================================
   VARIAVEIS
   ===================================================== */

:root {
  --bg-primary: #ffffff;
  --bg-white: #ffffff;
  --bg-dark: #0f1d3a;

  --text-dark: #111;
  --text-medium: #555;
  --text-light: #888;

  --border: #e5e7eb;
  --green: #1a7f37;
  --orange: #ff7a00;
  --whatsapp: #25d366;
  --shadow: 0 4px 16px rgba(0,0,0,.08);
}

body.site-sonar {
  --bg-dark: #062b26;
  --green: #0f5e4f;
  --orange: #17d6a3;
  --border: #d7ebe3;
  --text-dark: #10201c;
  --text-medium: #4f6863;
  background: #f4fbf7;
}

/* =====================================================
   TOP BAR - CTA WHATSAPP
   ===================================================== */

.top-bar {
    background: linear-gradient(135deg, #1a7f37 0%, #156a31 100%);
    padding: 6px 20px;
    text-align: center;
}

.top-bar-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    transition: opacity 0.2s;
}

.top-bar-cta:hover {
    opacity: 0.9;
}

.top-bar-cta i {
    font-size: 1rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.2s ease-in-out infinite;
    flex-shrink: 0;
    display: inline-block;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

/* =====================================================
   HEADER PRINCIPAL - 75px
   ===================================================== */

.main-header {
    background: var(--bg-dark);
    color: #ffffff;
    padding: 0 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    position: sticky;
    top: 0;
    z-index: 100;
    height: 75px;
    display: flex;
    align-items: center;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

/* LOGO - LEFT ALIGNED */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    text-align: left;
    min-width: fit-content;
}

.logo-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 6px;
    border-radius: 999px;
    background: #ff2d2d;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: left;
}

.logo-title {
    font-size: 1.49rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 1.5px;
    letter-spacing: -0.4px;
}

.logo-wordmark-small {
    font-size: 0.57em;
    font-weight: 600;
    opacity: 0.95;
    text-transform: lowercase;
    margin: 0 0.8px;
}

.logo-wordmark-main {
    font-size: 1.30em;
    font-weight: 800;
}

.logo-wordmark-accent {
    color: #ff9d2f;
}

.logo-subtitle {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-align: center;
    margin-top: 1px;
}

.sonar-logo-title-main {
    color: #ffffff;
}

.sonar-logo-title-accent {
    color: #6cff7b;
}

body.site-sonar .top-bar {
    background: linear-gradient(135deg, #0f5e4f 0%, #0b4e42 100%);
}

body.site-sonar .main-header {
    background: linear-gradient(135deg, #062b26 0%, #0a3a33 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

body.site-sonar .logo {
    gap: 12px;
}

body.site-sonar .logo.logo-has-icon .logo-icon img {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid rgba(108, 255, 123, 0.28);
    box-shadow: 0 0 0 1px rgba(23, 214, 163, 0.18);
}

body.site-sonar .logo-title {
    letter-spacing: -0.3px;
}

body.site-sonar .logo-subtitle {
    color: rgba(255, 255, 255, 0.74);
    text-align: left;
}

body.site-sonar .header-btn:hover,
body.site-sonar .dropdown-toggle:hover,
body.site-sonar .header-nav a:hover {
    color: #6cff7b;
}

body.site-sonar .dropdown-menu {
    border-top-color: #17d6a3;
}

body.site-sonar .mobile-nav {
    background: linear-gradient(180deg, #062b26 0%, #0a3a33 100%);
    border-top: 1px solid rgba(108, 255, 123, 0.18);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

body.site-sonar .mobile-nav-title {
    color: rgba(238, 253, 244, 0.68);
}

body.site-sonar .mobile-nav-toggle::after,
body.site-sonar .mobile-nav-section.is-collapsible .mobile-nav-title,
body.site-sonar .mobile-nav a {
    color: #eefdf4;
}

body.site-sonar .mobile-nav a:hover {
    color: #6cff7b;
}

body.site-sonar .hero-banner {
    background: linear-gradient(135deg, #062b26 0%, #0b3d34 100%);
}

body.site-sonar .hero-badge,
body.site-sonar .promo-pill,
body.site-sonar .price-badge,
body.site-sonar .tag-oferta,
body.site-sonar .btn-ver-mais,
body.site-sonar .deal-modal-btn-primary,
body.site-sonar .promo-card .btn-ver-oferta {
    background-color: #17d6a3;
}

body.site-sonar .btn-ver-mais:hover,
body.site-sonar .deal-modal-btn-primary:hover,
body.site-sonar .promo-card .btn-ver-oferta:hover {
    background-color: #12b38a;
}

body.site-sonar .section-title,
body.site-sonar .section-subtitle strong,
body.site-sonar .promo-title a:hover,
body.site-sonar .deal-modal-title,
body.site-sonar .footer-logo-text {
    color: #0a3a33;
}

body.site-sonar .main-footer {
    position: relative;
    background:
      linear-gradient(180deg, rgba(3, 23, 20, 0.88) 0%, rgba(3, 23, 20, 0.92) 100%),
      url('/images/branding/sonar/banner.jpg') center / cover no-repeat;
    border-top: 1px solid rgba(108, 255, 123, 0.18);
    color: #eefdf4;
}

body.site-sonar .main-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 43, 38, 0.78) 0%, rgba(6, 43, 38, 0.58) 45%, rgba(6, 43, 38, 0.82) 100%);
    pointer-events: none;
}

body.site-sonar .main-footer .footer-container {
    position: relative;
    z-index: 1;
}

body.site-sonar .main-footer h3,
body.site-sonar .main-footer a,
body.site-sonar .main-footer p,
body.site-sonar .footer-bottom p,
body.site-sonar .footer-about-text {
    color: #eefdf4;
}

body.site-sonar .main-footer a:hover {
    color: #6cff7b;
}

body.site-sonar .footer-logo-text {
    color: #6cff7b;
}

body.site-sonar .footer-columns,
body.site-sonar .footer-social,
body.site-sonar .footer-bottom {
    border-color: rgba(108, 255, 123, 0.14);
}

/* NAV - CENTER ALIGNED */
.header-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: center;
    text-align: center;
}

.header-nav.hidden {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.header-actions .site-principal-link {
    display: inline-flex;
}

.site-principal-icon {
    padding: 10px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-principal-icon img {
    width: 51px;
    height: 51px;
    object-fit: contain;
}

/* =====================================================
   BANNER NOVAS PROMOCOES
   ===================================================== */

.new-promos-banner {
    position: fixed;
    left: 50%;
    top: 18%;
    transform: translateX(-50%);
    z-index: 120;
    display: flex;
    justify-content: center;
    padding: 10px 16px;
    background: rgba(200, 144, 59, 0.86);
    backdrop-filter: blur(6px);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    max-width: min(92vw, 640px);
}

.new-promos-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.new-promos-btn:hover {
    background: rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.mobile-menu-toggle,
.mobile-search-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.mobile-menu-toggle:hover,
.mobile-search-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0f1d3a;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 16px rgba(0,0,0,.25);
    padding: 16px 20px 20px;
    z-index: 120;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav-section {
    margin-bottom: 14px;
}

.mobile-nav-section:last-child {
    margin-bottom: 0;
}

.mobile-nav-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.mobile-nav-toggle::after {
    content: '▾';
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.mobile-nav-section.is-collapsible .mobile-nav-links {
    display: none;
}

.mobile-nav-section.is-collapsible.is-open .mobile-nav-links {
    display: block;
}

.mobile-nav-section.is-collapsible.is-open .mobile-nav-toggle::after {
    transform: rotate(180deg);
}

.mobile-nav-section.is-collapsible .mobile-nav-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    color: #ffffff;
    margin-bottom: 0;
    padding: 8px 0;
}

.mobile-nav-section.is-collapsible .mobile-nav-toggle::after {
    color: #ffffff;
    font-size: 0.95rem;
}

.mobile-nav a {
    display: block;
    padding: 8px 0;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

.mobile-nav a:hover {
    color: #9ec3ff;
}

.header-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #ffffff;
    font-size: 1.26rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 8px 16px rgba(0,0,0,.2);
    min-width: 200px;
    z-index: 1000;
    border: 1px solid #e5e7eb;
    margin-top: 0;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 12px 16px;
    color: #111;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #f9f9f9;
    color: #0052A3;
}

.header-btn {
    display: inline-block;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 6px;
    color: #ffffff;
    font-size: 1.26rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.header-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* SEARCH BAR - FORA DO CONTAINER */
.header-search-group {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75px;
    gap: 8px;
    padding: 0 20px;
    z-index: 99;
    pointer-events: none;
}

.header-search-group .search-box {
    pointer-events: auto;
}

.search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    border-radius: 0;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
    margin-left: 8px;
    font-size: 1.1rem;
    pointer-events: auto;
}

.search-toggle:hover {
    opacity: 0.7;
    color: #0052A3;
}

.search-toggle i {
    font-size: 1.1rem;
}

/* Search Box - BARRA BONITA TIPO BRAD'S */
.search-box {
    position: static;
    background: transparent;
    padding: 0;
    width: 0;
    overflow: hidden;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 0;
    z-index: 100;
    transition: width 0.3s ease;
    margin: 0;
    border: none;
    height: 40px;
    pointer-events: none;
}

.search-box.show {
    width: 400px;
    background: #ffffff;
    border-radius: 20px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: auto;
}

.search-box input {
    background: transparent;
    border: none;
    color: #0f1d3a;
    padding: 0;
    font-size: 1rem;
    outline: none;
    flex: 1;
    min-width: 0;
}

.search-box input::placeholder {
    color: #999;
}

.search-box .search-icon {
    color: #0052A3;
    cursor: pointer;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.search-box .close-icon {
    color: #999;
    cursor: pointer;
    font-size: 1.2rem;
    flex-shrink: 0;
    display: none;
}

.search-box.show .close-icon {
    display: block;
}

/* =====================================================
   CONTEUDO PRINCIPAL
   ===================================================== */

.main-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px 20px;
}

/* =====================================================
   SECAO DE PROMOCOES
   ===================================================== */

.promos-section {
  background: #ffffff;
}

.section-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 12px;
}

.section-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f1d3a;
  white-space: nowrap;
}

.controls-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.controls-divider {
  color: #ccc;
  font-size: 1rem;
  user-select: none;
  padding: 0 2px;
}

.sort-dropdown-menu {
  right: 0;
  left: auto;
}

@media (max-width: 480px) {
  .section-label {
    font-size: 0.9rem;
  }
  .filter-dropdown-toggle {
    font-size: 0.78rem;
    padding: 6px 10px;
  }
  .controls-divider {
    padding: 0;
  }
}

@media (max-width: 360px) {
  .section-label {
    font-size: 0.82rem;
  }
  .filter-dropdown-toggle {
    padding: 6px 8px;
    gap: 0;
  }
  .btn-label {
    display: none;
  }
  .controls-right {
    gap: 6px;
  }
}

.filter-btn {
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--text-dark);
}

.filter-btn.active {
  background: #000;
  color: #ffffff;
  border-color: #000;
}

/* FILTER DROPDOWN */
.filter-dropdown {
  position: relative;
}

.filter-dropdown-toggle {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1.5px solid #d0d7de;
  background: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #0f1d3a;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  white-space: nowrap;
}

.filter-dropdown-toggle:hover {
  border-color: #0052A3;
  color: #0052A3;
  background: #f0f5ff;
}

.filter-dropdown-toggle.open {
  border-color: #0052A3;
  background: #0052A3;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,82,163,0.25);
}

.filter-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #ffffff;
  border: 1px solid #e0e6ef;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 170px;
  z-index: 100;
  overflow: hidden;
}

.filter-dropdown-menu.show {
  display: block;
}

.filter-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 11px 16px;
  border: none;
  background: transparent;
  color: #333;
  text-align: left;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid #f0f0f0;
}

.filter-dropdown-item:last-child {
  border-bottom: none;
}

.filter-dropdown-item:hover {
  background: #f5f8ff;
  color: #0052A3;
}

.filter-dropdown-item.active {
  background: #eff6ff;
  font-weight: 700;
  color: #0052A3;
  border-left: 3px solid #0052A3;
  padding-left: 13px;
}

/* =====================================================
   GRID DE PROMOCOES
   ===================================================== */

.promos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}

.promo-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  cursor: pointer;
  text-decoration: none;
  display: block;
  opacity: 1;
  transform: none;
}

.promos-grid .promo-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.promos-grid .promo-card.card-visible {
  opacity: 1;
  transform: translateY(0);
}

.promos-grid .promo-card:hover {
  opacity: 1;
}

/* Padroniza cards das paginas de categoria/catalogo com o visual da home. */
.products-grid .promo-card,
.promos-atuais-grid .promo-card-atual {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
}

.products-grid .promo-card:hover,
.promos-atuais-grid .promo-card-atual:hover {
  box-shadow: none !important;
  border: none !important;
  transform: translateY(-2px);
}

.products-grid .promo-card-image,
.promos-atuais-grid .promo-atual-image {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1;
  background: #ffffff !important;
  border: none !important;
  border-radius: 0 !important;
  margin-bottom: 10px !important;
}

.products-grid .promo-card-image img,
.promos-atuais-grid .promo-atual-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 0 !important;
}

.products-grid .promo-card-body,
.promos-atuais-grid .promo-atual-body {
  padding: 0 !important;
  display: block !important;
}

.products-grid .promo-card-price,
.promos-atuais-grid .preco-novo {
  display: inline-block;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: #0052A3 !important;
  line-height: 1 !important;
  margin-bottom: 0 !important;
}

.promos-atuais-grid .preco-antigo {
  font-size: 0.95rem !important;
  color: #999 !important;
  text-decoration: line-through !important;
  font-weight: 600 !important;
  margin-left: 8px;
}

.products-grid .promo-card-title,
.promos-atuais-grid .promo-atual-body h4 {
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: #0052A3 !important;
  line-height: 1.3 !important;
  margin: 8px 0 10px 0 !important;
  min-height: 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.promos-atuais-grid .promo-store,
.promos-atuais-grid .promo-info {
  display: none !important;
}

.products-grid .promo-card-cta,
.promos-atuais-grid .promo-link-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  color: #0052A3 !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
  box-shadow: none !important;
}

.products-grid .promo-card-cta:hover,
.promos-atuais-grid .promo-link-btn:hover {
  background: transparent !important;
  color: #003d7a !important;
}

.promo-image-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.promo-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 10px;
  border-radius: 0;
}

.promo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.promo-card.cupom-only .promo-image img {
  object-fit: contain;
  padding: 10px;
}

.promo-image i {
  font-size: 3rem;
  color: #ddd;
}

.promo-info {
  padding: 0;
}

.promo-store {
  display: none;
}

.promo-price-group {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.promo-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0052A3;
  line-height: 1;
}

.promo-price-old {
  font-size: 0.95rem;
  color: #999;
  text-decoration: line-through;
  font-weight: 600;
}

.promo-savings {
  font-size: 0.95rem;
  font-weight: 700;
  color: #d0021b;
  line-height: 1;
}

/* TITULO - EMBAIXO DO PRECO */
.promo-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
  margin-top: 0;
  padding: 0;
  border: none;
  color: #0052A3;
  cursor: pointer;
}

.promo-title a {
  text-decoration: underline;
  color: #0052A3;
}

.promo-title a:hover {
  text-decoration: underline;
}

.promo-details-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0066cc;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 4px;
}

.promo-details-link::before {
  content: '✕ ';
  margin-right: 3px;
  font-weight: bold;
}

.promo-details-link:hover {
  text-decoration: underline;
}

.promo-details-btn {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0066cc;
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 4px;
  padding: 0;
  font-family: inherit;
}

.promo-details-btn::before {
  content: '✕ ';
  margin-right: 3px;
  font-weight: bold;
}

.promo-details-btn:hover {
  text-decoration: underline;
}

.promo-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
  font-size: 0.7rem;
  color: #999;
}

.promo-time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.promo-time i {
  font-size: 0.65rem;
}

/* =====================================================
   DEAL PAGE
   ===================================================== */

.deal-page-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px 20px;
}

.deal-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    margin-bottom: 60px;
    align-items: flex-start;
  }

/* 🎯 NOVO: Container para imagem + "Por que vale a pena" */
.deal-img-wrapper-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.deal-img-wrapper {
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: sticky;
  top: 100px;
  max-height: 600px;
  max-width: 600px;
  width: 100%;
}

.deal-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
  }

.deal-img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Galeria com thumbnails (múltiplas imagens) */
.deal-gallery {
  display: flex;
  gap: 8px;
  width: 100%;
  height: 100%;
}

.gallery-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 40px;
  overflow-y: auto;
  max-height: 500px;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
  background: transparent;
}

.gallery-thumbnails::-webkit-scrollbar {
  width: 4px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
}

.gallery-thumbnail {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  background: #fff;
}

.gallery-thumbnail:hover {
  border-color: #0052A3;
  opacity: 0.8;
}

.gallery-thumbnail.active {
  border-color: #0052A3;
  box-shadow: 0 0 0 2px rgba(0, 82, 163, 0.2);
}

.gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  min-height: 400px;
  overflow: hidden;
}

.gallery-main a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  max-height: 600px;
  text-decoration: none;
}

.gallery-main img {
  max-width: 100%;
  max-height: 600px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.deal-info-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.deal-info-column h1 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 12px 0 20px 0;
  color: var(--text-dark);
}

.deal-price-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

/* ====== v11 SUBPÁGINA - TÍTULO CLICÁVEL AZUL ====== */

.deal-title-link {
  text-decoration: underline;
  display: block;
}

.deal-title-v11 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0052A3;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.deal-title-v11:hover {
  text-decoration: underline;
  color: #003d7a;
}

.deal-price-row-v10 {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.deal-price-v10 {
  font-size: 1.36rem;
  font-weight: 800;
  color: #0052A3;
}

.deal-price-old-v10 {
  font-size: 1.36rem;
  color: #ccc;
  text-decoration: line-through;
}

.deal-discount-v10 {
  font-size: 1.36rem;
  color: #d0021b;
  font-weight: 700;
}

.deal-store-v10 {
  font-size: 0.85rem;
  color: #666;
  margin: 0 0 12px 0;
  font-weight: 500;
}

.deal-description-section {
  margin: 12px 0;
}

.deal-description-text {
  color: #555;
  line-height: 1.6;
  font-size: 0.9rem;
  margin: 0;
}

.cupom-box {
  display: flex;
  gap: 8px;
  align-items: center;
  background: #fdf2f2;
  border: 1px dashed #d0021b;
  padding: 12px;
  border-radius: 4px;
  margin: 12px 0;
}

.cupom-code {
  font-family: monospace;
  font-weight: 800;
  font-size: 1.1rem;
  color: #d0021b;
  flex: 1;
  text-align: center;
}

.cupom-copy-btn {
  background: #d0021b;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.cupom-copy-btn:hover {
  background: #b8001a;
}

.btn-deal-action {
  display: block;
  background: #d32f2f;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  margin: 16px 0 12px 0;
  text-decoration: none;
}

.btn-deal-action:hover {
  background: #c41c1c;
}

.deal-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.btn-whatsapp-v10 {
  background: #25d366;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  flex: 1;
}

.btn-whatsapp-v10:hover {
  background: #20ba5a;
}

.btn-copy-v10 {
  background: #f5f5f5;
  color: #0f1d3a;
  border: 1px solid #ddd;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  flex: 1;
}

.btn-copy-v10:hover {
  background: #e8e8e8;
}

.special-info-box {
    background: #f9f9f9;
    border-left: 4px solid #0052A3;
    padding: 12px;
    margin: 12px 0 0 0;
    border-radius: 2px;
  }
  
.special-info-box p {
    color: #0f1d3a;
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
  }

.special-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.special-info-item {
  color: #0f1d3a;
  line-height: 1.5;
  font-size: 0.9rem;
}

.special-info-title {
  font-weight: 800;
  margin-bottom: 4px;
  color: #0f1d3a;
}

.special-info-body {
  color: #2a3a5a;
}

.special-info-note {
  display: block;
  margin-top: 6px;
  color: #4b5c78;
  font-size: 0.85rem;
}

.special-info-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-weight: 800;
  color: #0052A3;
}

.special-info-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  color: #0052A3;
  font-weight: 700;
  text-decoration: underline;
}

.deal-price-row-v2 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.deal-price-v2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0052A3;
}

.deal-price-old-v2 {
  font-size: 1.6rem;
  color: #ccc;
  text-decoration: line-through;
}

.deal-discount-v2 {
  font-size: 1.6rem;
  color: #d0021b;
  font-weight: 700;
}

.deal-store-v2 {
  font-size: 0.9rem;
  color: #666;
  margin: 0 0 12px 0;
  font-weight: 500;
}

.deal-title-v2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f1d3a;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.btn-buy-v2 {
  display: block;
  background: #d32f2f;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-buy-v2:hover {
  background: #c41c1c;
}

.btn-secondary-v2 {
  background: #f5f5f5;
  color: #0f1d3a;
  border: 1px solid #ddd;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  flex: 1;
}

.btn-secondary-v2:hover {
  background: #e8e8e8;
}

.btn-share-whatsapp-v2 {
  background: #25d366;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  flex: 1;
}

.btn-share-whatsapp-v2:hover {
  background: #20ba5a;
}

.deal-share-v2 {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.deal-store {
  display: inline-block;
  background: #f0f0f0;
  color: #0f1d3a;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.deal-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f1d3a;
  margin: 8px 0 16px 0;
  line-height: 1.3;
}

.deal-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 1rem;
}

.deal-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0052A3;
}

.deal-price-old {
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
}

.deal-discount {
  font-size: 0.9rem;
  color: #d0021b;
  font-weight: 700;
}

.deal-main-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0052A3;
  display: block;
  margin-bottom: 6px;
}

.btn-buy {
  display: block;
  background: #d32f2f;
  color: #fff;
  padding: 14px 24px;
  border-radius: 24px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 24px;
  text-decoration: none;
}

.btn-buy:hover {
  background: #c41c1c;
  transform: translateY(-2px);
}

.btn-buy:active {
  background: #b71c1c;
}

.btn-secondary {
  background: #f5f5f5;
  color: #0f1d3a;
  border: 1px solid #ddd;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: #e8e8e8;
  border-color: #bbb;
}

.btn-share-whatsapp {
  background: #25d366;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  flex: 1;
}

.btn-share-whatsapp:hover {
  background: #20ba5a;
}

.deal-share {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

/* =====================================================
   LOADING
   ===================================================== */

.loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  color: var(--text-light);
}

.loading i {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

/* LOAD MORE */
.load-more-btn {
  display: none;
  margin: 32px auto 0;
  padding: 13px 40px;
  border-radius: 8px;
  border: 1.5px solid #0052A3;
  background: #ffffff;
  color: #0052A3;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  width: fit-content;
  letter-spacing: 0.01em;
}

.load-more-btn:hover {
  background: #0052A3;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,82,163,0.25);
}

/* =====================================================
   TOAST
   ===================================================== */

.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--green);
  color: #fff;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  pointer-events: none;
  z-index: 1000;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   FOOTER
   ===================================================== */

.main-footer {
  background: var(--bg-dark);
  color: #ffffff;
  margin-top: 60px;
  padding: 40px 20px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-brand,
.footer-links,
.footer-social {
  font-size: 0.9rem;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.footer-links h4,
.footer-social h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.2s;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.25);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* =====================================================
   RESPONSIVO
   ===================================================== */

@media (max-width: 1200px) {
  .promos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .deal-layout {
    grid-template-columns: 1fr;
  }

  .deal-img-wrapper {
    position: static;
    max-height: none;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .header-nav {
    flex: none;
    gap: 15px;
  }

  .promos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .load-more-btn {
    width: 90%;
    max-width: 360px;
    font-size: 1.05rem;
    padding: 16px 24px;
  }

  .promos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .main-content {
    padding: 16px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  /* Responsividade Mobile/Tablet - Estilo Promobit/Pelando */

  /* Títulos e textos responsivos */
  .deal-title-braddeals {
    font-size: clamp(1.2rem, 4vw, 1.8rem) !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  .price-current-braddeals {
    font-size: clamp(1.4rem, 5vw, 1.8rem) !important;
  }

  .price-old-braddeals,
  .price-save-braddeals {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem) !important;
  }

  /* Logo menor em mobile */
  .logo img {
    height: clamp(32px, 8vw, 48px) !important;
  }

  .logo-title {
    font-size: clamp(0.95rem, 3vw, 1.3rem) !important;
  }

  /* Imagens sempre contidas */
  .deal-img-wrapper img,
  .gallery-main img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .deal-img-wrapper {
    max-width: 100% !important;
    overflow: hidden !important;
  }

  /* Ícones de compartilhamento menores (FIX WhatsApp oval) */
  .btn-share-icon {
    width: 48px !important;
    height: 48px !important;
    font-size: 1.2rem !important;
    border-radius: 50% !important;
  }

  /* Conteúdo das abas responsivo */
  .info-tabs-content {
    font-size: clamp(0.85rem, 3.2vw, 1rem) !important;
    line-height: 1.6 !important;
  }

  .info-tabs-content h3,
  .info-tabs-content h4 {
    font-size: clamp(1rem, 3.8vw, 1.2rem) !important;
  }

  .info-tabs-content p,
  .info-tabs-content li {
    font-size: clamp(0.85rem, 3.2vw, 1rem) !important;
  }

  /* Containers não devem estourar */
  .container,
  .deal-page-container,
  .deal-layout,
  .deal-info-column {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  /* Garantir que texto não estoure */
  * {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Editor Insights */
  .editor-insights-braddeals {
    padding: 14px;
  }

  .editor-insights-braddeals h3 {
    font-size: clamp(1rem, 4vw, 1.2rem);
  }

  .editor-insights-braddeals #editor-insights-content {
    font-size: clamp(0.9rem, 3.5vw, 1.05rem);
  }

  /* Footer - reduzir espaço vazio */
  .footer-about {
    margin-bottom: 16px !important;
  }

  .footer-categories {
    margin-bottom: 16px !important;
  }

  .footer-columns {
    gap: 24px !important;
    margin-bottom: 16px !important;
  }

  .footer-social {
    margin-top: 16px !important;
    padding-top: 12px !important;
  }

  .footer-bottom {
    margin-top: 16px !important;
    padding-top: 12px !important;
  }
}

@media (max-width: 1120px) {
  .main-header {
    flex-wrap: nowrap;
    gap: 12px;
  }

  .header-container {
    flex: 1;
  }

  .header-nav {
    display: none;
  }

  .mobile-menu-toggle,
  .mobile-search-toggle {
    display: inline-flex;
  }

  .header-container {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .logo {
    flex: 1;
  }

  .header-search-group {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 75px;
    padding: 0 20px;
    justify-content: flex-end;
    pointer-events: none;
  }

  .search-box {
    width: 0;
    padding: 0;
    background: transparent;
    pointer-events: none;
  }

  .search-box.show {
    width: min(420px, 55vw);
    background: #ffffff;
    border-radius: 20px;
    padding: 0 16px;
    pointer-events: auto;
  }

  .search-toggle {
    display: none;
  }

  .mobile-search-toggle {
    margin-left: auto;
  }

  .header-actions .site-principal-link,
  .site-principal-icon {
    display: none;
  }
}

@media (max-width: 836px) {
  .main-header {
    flex-wrap: wrap;
  }

  body.search-open .logo,
  body.search-open .mobile-menu-toggle {
    opacity: 0;
    pointer-events: none;
  }

  body.search-open .header-search-group {
    pointer-events: auto;
  }

  body.search-open .search-box.show {
    width: 100%;
  }

  .header-search-group {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 75px;
    padding: 0 20px;
    justify-content: center;
  }

  .header-search-group {
    pointer-events: none;
  }

  .search-box {
    width: 0;
    padding: 0;
    background: transparent;
    pointer-events: none;
  }

  .search-box.show {
    width: min(420px, 86vw);
    background: #ffffff;
    padding: 0 16px;
    pointer-events: auto;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 40px;
  }

  .logo-title {
    font-size: 1.1rem;
  }

  .logo-subtitle {
    display: none;
  }

  .header-nav {
    gap: 10px;
    font-size: 0.75rem;
  }

  .promos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .promo-price {
    font-size: 1.1rem;
  }

  .deal-main-price {
    font-size: 1.8rem;
  }

  .deal-info-column h1 {
    font-size: 1.4rem;
  }
}

@media (max-width: 319px) {
  .promos-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Telas muito pequenas - Responsividade total (Estilo Promobit/Pelando) */
@media (max-width: 320px) {
  /* Títulos e textos menores */
  .deal-title-braddeals {
    font-size: clamp(1rem, 5vw, 1.4rem);
    line-height: 1.3;
  }

  .price-current-braddeals {
    font-size: clamp(1.2rem, 6vw, 1.6rem);
  }

  .price-old-braddeals,
  .price-save-braddeals {
    font-size: clamp(0.8rem, 3.5vw, 1rem);
  }

  /* Botões - mais largo, menos alto */
  .btn-get-deal-braddeals {
    font-size: clamp(0.85rem, 4vw, 1rem);
    padding: 9px 20px !important;
    border-radius: 24px !important;
  }

  /* Cupom responsivo */
  .cupom-braddeals {
    flex-direction: column;
    gap: 8px;
  }

  .cupom-input-braddeals {
    font-size: clamp(0.85rem, 4vw, 1rem);
    padding: 10px 12px;
  }

  .cupom-copy-btn-braddeals {
    width: 100%;
    font-size: clamp(0.8rem, 3.5vw, 0.95rem);
    padding: 10px 16px;
  }

  /* Editor Insights */
  .editor-insights-braddeals {
    padding: 12px;
  }

  .editor-insights-braddeals h3 {
    font-size: clamp(0.95rem, 4.5vw, 1.1rem);
  }

  .editor-insights-braddeals #editor-insights-content {
    font-size: clamp(0.8rem, 3.5vw, 0.95rem);
  }

  /* Galeria de imagens */
  .gallery-thumbnail {
    width: 35px;
    height: 35px;
  }

  /* Compartilhamento */
  .btn-share-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  /* Container principal */
  .deal-page-container {
    padding: 16px 8px;
  }

  /* Why worth it */
  .why-worth-it {
    padding: 12px;
  }

  .why-worth-it h3 {
    font-size: clamp(0.9rem, 4vw, 1.05rem);
  }

  .why-worth-it .benefits-list li {
    font-size: clamp(0.8rem, 3.5vw, 0.9rem);
  }

  .why-worth-it .benefit-icon {
    font-size: 1rem;
  }

  /* FAQ dentro das abas */
  .faq-question {
    font-size: clamp(0.8rem, 3.5vw, 0.9rem);
    padding: 10px 0;
  }

  .faq-answer {
    font-size: clamp(0.75rem, 3vw, 0.85rem);
  }

  .faq-icon {
    font-size: 1rem;
  }

  /* Header - Logo menor e lupa visível */
  .logo img {
    height: 32px !important;
  }

  .logo-title {
    font-size: 0.95rem !important;
  }

  .search-toggle {
    font-size: 0.9rem !important;
  }

  /* Imagens sempre dentro do container */
  .deal-img-wrapper img,
  .gallery-main img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .deal-img-wrapper {
    max-width: 100% !important;
    overflow: hidden !important;
  }

  /* Conteúdo das abas também menor */
  .info-tabs-content {
    font-size: clamp(0.75rem, 3vw, 0.9rem) !important;
  }

  .info-tabs-content h3,
  .info-tabs-content h4 {
    font-size: clamp(0.85rem, 3.5vw, 1rem) !important;
  }

  .info-tabs-content p,
  .info-tabs-content li {
    font-size: clamp(0.75rem, 3vw, 0.85rem) !important;
  }

  /* Ícones compartilhamento menores (forçar círculo perfeito) */
  .btn-share-icon {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    font-size: 1.1rem !important;
    border-radius: 50% !important;
    padding: 0 !important;
  }

  /* Footer - reduzir espaço vazio */
  .footer-about {
    margin-bottom: 16px !important;
  }

  .footer-columns {
    gap: 20px !important;
    margin-bottom: 16px !important;
  }

  .footer-social {
    margin-top: 16px !important;
    padding-top: 12px !important;
  }

  .footer-bottom {
    margin-top: 16px !important;
    padding-top: 12px !important;
  }

  /* Grid ofertas relacionadas - sempre 2 colunas */
  .promos-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  /* Garantir que nada estoure */
  * {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Main content padding menor */
  .main-content {
    padding: 12px 8px;
  }

  /* Containers não devem estourar */
  .container,
  .deal-page-container,
  .deal-layout,
  .deal-info-column {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
}

/* =====================================================
   BREADCRUMBS
   ===================================================== */

.breadcrumb-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 0.9rem;
  color: #666;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: #999;
  font-weight: 400;
}

.breadcrumb a {
  color: #0052A3;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #003d7a;
  text-decoration: underline;
}

.breadcrumb li:last-child {
  color: #444;
  font-weight: 500;
}

@media (max-width: 768px) {
  .breadcrumb {
    font-size: 0.85rem;
    gap: 6px;
  }

  .breadcrumb li:not(:last-child)::after {
    margin-left: 6px;
  }
}

/* =====================================================
   DESCRIÇÕES CONTEXTUAIS (Amazon Recorrência, Mais por Menos)
   ===================================================== */

.context-info {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border-left: 4px solid #ff9800;
  padding: 12px 16px;
  margin: 12px 0;
  border-radius: 6px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #444;
}

.context-info strong {
  color: #e65100;
  display: block;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .context-info {
    font-size: 0.85rem;
    padding: 10px 12px;
  }
}

/* ========================================
   BRADDEALS STYLE - Página de Ofertas
   ======================================== */

/* Título */
.deal-title-braddeals {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}

.deal-title-braddeals a {
  color: #0f1d3a;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.deal-title-braddeals a:hover {
  color: #0a1222;
}

/* Container de preços */
.price-container-braddeals {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.price-current-braddeals {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a73e8;
}

.price-old-braddeals {
  font-size: 1.1rem;
  color: #999;
  text-decoration: line-through;
}

.price-save-braddeals {
  font-size: 1.1rem;
  color: #dc3545;
  font-weight: 600;
}

/* Loja + Info */
.store-info-braddeals {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.store-link-braddeals {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 600;
}

.store-link-braddeals:hover {
  text-decoration: underline;
}

.shipping-info-braddeals {
  color: #28a745;
  font-size: 0.9rem;
}

/* 🎯 NOVO: Por que vale a pena? */
.why-worth-it {
  background: linear-gradient(135deg, #f0f8ff 0%, #e8f4f8 100%);
  border: 2px solid #1a73e8;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.1);
}

.why-worth-it h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a73e8;
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.why-worth-it .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-worth-it .benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

.why-worth-it .benefit-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.why-worth-it strong {
  color: #1a73e8;
  font-weight: 600;
}

@media (max-width: 768px) {
  .why-worth-it {
    padding: 16px;
  }

  .why-worth-it h3 {
    font-size: 1rem;
  }

  .why-worth-it .benefits-list li {
    font-size: 0.9rem;
  }
}

/* Botão Get This Deal */
.btn-get-deal-braddeals {
  display: block;
  width: 100%;
  padding: 12px 24px;
  background: #dc3545;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 24px;
  margin-bottom: 16px;
  transition: background 0.2s;
}

.btn-get-deal-braddeals:hover {
  background: #c82333;
}

/* Botão com 50% de largura */
.btn-get-deal-braddeals.btn-half-width {
  width: 50%;
}

/* Cupom BradDeals style */
.cupom-braddeals {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  align-items: center;
}

.cupom-input-braddeals {
  flex: 1;
  padding: 14px 16px;
  border: 2px dashed #1a73e8;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: #1a73e8;
  background: #f0f8ff;
  text-align: center;
  letter-spacing: 1px;
}

.cupom-copy-btn-braddeals {
  padding: 14px 24px;
  background: #1a73e8;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.cupom-copy-btn-braddeals:hover {
  background: #1557b0;
}

/* Editor Insights */
.editor-insights-braddeals {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.editor-insights-braddeals h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
}

.editor-insights-braddeals #editor-insights-content {
  color: #555;
  line-height: 1.6;
  font-size: 0.98rem;
}

.editor-insights-braddeals #editor-insights-content p {
  margin: 0 0 14px;
}

.editor-insights-braddeals #editor-insights-content p:last-child {
  margin-bottom: 0;
}

.editor-insights-braddeals #editor-insights-content .editor-insights-list {
  margin: 0 0 14px;
  padding-left: 20px;
}

.editor-insights-braddeals #editor-insights-content .editor-insights-list li {
  margin-bottom: 8px;
  line-height: 1.65;
}

.editor-insights-braddeals #editor-insights-content .editor-insights-list li:last-child {
  margin-bottom: 0;
}

.editor-insights-braddeals #editor-insights-content a {
  color: #1a73e8;
  text-decoration: none;
}

.editor-insights-braddeals #editor-insights-content a:hover {
  text-decoration: underline;
}

/* How to Get It */
.how-to-get-it-braddeals {
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.how-to-get-it-braddeals h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.how-to-get-it-braddeals #how-to-get-it-content {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Posted By */
.posted-by-braddeals {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 16px;
}

/* Posted by como separador (antes de compartilhar) */
.posted-by-braddeals.posted-by-separator {
  padding-bottom: 16px;
  border-bottom: 1px solid #e8e8e8;
}

.posted-time-braddeals {
  color: #999;
}

/* Botões de compartilhamento */
.deal-share-section {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.share-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
}

.deal-share-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.deal-share-buttons .btn-share-icon {
  width: 60px;
  height: 60px;
  aspect-ratio: 1 / 1;
  min-width: 60px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  flex: 0 0 60px;
  border: none;
  border-radius: 999px !important;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: white !important;
  box-sizing: border-box;
}

.deal-share-buttons .btn-share-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.deal-share-buttons .btn-share-icon:active {
  transform: translateY(0);
}

/* Cores específicas por rede social */
.btn-share-whatsapp {
  background: #25D366 !important;
}

.btn-share-whatsapp:hover {
  background: #20BA5A !important;
}

.btn-share-facebook {
  background: #1877F2 !important;
}

.btn-share-facebook:hover {
  background: #1664D8 !important;
}

.btn-share-twitter {
  background: #1DA1F2 !important;
}

.btn-share-twitter:hover {
  background: #1A91DA !important;
}

.btn-share-telegram {
  background: #0088CC !important;
}

.btn-share-telegram:hover {
  background: #0077B5 !important;
}

.btn-share-copy {
  background: #6c757d !important;
}

.btn-share-copy:hover {
  background: #5a6268 !important;
}

.btn-share-copy.copied {
  background: #28a745 !important;
}

.btn-share-copy.copied i::before {
  content: "\f00c";
}

/* Neutraliza regras legadas do botão WhatsApp "retangular" quando usado no grupo circular */
.deal-share-buttons .btn-share-icon.btn-share-whatsapp {
  padding: 0 !important;
  flex: 0 0 60px !important;
  border-radius: 999px !important;
}

/* Responsive */
@media (max-width: 768px) {
  .deal-title-braddeals {
    font-size: 1.4rem;
  }

  .price-current-braddeals {
    font-size: 1.4rem;
  }

  .cupom-braddeals {
    flex-direction: column;
  }

  .cupom-copy-btn-braddeals {
    width: 100%;
  }

  /* Galeria mobile: thumbnails abaixo da imagem */
  .deal-gallery {
    flex-direction: column;
    gap: 12px;
  }

  .gallery-thumbnails {
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    padding-bottom: 8px;
  }

  .gallery-thumbnail {
    width: 50px;
    height: 50px;
  }

  .gallery-main {
    order: -1;
  }

  /* Botões de compartilhamento mobile */
  .deal-share-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .deal-share-buttons {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
  }

  .deal-share-buttons .btn-share-icon {
    width: 65px;
    height: 65px;
    aspect-ratio: 1 / 1;
    min-width: 65px;
    min-height: 65px;
    flex: 0 0 65px;
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .deal-share-buttons {
    gap: 8px;
  }

  .deal-share-buttons .btn-share-icon {
    width: 46px !important;
    height: 46px !important;
    aspect-ratio: 1 / 1;
    min-width: 46px !important;
    min-height: 46px !important;
    flex: 0 0 46px !important;
    font-size: 1.2rem !important;
  }

  .deal-share-buttons .btn-share-icon.btn-share-whatsapp {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    flex: 0 0 46px !important;
    border-radius: 999px !important;
    padding: 0 !important;
    overflow: hidden;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .deal-share-section {
    align-items: center;
  }

  .deal-share-buttons {
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
    gap: 12px;
  }

  .deal-share-buttons .btn-share-icon {
    width: 58px;
    height: 58px;
    aspect-ratio: 1 / 1;
    min-width: 58px;
    min-height: 58px;
    flex: 0 0 58px;
    font-size: 1.4rem;
  }
}

@media (max-width: 370px) {
  .deal-share-section {
    align-items: stretch;
  }

  .deal-share-buttons {
    justify-content: flex-start !important;
    gap: 6px !important;
    flex-wrap: wrap !important;
  }

  .deal-share-buttons .btn-share-icon {
    width: 40px !important;
    height: 40px !important;
    aspect-ratio: 1 / 1;
    min-width: 40px !important;
    min-height: 40px !important;
    flex: 0 0 40px !important;
    font-size: 1.05rem !important;
  }

  .deal-share-buttons .btn-share-icon.btn-share-whatsapp {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    flex: 0 0 40px !important;
    border-radius: 999px !important;
    padding: 0 !important;
    overflow: hidden;
  }
}

/* ========================================
   Breadcrumbs
======================================== */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  font-size: 0.875rem;
  color: #666;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: #0052A3;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: #003d7a;
  text-decoration: underline;
}

.breadcrumbs .separator {
  color: #999;
  user-select: none;
}

.breadcrumbs .current {
  color: #333;
  font-weight: 500;
}

@media (max-width: 768px) {
  .breadcrumbs {
    font-size: 0.8rem;
    padding: 8px 0;
  }
}

/* ========================================
   FAQ Accordion
======================================== */
.faq-section {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.faq-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f1d3a;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-title::before {
  content: "❓";
  font-size: 1.6rem;
}

.faq-item {
  border-bottom: 1px solid #e8e8e8;
  padding: 16px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #0f1d3a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #0052A3;
}

.faq-icon {
  font-size: 1.2rem;
  color: #0052A3;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 12px;
}

.faq-answer p {
  margin: 0 0 12px 0;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  color: #0f1d3a;
}

.faq-answer a {
  color: #0052A3;
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.faq-answer ul {
  margin: 8px 0;
  padding-left: 24px;
}

.faq-answer li {
  margin: 6px 0;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 16px;
    margin: 16px 0;
  }

  .faq-title {
    font-size: 1.2rem;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
}

/* ========================================
   Footer (BradDeals inspired)
======================================== */
.main-footer {
  background: #1a2332;
  color: #ffffff;
  padding: 48px 20px 24px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-about {
  margin-bottom: 40px;
  max-width: 600px;
}

.footer-logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-about-text {
  color: #b8c1cc;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #b8c1cc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-social {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-social h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1.3rem;
  transition: all 0.2s;
}

.social-links a:hover {
  background: #0052A3;
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: #b8c1cc;
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-bottom p {
  margin: 8px 0;
}

@media (max-width: 768px) {
  .main-footer {
    padding: 32px 20px 20px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-logo-text {
    font-size: 1.5rem;
  }
}

/* ========================================
   MODAL DE DETALHES (Estilo BradDeals)
   ======================================== */

.deal-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.deal-modal[hidden] {
  display: none;
}

.deal-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  animation: fadeIn 0.3s ease;
}

.deal-modal-content {
  position: relative;
  width: 420px;
  max-width: 100%;
  height: 100vh;
  background: #ffffff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  animation: slideInRight 0.3s ease;
  z-index: 1;
}

.deal-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #333;
  transition: all 0.2s;
  z-index: 2;
}

.deal-modal-close:hover {
  background: rgba(0, 0, 0, 0.2);
}

.deal-modal-body {
  padding: 20px;
}

/* Container para imagem única ou carousel */
.deal-modal-image-container {
  width: 100%;
  height: 320px;
  margin-bottom: 20px;
  position: relative;
}

.deal-modal-image {
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  border-radius: 12px;
  overflow: hidden;
}

.deal-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

/* Swiper carousel no modal */
.deal-modal-swiper {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
}

.deal-modal-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}

.deal-modal-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

/* Swiper pagination (dots) */
.deal-modal-swiper .swiper-pagination {
  bottom: 10px;
}

.deal-modal-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.8);
  opacity: 0.7;
  width: 10px;
  height: 10px;
}

.deal-modal-swiper .swiper-pagination-bullet-active {
  background: #0052A3;
  opacity: 1;
  width: 12px;
  height: 12px;
}

/* Botões de navegação */
.deal-modal-swiper .swiper-button-prev,
.deal-modal-swiper .swiper-button-next {
  color: #0052A3;
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.deal-modal-swiper .swiper-button-prev::after,
.deal-modal-swiper .swiper-button-next::after {
  font-size: 18px;
  font-weight: 900;
}

.deal-modal-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0052A3;
  margin: 0 0 16px 0;
  line-height: 1.3;
  text-decoration: underline;

  /* Limitar a 1 linha */
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.deal-modal-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.price-current {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0052A3;
}

.price-old {
  font-size: 1.1rem;
  color: #999;
  text-decoration: line-through;
}

.price-badge {
  background: #d32f2f;
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
}

.deal-modal-description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid #0052A3;
}

.deal-modal-description p {
  margin: 0 0 10px 0;
}

.deal-modal-description p:last-child {
  margin-bottom: 0;
}

.deal-modal-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.deal-modal-meta span {
  display: inline-block;
}

.deal-modal-meta span:not(:last-child)::after {
  content: "•";
  margin-left: 8px;
  color: #ccc;
}

.deal-modal-btn-primary {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: #d32f2f;
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  transition: all 0.2s;
}

.deal-modal-btn-primary:hover {
  background: #b71c1c;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.deal-modal-btn-secondary {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  color: #0052A3;
  text-align: center;
  text-decoration: none;
  border: 2px solid #0052A3;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s;
}

.deal-modal-btn-secondary:hover {
  background: #0052A3;
  color: white;
}

.deal-modal-btn-secondary i {
  margin-left: 6px;
  font-size: 0.85rem;
}

/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Mobile: Bottom Sheet */
@media (max-width: 768px) {
  .deal-modal {
    align-items: flex-end;
    justify-content: center;
  }

  .deal-modal-content {
    width: 100%;
    height: auto;
    max-height: 85vh;
    border-radius: 20px 20px 0 0;
    animation: slideInUp 0.3s ease;
  }

  /* Esconder imagem no mobile (igual BradDeals) */
  .deal-modal-image-container {
    display: none !important;
  }

  .deal-modal-image {
    display: none;
  }

  .deal-modal-title {
    font-size: 1.2rem;
  }

  .price-current {
    font-size: 1.5rem;
  }
}

/* =====================================================
   TEMPLATE ESPECIAL PARA CUPONS
   ===================================================== */

.cupom-code-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  padding: 28px;
  margin: 24px 0;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.25);
}

.cupom-badge {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.cupom-code-box {
  background: white;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cupom-code {
  flex: 1;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border: 2px dashed #667eea;
  padding: 18px 16px;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-align: center;
  font-family: 'Courier New', monospace;
  color: #333;
  user-select: all;
  cursor: text;
}

#btn-copiar-cupom {
  background: #667eea;
  color: white;
  border: none;
  padding: 18px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

#btn-copiar-cupom:hover {
  background: #5568d3;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

#btn-copiar-cupom.copiado {
  background: #4caf50;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.btn-cupom-primary {
  display: block;
  background: white;
  color: #667eea;
  text-align: center;
  padding: 16px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-cupom-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  background: #f8f8f8;
}

.cupom-hint {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  text-align: center;
  margin: 12px 0 0 0;
}

.cupom-instrucoes {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-left: 4px solid #667eea;
  padding: 24px;
  margin: 32px 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cupom-instrucoes h3 {
  color: #333;
  font-size: 1.2rem;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cupom-instrucoes h3 i {
  color: #667eea;
}

.cupom-instrucoes ol {
  counter-reset: instrucoes;
  padding: 0;
  margin: 0;
  list-style: none;
}

.cupom-instrucoes li {
  counter-increment: instrucoes;
  padding: 12px 0 12px 56px;
  position: relative;
  line-height: 1.6;
  color: #555;
}

.cupom-instrucoes li::before {
  content: counter(instrucoes);
  position: absolute;
  left: 0;
  top: 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.cupom-instrucoes li strong {
  color: #333;
}

.cupom-faq {
  background: white;
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.cupom-faq h3 {
  color: #333;
  font-size: 1.2rem;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cupom-faq h3 i {
  color: #667eea;
}

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #667eea;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
}

.faq-question {
  padding: 16px 20px;
  cursor: pointer;
  background: #f8f9fa;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: all 0.2s ease;
}

.faq-question:hover {
  background: #e9ecef;
}

.faq-question i {
  color: #667eea;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
  background: #667eea;
  color: white;
}

.faq-item.active .faq-question i {
  color: white;
}

.faq-answer {
  padding: 16px 20px;
  background: white;
  color: #555;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
  border-top: 1px solid #e0e0e0;
}

/* Toast de feedback */
.cupom-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #333;
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.cupom-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .cupom-code {
    font-size: 1.2rem;
    letter-spacing: 2px;
    padding: 14px 12px;
  }

  .cupom-code-box {
    flex-direction: column;
    gap: 12px;
  }

  #btn-copiar-cupom {
    width: 100%;
  }

  .cupom-instrucoes li {
    padding-left: 48px;
  }

  .cupom-instrucoes li::before {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .cupom-toast {
    bottom: 20px;
    right: 20px;
    left: 20px;
    text-align: center;
  }
}

/* ============================================
   OFERTAS EXPIRADAS - Estilo Promobit
   ============================================ */
/* Imagem monocromática quando expirada/desativada */
#deal-image.expired,
#deal-image-main.expired {
  filter: grayscale(100%);
  opacity: 0.7;
}

/* Botão cinza quando expirado */
.btn-get-deal-braddeals.expired {
  background: #6b7280 !important;
  cursor: pointer;
  pointer-events: auto;
}

.btn-get-deal-braddeals.expired:hover {
  background: #6b7280 !important;
  transform: none;
}

/* ============================================
   FAQ NA COLUNA PRINCIPAL (substituiu Extras)
   ============================================ */
.faq-section-main {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  border: 1px solid #e8e8e8;
}

/* Reaproveitar estilos do FAQ original */
.faq-section-main .faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 14px 0;
}

.faq-section-main .faq-item:last-child {
  border-bottom: none;
}

.faq-section-main .faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f1d3a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}

.faq-section-main .faq-question:hover {
  color: #0052A3;
}

.faq-section-main .faq-icon {
  font-size: 1.1rem;
  color: #0052A3;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-section-main .faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-section-main .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
}

.faq-section-main .faq-item.active .faq-answer {
  max-height: 600px;
  padding-top: 12px;
}

.faq-section-main .faq-answer p {
  margin: 0 0 10px 0;
}

.faq-section-main .faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-section-main .faq-answer strong {
  color: #0f1d3a;
}

.faq-section-main .faq-answer a {
  color: #0052A3;
  text-decoration: none;
}

.faq-section-main .faq-answer a:hover {
  text-decoration: underline;
}

.faq-section-main .faq-answer ul,
.faq-section-main .faq-answer ol {
  margin: 8px 0;
  padding-left: 24px;
}

.faq-section-main .faq-answer li {
  margin: 6px 0;
}

.faq-section-main .faq-answer code {
  background: #e3f2fd;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-family: monospace;
}

@media (max-width: 768px) {
  .faq-section-main {
    padding: 16px;
    margin: 16px 0;
  }

  .faq-section-main .faq-question {
    font-size: 0.9rem;
  }

  .faq-section-main .faq-answer {
    font-size: 0.85rem;
  }
}

/* ============================================
   SISTEMA DE ABAS - Estilo Promobit
   ============================================ */

.info-tabs-container {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  margin: 24px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.info-tabs-header {
  display: flex;
  background: #f8f9fa;
  border-bottom: 2px solid #e0e0e0;
  overflow-x: auto;
  gap: 4px;
  padding: 8px 8px 0 8px;
}

.info-tab-btn {
  flex: 1;
  min-width: 110px;
  padding: 14px 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-radius: 8px 8px 0 0;
  font-family: inherit;
}

.info-tab-btn:hover {
  background: #ffffff;
  color: #1a73e8;
}

.info-tab-btn.active {
  background: #ffffff;
  color: #1a73e8;
  border-bottom-color: #1a73e8;
}

.info-tabs-content {
  padding: 24px;
  min-height: 300px;
}

.info-tab-panel {
  display: none;
  animation: fadeInTab 0.3s ease;
}

.info-tab-panel.active {
  display: block;
}

@keyframes fadeInTab {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile: abas deslizáveis horizontalmente */
@media (max-width: 768px) {
  .info-tabs-header {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .info-tab-btn {
    flex: 0 0 auto;
    min-width: 100px;
    font-size: 0.85rem;
    padding: 12px 14px;
  }

  .info-tabs-content {
    padding: 16px;
  }
}

/* Telas pequenas (< 480px) */
@media (max-width: 480px) {
  .info-tab-btn {
    min-width: 90px;
    font-size: 0.8rem;
    padding: 10px 12px;
  }

  .info-tabs-content {
    padding: 12px;
  }
}

/* Telas muito pequenas (< 320px) - Estilo Promobit/Pelando */
@media (max-width: 320px) {
  .info-tab-btn {
    min-width: 70px;
    font-size: 0.7rem;
    padding: 8px 8px;
    white-space: normal;
    line-height: 1.2;
  }

  .info-tabs-content {
    padding: 8px;
  }

  .info-tabs-header {
    gap: 2px;
    padding: 4px 4px 0 4px;
  }
}

/* ========================================
   Termômetro de Preço — Histórico
   ======================================== */

.historico-preco {
  margin-top: 12px;
  padding: 14px 16px;
  background: #f8f9fa;
  border-radius: 8px;
}

.historico-preco-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #555;
  margin: 0 0 14px 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.thermo-track-area {
  position: relative;
  padding-top: 34px; /* espaço para a pill acima da barra */
  margin-bottom: 8px;
  overflow: visible;
}

.thermo-pill-anchor {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.thermo-pill {
  background: #dfe6e9;
  color: #2d3436;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.4;
}

.thermo-pill-caret {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #dfe6e9;
  margin-top: 1px;
}

.thermo-bar {
  height: 10px;
  border-radius: 5px;
  background: linear-gradient(to right, #27ae60 0%, #a8e063 30%, #fdcb6e 55%, #e17055 78%, #e74c3c 100%);
}

.thermo-extremes {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.thermo-extreme-end {
  text-align: right;
}

.thermo-extreme-label {
  font-size: 0.72rem;
  color: #888;
  margin-bottom: 2px;
}

.thermo-price-min {
  font-size: 0.88rem;
  font-weight: 700;
  color: #27ae60;
}

.thermo-price-max {
  font-size: 0.88rem;
  font-weight: 700;
  color: #e74c3c;
}

