/* ============================================================
   Metalfalp — style.css
   Paleta: branco + azul aço (--blue) + detalhes quentes
   Mobile-first, limpo, focado em conversão
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue:        #1a6fc4;
  --blue-dark:   #1259a5;
  --blue-mid:    #2e86d4;
  --blue-light:  #e8f2fc;
  --blue-pale:   #f0f7ff;

  --text:        #0d1b2a;
  --text-muted:  #526070;
  --text-light:  #8fa0b0;

  --border:      #dde4ed;
  --border-mid:  #c8d4e3;

  --bg:          #ffffff;
  --bg2:         #f6f9fd;
  --bg3:         #eef4fb;

  --green:       #25d366;
  --green-dark:  #1db954;

  --radius:      14px;
  --radius-sm:   8px;
  --radius-xs:   5px;

  --shadow-sm:   0 1px 4px rgba(13,27,42,0.07);
  --shadow:      0 4px 16px rgba(13,27,42,0.09);
  --shadow-lg:   0 12px 40px rgba(13,27,42,0.13);

  --transition:  0.2s ease;
  --max-w:       1120px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Sora', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ── UTILITÁRIOS ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 4rem 0; }
.section--alt { background: var(--bg2); }

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text);
}

.section-title em {
  font-style: italic;
  color: var(--blue);
}

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

/* ── BOTÕES ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26,111,196,0.28);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(26,111,196,0.36);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue-light);
}

.btn-wpp {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.28);
}
.btn-wpp:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.36);
}

.btn-wpp-sm {
  font-size: 0.82rem;
  padding: 0.5rem 1rem;
  gap: 5px;
}

.btn-lg {
  font-size: 1.05rem;
  padding: 1rem 2.2rem;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.navbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.navbar__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.navbar__logo span { color: var(--text); }

.navbar__links {
  display: none;
  list-style: none;
  gap: 2rem;
}
.navbar__links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
}
.navbar__links a:hover { color: var(--blue); }

.navbar__cta {
  display: none;
}

.navbar__toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile menu */
.navbar__mobile {
  display: none;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 1.25rem;
}
.navbar__mobile.open { display: block; }
.navbar__mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.navbar__mobile ul li a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.navbar__mobile ul li:last-child a { border-bottom: none; }
.navbar__mobile .btn-wpp {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .navbar__links  { display: flex; }
  .navbar__cta    { display: inline-flex; }
  .navbar__toggle { display: none; }
}

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, var(--blue-pale) 0%, #ffffff 55%);
  padding: 5rem 1.25rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26,111,196,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero__badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 7vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  max-width: 700px;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--blue);
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  max-width: 560px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-item__check {
  width: 20px;
  height: 20px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── CATEGORIAS ── */
.cats-grid {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cat-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.1rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  text-align: left;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}

.cat-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  background: var(--blue-light);
}

.cat-card__icon {
  width: 34px;
  height: 34px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.cat-card__name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
}

.cat-card__desc {
  display: none;
}

/* ── CATÁLOGO / BUSCA ── */
.catalog-controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.search-wrap {
  position: relative;
  max-width: 400px;
}

.search-wrap__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.search-input {
  width: 100%;
  height: 48px;
  padding: 0 1rem 0 2.75rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}
.search-input:focus   { border-color: var(--blue); }
.search-input::placeholder { color: var(--text-light); }

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  height: 38px;
  padding: 0 1.1rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
}

/* ── GRID DE PRODUTOS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.product-card {
  background: #eaf3fd;
  border: 1px solid #c8dff5;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 10px rgba(26,111,196,0.08);
}

.product-card:hover {
  box-shadow: 0 10px 32px rgba(26,111,196,0.18);
  transform: translateY(-3px);
  border-color: var(--blue-mid);
}

/* ── ÁREA DA IMAGEM ── */
.product-card__img {
  width: 100%;
  height: 200px;
  background: #eaf3fd;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #eaf3fd;
  padding: 12px;
  transition: transform 0.4s ease;
}

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

/* Placeholder centralizado */
.product-card__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  background: #eaf3fd;
  color: var(--text-light);
  text-align: center;
}
.product-card__placeholder svg { opacity: 0.35; }
.product-card__placeholder span { font-size: 0.75rem; }

/* ── CORPO DO CARD ── */
.product-card__body {
  padding: 1rem 1.1rem 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: #eaf3fd;
}

.product-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 0.1rem;
}

.product-card__name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.3;
}

.product-card__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

/* ── RODAPÉ: PREÇO + BOTÃO ── */
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.75rem 1.1rem 1rem;
  background: #d6eaf8;
  border-top: 1px solid #c8dff5;
  margin-left: -1.1rem;
  margin-right: -1.1rem;
  margin-bottom: -1.1rem;
}

.product-card__price {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}

.product-card__price small {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-muted);
  display: none;
}
.no-results.visible { display: block; }
.no-results__icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.no-results h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }

/* ── DIFERENCIAIS ── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}

.diff-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow var(--transition), transform var(--transition);
}

.diff-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.diff-card__icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--blue);
}

.diff-card__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.diff-card__text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── FAQ ── */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  padding: 1.2rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-q__icon {
  flex-shrink: 0;
  color: var(--blue);
  transition: transform 0.3s;
  width: 22px;
  height: 22px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-q.open .faq-q__icon { transform: rotate(45deg); }

.faq-a {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
}

.faq-a.open {
  max-height: 260px;
  padding-bottom: 1.25rem;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--blue);
  padding: 5rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.cta-contact-info {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* ── FOOTER ── */
.footer {
  background: var(--text);
  padding: 3rem 1.25rem 2rem;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

@media (min-width: 600px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .footer__top {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer__brand .navbar__logo {
  color: #fff;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.footer__brand .navbar__logo span { color: rgba(255,255,255,0.55); }

.footer__brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 280px;
}

.footer__col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer__col ul li a:hover { color: #fff; }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ── WPP FLOAT ── */
.wpp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 300;
  background: var(--green);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.wpp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.5);
}

.wpp-float__pulse {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  background: #ff4757;
  border-radius: 50%;
  border: 2px solid var(--bg);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.2); }
}

/* ── PÁGINA DO PRODUTO ── */
.product-page { padding: 3rem 0 5rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--blue);
  transition: opacity var(--transition);
}
.breadcrumb a:hover { opacity: 0.75; }
.breadcrumb__sep { color: var(--border-mid); }

.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .product-layout {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
    gap: 3.5rem;
  }
}

/* Galeria */
.product-gallery__main {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  padding: 12px;
}

.product-gallery__thumbs {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 4px;
}

.product-gallery__thumbs::-webkit-scrollbar { height: 4px; }
.product-gallery__thumbs::-webkit-scrollbar-track { background: var(--bg2); }
.product-gallery__thumbs::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 2px; }

.thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition);
}

.thumb.active,
.thumb:hover { border-color: var(--blue); }

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

/* Info do produto */
.product-info__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.product-info__name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.15;
}

.product-info__price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.product-info__price-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.product-info__desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.product-specs-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.product-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
}

.product-specs li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-specs li:last-child { border-bottom: none; }

.product-specs li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

.product-cta-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-cta-box .btn-wpp {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 0.95rem;
}

.product-cta-box .btn-outline {
  width: 100%;
  justify-content: center;
  font-size: 0.88rem;
  padding: 0.7rem;
}

.product-cta-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Produtos relacionados */
.related-section { padding: 3.5rem 0; background: var(--bg2); }

/* ── ANIMAÇÕES DE ENTRADA ── */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE HELPERS ── */
@media (max-width: 480px) {
  .hero { padding: 3.5rem 1.25rem 3rem; }
  .section { padding: 3rem 0; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
}

/* ── TOPBAR ── */
.topbar {
  background: var(--blue);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.45rem 1.25rem;
}
.topbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.topbar__inner a {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  transition: color 0.2s;
}
.topbar__inner a:hover { color: #fff; }
.topbar__inner strong { color: #fff; }

/* ── HERO FROM (preço a partir de) ── */
.hero__from {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  font-size: 0.88rem;
  color: var(--blue-dark);
  margin-bottom: 1.25rem;
}
.hero__from strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-dark);
}

/* ── INSTAGRAM PLACEHOLDER NAVBAR ── */
.navbar__ig-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1.5px dashed var(--border-mid);
  cursor: default;
  opacity: 0.6;
}

/* ── INSTAGRAM PLACEHOLDER FOOTER ── */
.footer__ig-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  cursor: default;
}

/* ── DEPOIMENTOS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.review-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--blue-light);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}
.review-card__stars {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 2px;
}
.review-card__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.review-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.review-card__name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}
.review-card__local {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ── NAVBAR LINKS DESKTOP ── */
@media (min-width: 768px) {
  .navbar__links { display: flex; }
}

/* ── PLACEHOLDER SEM FOTO ── */
.product-card__placeholder-icon  { font-size: 1.8rem; opacity: 0.4; display: block; }
.product-card__placeholder-text  { font-size: 0.78rem; font-weight: 600; color: var(--text-light); display: block; }

/* ═══════════════════════════════════════
   CARDS DE PRODUTO — NOVO LAYOUT
   imagem em cima · info no meio · preço+cta em baixo
═══════════════════════════════════════ */

.pc {
  display: flex;
  flex-direction: column;
  background: #eaf3fd;
  border: 1px solid #c2d9f0;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 2px 8px rgba(26,111,196,0.07);
}
.pc:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,111,196,0.15);
  border-color: #93c5e8;
}

/* Área da imagem — centralizada */
.pc-img {
  width: 100%;
  height: 190px;
  background: #dceefb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.pc-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  background: #dceefb;
  transition: transform 0.35s ease;
}
.pc:hover .pc-img img { transform: scale(1.05); }

/* Placeholder centralizado */
.pc-img .pc-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  color: #93b8d4;
}
.pc-img .pc-ph-icon { font-size: 1.8rem; opacity: 0.6; }
.pc-img .pc-ph-text { font-size: 0.78rem; font-weight: 600; }

/* Corpo: tag + nome + desc */
.pc-body {
  padding: 1rem 1.1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}
.pc-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: #c8dff5;
  padding: 0.18rem 0.65rem;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 0.15rem;
}
.pc-name {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.3;
}
.pc-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Rodapé: preço + botão */
.pc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.8rem 1.1rem;
  background: #d0e8f7;
  border-top: 1px solid #b8d4ec;
  flex-shrink: 0;
}
.pc-price {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.2;
}
.pc-nota {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* ═══════════════════════════
   CARD SIMPLES — v3
   foto · nome · preço · botão
═══════════════════════════ */

.pc {
  display: flex;
  flex-direction: column;
  background: #eaf3fd;
  border: 1px solid #b8d4ec;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(26,111,196,0.08);
}
.pc:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(26,111,196,0.16);
}

/* FOTO */
.pc-img {
  width: 100%;
  height: 200px;
  background: #dceefb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.pc-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.3s;
}
.pc:hover .pc-img img { transform: scale(1.05); }

.pc-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #7aaac8;
  width: 100%;
  height: 100%;
}
.pc-ph-icon { font-size: 2rem; opacity: 0.5; }
.pc-ph-text { font-size: 0.78rem; font-weight: 600; }

/* INFO: nome + preço + botão — tudo centralizado */
.pc-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 1rem 1.1rem;
  gap: 0.5rem;
  background: #eaf3fd;
}
.pc-name {
  font-weight: 700;
  font-size: 0.97rem;
  color: #0d1b2a;
  line-height: 1.3;
}
.pc-price {
  font-weight: 800;
  font-size: 1.2rem;
  color: #1259a5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}
.pc-nota {
  font-size: 0.72rem;
  font-weight: 400;
  color: #526070;
}
.pc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: 0.25rem;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.pc-btn:hover {
  background: #1db954;
  transform: scale(1.02);
}


/* ═══════════════════════════
   CARD FINAL — limpo e unido
═══════════════════════════ */
.pc {
  display: flex;
  flex-direction: column;
  background: #e8f3fc;
  border: 1px solid #b8d4ec;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(26,111,196,0.09);
}
.pc:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(26,111,196,0.17);
}

/* FOTO — sempre presente, mesma altura */
.pc-img {
  width: 100%;
  height: 180px;
  background: #ddeefa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.pc-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  transition: transform 0.3s;
}
.pc:hover .pc-img img { transform: scale(1.05); }
.pc-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  color: #7aaac8;
}
.pc-ph-icon { font-size: 1.8rem; opacity: 0.5; }
.pc-ph-text { font-size: 0.76rem; font-weight: 600; }

/* SEPARADOR */
.pc-divider {
  height: 1px;
  background: #c2d9f0;
  flex-shrink: 0;
}

/* INFO — nome + preço centralizados */
.pc-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.85rem 1rem 1rem;
  gap: 0.35rem;
  flex: 1;
}
.pc-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #0d1b2a;
  line-height: 1.3;
}
.pc-price {
  font-weight: 800;
  font-size: 1.25rem;
  color: #1259a5;
}
.pc-nota {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: #7a8fa0;
  margin-top: 1px;
}
.pc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 0.65rem;
  border-radius: 0 0 14px 14px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  flex-shrink: 0;
  transition: background 0.2s;
  text-decoration: none;
}
.pc-btn:hover { background: #1db954; }
