:root {
  --red: #E30613;
  --black: #0B0B0B;
  --white: #FFFFFF;
  --gray: #F2F2F2;
  --wpp-green: #25D366;
  --wpp-dark: #128C7E;
}

/* ===== WHATSAPP FLUTUANTE ===== */
@keyframes wpp-ring {
  0%   { transform: rotate(0deg) scale(1); }
  10%  { transform: rotate(-15deg) scale(1.08); }
  20%  { transform: rotate(15deg) scale(1.08); }
  30%  { transform: rotate(-12deg) scale(1.05); }
  40%  { transform: rotate(12deg) scale(1.05); }
  50%  { transform: rotate(-8deg) scale(1.02); }
  60%  { transform: rotate(8deg) scale(1.02); }
  70%  { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(0deg) scale(1); }
}

@keyframes wpp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70%  { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.wpp-float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  cursor: pointer;
  z-index: 9999;
  border-radius: 50%;
  animation: wpp-pulse 2s ease-in-out infinite, wpp-ring 3.5s ease-in-out infinite;
  transition: transform .2s;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.wpp-float-btn:hover,
.wpp-float-btn:focus {
  transform: scale(1.12);
  animation: none;
  box-shadow: 0 6px 22px rgba(37,211,102,.55);
}

.wpp-float-btn svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.25));
}

/* ===== MODAL WHATSAPP ===== */
.wpp-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.52);
  z-index: 10000;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px 20px 106px 20px;
}

.wpp-modal-overlay.wpp-open {
  display: flex;
}

.wpp-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 12px 48px rgba(0,0,0,.22);
  overflow: hidden;
  animation: wpp-modal-in .28s cubic-bezier(.22,1,.36,1);
}

@keyframes wpp-modal-in {
  from { opacity: 0; transform: translateY(30px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.wpp-modal-header {
  background: var(--wpp-dark);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
}

.wpp-modal-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}

.wpp-modal-title {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
}

.wpp-modal-subtitle {
  color: rgba(255,255,255,.78);
  font-size: .82rem;
  margin-top: 2px;
}

.wpp-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,.85);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  z-index: 1;
  transition: color .15s;
}

.wpp-modal-close:hover { color: #fff; }

.wpp-modal-form {
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wpp-modal-form label {
  font-size: .82rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 5px;
}

.wpp-modal-form input,
.wpp-modal-form textarea {
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--black);
  outline: none;
  transition: border-color .2s;
  resize: none;
  margin-bottom: 14px;
  background: #fafafa;
}

.wpp-modal-form input:focus,
.wpp-modal-form textarea:focus {
  border-color: var(--wpp-green);
  background: #fff;
}

.wpp-modal-submit {
  background: var(--wpp-green);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-top: 2px;
  letter-spacing: .01em;
}

.wpp-modal-submit:hover {
  background: var(--wpp-dark);
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .wpp-float-btn {
    bottom: 18px;
    right: 16px;
    width: 54px;
    height: 54px;
  }
  .wpp-modal-overlay {
    padding: 10px 10px 92px 10px;
  }
  .wpp-modal {
    max-width: 100%;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

p,
span,
li,
a {
  font-family: 'Inter', sans-serif;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;

}

/* TOPBAR */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 38px;
  background: #050505;
  border-bottom: 1px solid rgba(227, 6, 19, 0.30);
  z-index: 101;
  display: flex;
  align-items: center;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.topbar-contact {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px 20px;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.topbar-link:hover {
  color: var(--red);
}

.topbar-link svg {
  flex-shrink: 0;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-social-link {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  line-height: 1;
}

.topbar-social-link:hover {
  color: var(--red);
}

.topbar-social-wpp:hover {
  color: #25D366;
}

/* HEADER */
.header {
  position: fixed;
  top: 38px;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 74px;
  background: #111111;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 6px 28px rgba(0, 0, 0, 0.6);
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #E30613 0%, rgba(227, 6, 19, 0.45) 40%, transparent 80%);
  pointer-events: none;
}

.header .container {
  max-width: 1200px;
}

.header-content {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.25s ease;
}

.logo-link:hover {
  opacity: 0.85;
}

.logo {
  height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav a:not(.btn-nav) {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  font-size: 0.97rem;
  letter-spacing: 0.5px;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: #E30613;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav a:not(.btn-nav):hover {
  color: var(--white);
}

.nav a:not(.btn-nav):hover::after {
  width: 100%;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  padding: 11px 26px;
  border-radius: 40px;
  background: linear-gradient(135deg, #D60000 0%, #FF2A2A 100%);
  box-shadow: 0 4px 18px rgba(214, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-nav:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(214, 0, 0, 0.52) !important;
  filter: none !important;
}

.btn-nav-mobile {
  display: none;
}

.btn-assinante-mobile-header {
  display: none;
}

/* HERO */
.hero {
  position: relative;
  min-height: 95vh;
  padding-top: 112px;
  background: url("./assets/hero-image.jpg") center/cover no-repeat;
  color: var(--white);
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.84) 0%,
    rgba(0, 0, 0, 0.70) 55%,
    rgba(18, 0, 0, 0.76) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 72px 0 88px;
  gap: 0;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.2rem, 4.8vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
}

.hero h1 span {
  color: var(--red);
}

.hero p {
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: clamp(1rem, 1.9vw, 1.18rem);
  opacity: 0.86;
  line-height: 1.68;
  font-weight: 400;
}

/* Hero badges */
.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-bottom: 38px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.3px;
}

.hero-badge-check {
  color: var(--red);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
}

.icon-svg {
  width: 24px;
  height: 24px;
  display: block;
}

.stat-icon .icon-svg {
  width: 26px;
  height: 26px;
}

.card-icon .icon-svg {
  width: 28px;
  height: 28px;
}

.plan-icon .icon-svg {
  width: 26px;
  height: 26px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 0;
}

.hero-actions .btn-primary {
  background: linear-gradient(135deg, #D60000 0%, #FF2A2A 100%);
  padding: 16px 38px;
  border-radius: 40px;
  font-size: 1.02rem;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(214, 0, 0, 0.42);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(214, 0, 0, 0.58);
  filter: none;
}

.hero-actions .btn-secondary {
  color: var(--white);
  padding: 15px 36px;
  border-radius: 40px;
  font-size: 1.02rem;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.hero-actions .btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.13);
  filter: none;
}

/* CONFIANÇA */
.trust {
  background: var(--gray);
  padding: 60px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 20px;
}

.trust-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.trust-item-highlight {
  border-top: 3px solid var(--red);
  box-shadow: 0 6px 24px rgba(227, 6, 19, 0.1);
}

.trust-item-highlight:hover {
  box-shadow: 0 16px 36px rgba(227, 6, 19, 0.16);
}

.trust-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--white);
  color: #D60000;
  border: 1px solid rgba(214, 0, 0, 0.15);
  box-shadow: 0 4px 14px rgba(214, 0, 0, 0.14);
  display: grid;
  place-items: center;
}

.trust-icon .icon-svg {
  width: 26px;
  height: 26px;
}

.trust-item h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.trust-item p {
  font-size: 0.95rem;
  color: #4a4a4a;
  line-height: 1.6;
}

/* INDICADORES */
.stats {
  background: var(--white);
  padding: 64px 0 56px;
  text-align: center;
}

.stats-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.stats-title {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 22px;
  align-items: stretch;
  max-width: 680px;
  margin: 0 auto 48px;
}

.stat-item {
  background: #f9f9f9;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}

.stat-number {
  font-size: clamp(3rem, 5.5vw, 3.8rem);
  line-height: 1;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.stat-number::before {
  content: "+";
  color: var(--red);
  margin-right: 3px;
  font-size: 0.75em;
  vertical-align: super;
}

.stat-label {
  font-size: 0.97rem;
  color: #5a5a5a;
  font-weight: 500;
  line-height: 1.4;
}

/* Stats CTA */
.stats-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.stats-cta-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  opacity: 0.85;
}

.stats-cta-btn {
  display: inline-block;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(135deg, #D60000 0%, #FF2A2A 100%);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  padding: 15px 42px;
  border-radius: 40px;
  box-shadow: 0 8px 26px rgba(214, 0, 0, 0.36);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(214, 0, 0, 0.52);
  filter: none;
}

.meu-plans {
  padding: 64px 0 72px;
  background: var(--white);
}

#meu-plans {
  text-align: center;
  margin: 0 0 36px;
  font-size: 2.4rem;
  color: var(--black);
}

#meu-plans span {
  color: var(--red);
}

.plans-grid {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.plan-card {
  background: #ececec;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  padding: 34px 28px 30px;
  display: flex;
  flex-direction: column;
  min-height: 485px;
  position: relative;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-card-popular {
  background: var(--black);
  border-color: rgba(227, 6, 19, 0.8);
  color: var(--white);
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 999px;
}

.plan-icon {
  width: 62px;
  height: 62px;
  border-radius: 12px;
  background: #f4dddd;
  color: var(--red);
  font-size: 1.8rem;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}

.plan-card-popular .plan-icon {
  background: var(--red);
  color: var(--white);
}

.plan-speed {
  font-size: 2.2rem;
  line-height: 1.05;
  margin-bottom: 14px;
}

.plan-price {
  font-size: 3.15rem;
  font-weight: 700;
  line-height: 1;
  color: var(--red);
  margin-bottom: 22px;
}

.plan-price .currency {
  font-size: 1.8rem;
}

.plan-price .period {
  font-size: 1.25rem;
  color: #666;
  font-weight: 600;
}

.plan-card-popular .plan-price .period {
  color: #bebebe;
}

.plan-features {
  list-style: none;
  margin-bottom: 26px;
  text-align: left;
  padding-left: 2px;
}

.plan-features li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 9px;
  color: #5e5e5e;
}

.plan-features li::before {
  content: "•";
  color: var(--red);
  margin-right: 8px;
  font-weight: 700;
}

.plan-subtitle {
  font-size: 0.95rem;
  margin: -4px 0 14px;
  color: #4f4f4f;
}

.plan-card-popular .plan-subtitle {
  color: #d6d6d6;
}

.plan-card-popular .plan-features li {
  color: #e5e5e5;
}

.plan-button {
  margin-top: auto;
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  background: var(--black);
  color: var(--white);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 13px 16px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.plan-card-popular .plan-button {
  background: var(--red);
  box-shadow: 0 10px 22px rgba(227, 6, 19, 0.28);
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.plan-card-popular:hover {
  transform: translateY(-18px) scale(1.025);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 10px 24px rgba(227, 6, 19, 0.32);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-secondary {
  color: var(--white);
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, filter 0.2s ease;

}

.btn-secondary:hover,
.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* SECTIONS */
.section {
  background: var(--gray);
  padding: 64px 0;
}

.section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: clamp(1.8rem, 2.9vw, 2.4rem);
}

.section h2 span {
  color: var(--red);
}

/* section eyebrow (reutilizado em várias seções) */
.section-eyebrow {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

/* SOBRE */
#sobre {
  padding-top: 72px;
  padding-bottom: 72px;
}

#sobre h2 {
  margin-bottom: 32px;
}

.sobre-content {
  max-width: 820px;
  margin: 0 auto;
}

.sobre-content p {
  font-size: 1.07rem;
  line-height: 1.8;
  margin-bottom: 26px;
  color: #2e2e2e;
}

.sobre-beneficios {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 40px;
}

.sobre-beneficios li {
  font-size: 1rem;
  line-height: 1.6;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--red);
  border-radius: 10px;
  padding: 14px 18px;
  font-weight: 500;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sobre-beneficios li:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.sobre-beneficios li::before {
  content: "✔";
  color: var(--red);
  font-weight: 700;
  margin-right: 10px;
  font-size: 1rem;
}

/* Sobre CTA */
.sobre-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding-top: 8px;
}

.sobre-cta-text {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--black);
  opacity: 0.82;
}

.sobre-cta-btn {
  display: inline-block;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(135deg, #D60000 0%, #FF2A2A 100%);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  padding: 15px 40px;
  border-radius: 40px;
  box-shadow: 0 8px 26px rgba(214, 0, 0, 0.34);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sobre-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(214, 0, 0, 0.5);
  filter: none;
}

/* BACKGROUNDS */
.bg-light {
  background: var(--gray);
   
  
}

.bg-dark {
  background: var(--black);
  color: var(--white);
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.card {
  background: var(--white);
  padding: 32px 28px 28px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-top: 3px solid var(--red);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 255px;
  display: flex;
  flex-direction: column;
}

.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #D60000;
  background: rgba(214, 0, 0, 0.09);
  flex-shrink: 0;
}

.card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.card p {
  font-size: 0.97rem;
  line-height: 1.68;
  color: #4a4a4a;
  flex: 1;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.13);
}

/* Card link */
.card-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  letter-spacing: 0.3px;
  border-bottom: 1.5px solid rgba(214, 0, 0, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.25s ease, opacity 0.25s ease;
  align-self: flex-start;
}

.card-link:hover {
  border-color: var(--red);
  opacity: 0.8;
}

/* Serviços CTA */
.servicos-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-top: 48px;
}

.servicos-cta-text {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--black);
  opacity: 0.82;
}

.servicos-cta-btn {
  display: inline-block;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(135deg, #D60000 0%, #FF2A2A 100%);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  padding: 15px 40px;
  border-radius: 40px;
  box-shadow: 0 8px 26px rgba(214, 0, 0, 0.34);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicos-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(214, 0, 0, 0.5);
  filter: none;
}

/* PARCEIROS */
.partners {
  background: var(--gray);
  padding: 60px 0;
}

.partners h2 {
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 28px;
}

.partners-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.partner-item {
  height: 98px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.partner-item img {
  width: 100%;
  max-width: 150px;
  height: 48px;
  object-fit: contain;
  transition: filter 0.2s ease;
}

.partner-item:hover {
  transform: translateY(-2px) scale(1.02);
}

.partner-item:hover img {
  filter: grayscale(0);
}

/* DEPOIMENTOS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 18px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 22px;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.testimonial-card h3 {
  color: var(--red);
  font-size: 0.98rem;
}

/* FAQ */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 8px;
  color: #4a4a4a;
}

/* CONTATO */
.contato-section {
  background: linear-gradient(135deg, #1a0a0b 0%, #1c1c1e 40%, #0f1923 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contato-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(227, 6, 19, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.contato-box {
  text-align: center;
  position: relative;
  z-index: 1;
}

.contato-box h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.contato-box p {
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.9);
}

.contato-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.contato-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  padding: 28px 16px 24px;
  text-decoration: none;
  color: var(--white);
  backdrop-filter: blur(6px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.contato-card:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: var(--red);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(227, 6, 19, 0.18);
}

.contato-card-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contato-card-icon--wpp  { background: rgba(37, 211, 102, 0.18); color: #25D366; }
.contato-card-icon--tel  { background: rgba(227, 6, 19, 0.18);   color: #ff4d4d; }
.contato-card-icon--insta { background: rgba(225, 48, 108, 0.18);  color: #e1306c; }
.contato-card-icon--fb   { background: rgba(24, 119, 242, 0.18);  color: #4e9af1; }

.contato-card:hover .contato-card-icon--wpp  { background: rgba(37, 211, 102, 0.30); }
.contato-card:hover .contato-card-icon--tel  { background: rgba(227, 6, 19, 0.30); }
.contato-card:hover .contato-card-icon--insta { background: rgba(225, 48, 108, 0.30); }
.contato-card:hover .contato-card-icon--fb   { background: rgba(24, 119, 242, 0.30); }

.contato-card-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.contato-card-value {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  line-height: 1.3;
}



/* FOOTER */
.footer {
  background: #000;
  color: var(--white);
  padding: 44px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1.3fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 22px;
}

.footer-logo {
  width: min(100%, 180px);
  height: auto;
  margin-bottom: 10px;
}

.footer h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--white);
}

.footer-brand p {
  max-width: 270px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  text-decoration: none;
  margin-bottom: 6px;
  display: block;
}

.footer a:hover {
  color: var(--white);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

.social-icon-instagram {
  color: #E4405F;
}

.social-icon-facebook {
  color: #1877F2;
}

.social-icon-whatsapp {
  color: #25D366;
}

.footer-copy {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 14px;
  margin-top: 6px;
}

/* ===== APP DOWNLOAD BADGES ===== */
.footer-app h3 {
  margin-bottom: 10px;
}

.footer-app-badges {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  transition: background 0.22s, border-color 0.22s, transform 0.18s;
  text-decoration: none;
  color: var(--white);
  flex: 1 1 auto;
  min-width: 0;
}

.app-badge:hover,
.app-badge:focus {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-2px);
  color: var(--white);
}

.app-badge-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.app-badge-apple .app-badge-icon {
  color: var(--white);
}

.app-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.app-badge-sub {
  font-size: 0.6rem;
  opacity: 0.78;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.app-badge-name {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}


/* ANIMAÇÕES */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .logo {
    height: 42px;
  }

  .nav {
    gap: 24px;
  }

  .btn-nav {
    padding: 10px 20px;
    font-size: 0.93rem;
  }

  .hero {
    min-height: 92vh;
  }

  .hero p {
    font-size: 1.12rem;
  }

  .plans-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .partners-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 900px) {
  body.menu-open {
    overflow: hidden;
  }

  .topbar {
    position: relative;
    height: auto;
    padding: 8px 0;
  }

  .topbar-contact {
    gap: 4px 12px;
  }

  .topbar-link {
    font-size: 0.68rem;
    white-space: nowrap;
  }

  .topbar-social {
    display: none;
  }

  .header {
    position: relative;
    top: auto;
    height: auto;
  }

  .header-content {
    justify-content: space-between;
    position: relative;
    height: auto;
    flex-wrap: wrap;
    gap: 0;
    padding: 14px 20px 16px 20px;
  }

  .logo {
    height: 38px;
  }

  .menu-toggle {
    display: inline-block;
    z-index: 120;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #111111;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .nav a {
    width: 100%;
    display: block;
    padding: 8px 0;
  }

  .header.menu-open .nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .btn-nav-desktop {
    display: none;
  }

  .btn-nav-mobile {
    display: block;
    text-align: center;
    margin-top: 6px;
  }

  .btn-assinante-mobile-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 12px;
    margin-bottom: 2px;
    padding: 13px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 50px;
  }

  .btn-nav {
    font-size: 0.93rem;
    padding: 9px 20px;
  }

  .hero {
    min-height: 90vh;
    padding-top: 60px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero p {
    font-size: 1.04rem;
  }

  .hero-badges {
    gap: 8px 20px;
    margin-bottom: 30px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    text-align: center;
  }

  .stats {
    padding: 48px 0 40px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 380px;
    margin: 0 auto 36px;
  }

  .stat-item {
    padding: 26px 20px;
  }

  .stats-cta-text {
    font-size: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .plan-card-popular {
    transform: none;
  }

  .partners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .app-badge {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .container {
    width: 92%;
    
  }

  .hero {
    min-height: 88vh;
  }

  .hero h1 {
    font-size: 1.75rem;
    letter-spacing: -0.01em;
  }

  .hero p {
    font-size: 0.97rem;
    margin-bottom: 20px;
  }

  .hero-badges {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 26px;
  }

  .stats {
    padding: 40px 0 32px;
  }

  .stat-item {
    padding: 22px 16px;
  }

  .stat-icon {
    width: 52px;
    height: 52px;
  }

  .stat-number {
    font-size: 3rem;
  }

  .card {
    min-height: auto;
  }

  .section {
    padding: 50px 0;
  }

  #meu-plans {
    font-size: 2rem;
  }

  .plan-card {
    min-height: auto;
    padding: 28px 22px;
    text-align: center;
  }

  .plan-price {
    font-size: 2.5rem;
  }

  .plan-subtitle {
    font-size: 0.9rem;
  }

  .contato-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners {
    padding: 50px 0;
  }

  .partners h2 {
    font-size: 1.55rem;
    margin-bottom: 22px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .partner-item {
    height: 82px;
    padding: 10px;
  }

  .partner-item img {
    max-width: 112px;
    height: 34px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .app-badge {
    max-width: 220px;
  }

  .footer-copy {
    font-size: 0.9rem;
  }
}

/* ==========================================
   LOJA MARTEL TELECOM
   ========================================== */

/* --- Section Loja (home e página) --- */
.section-loja {
  background: var(--gray);
  padding: 72px 0 80px;
}

.section-loja-page {
  padding-top: 48px;
  padding-bottom: 88px;
}

.loja-titulo {
  text-align: center;
  font-size: clamp(1.8rem, 2.9vw, 2.4rem);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.loja-subtitulo {
  text-align: center;
  font-size: 1.05rem;
  color: #4a4a4a;
  margin-bottom: 44px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* --- Hero da Loja --- */
.loja-hero {
  padding-top: 74px;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.loja-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #E30613 0%, rgba(227, 6, 19, 0.4) 50%, transparent 100%);
  pointer-events: none;
}

.loja-hero-content {
  padding: 56px 0 60px;
  text-align: center;
}

.loja-hero-content .section-eyebrow {
  color: var(--red);
  margin-bottom: 12px;
}

.loja-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.loja-hero-content h1 span {
  color: var(--red);
}

.loja-hero-content p {
  font-size: clamp(0.98rem, 1.7vw, 1.12rem);
  opacity: 0.78;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Nav active state --- */
.nav .nav-active {
  color: var(--white) !important;
}

.nav .nav-active::after {
  width: 100% !important;
}

/* --- Grid de Produtos --- */
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}

/* --- Card de Produto --- */
.produto-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-top: 3px solid var(--red);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.produto-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.13);
}

.produto-card-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray);
  position: relative;
}

.produto-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.38s ease;
}

.produto-card:hover .produto-card-img-wrap img {
  transform: scale(1.04);
}

.produto-card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.produto-card-nome {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.produto-card-preco {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.produto-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.badge-desconto {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #8a0000;
  background: #fde8e8;
  border: 1px solid rgba(227, 6, 19, 0.2);
  border-radius: 999px;
  padding: 4px 10px;
}

.badge-recomendado {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #fff;
  background: var(--black);
  border-radius: 999px;
  padding: 4px 10px;
}

.badge-loja {
  display: inline-flex;
  align-items: center;
  font-size: 0.69rem;
  font-weight: 600;
  color: #4a4a4a;
  background: var(--gray);
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.produto-card-btn {
  margin-top: auto;
  padding-top: 12px;
}

.btn-oferta {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(135deg, #D60000 0%, #FF2A2A 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  padding: 11px 16px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(214, 0, 0, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  border: none;
  cursor: pointer;
}

.btn-oferta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(214, 0, 0, 0.42);
  filter: brightness(1.06);
}

/* --- Filtros da Loja --- */
.loja-filtros {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.loja-filtro-btn {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(0, 0, 0, 0.14);
  background: var(--white);
  color: #4a4a4a;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease,
    transform 0.22s ease, box-shadow 0.22s ease;
}

.loja-filtro-btn:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(214, 0, 0, 0.14);
}

.loja-filtro-btn.ativo {
  background: linear-gradient(135deg, #D60000 0%, #FF2A2A 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(214, 0, 0, 0.3);
}

.loja-filtro-btn.ativo:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(214, 0, 0, 0.42);
  color: var(--white);
}

/* --- Badges de origem --- */
.badge-origem {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-radius: 999px;
  padding: 4px 10px;
}

.badge-origem-martel {
  color: #094a1f;
  background: #d9f5e5;
  border: 1px solid rgba(9, 74, 31, 0.18);
}

.badge-origem-parceiro {
  color: #1a3a6e;
  background: #ddeeff;
  border: 1px solid rgba(26, 58, 110, 0.18);
}

/* --- Botão WhatsApp (Comprar com a Martel) --- */
.btn-oferta-martel {
  background: linear-gradient(135deg, #D60000 0%, #FF2A2A 100%);
  box-shadow: 0 6px 18px rgba(214, 0, 0, 0.28);
}

.btn-oferta-martel:hover {
  box-shadow: 0 12px 28px rgba(214, 0, 0, 0.42) !important;
}

/* --- Botão Ver Mais --- */
.loja-ver-mais {
  text-align: center;
  margin-top: 44px;
}

.btn-ver-mais {
  display: inline-block;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(135deg, #D60000 0%, #FF2A2A 100%);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.3px;
  padding: 16px 44px;
  border-radius: 40px;
  box-shadow: 0 8px 26px rgba(214, 0, 0, 0.36);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-ver-mais:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(214, 0, 0, 0.52);
  filter: none;
}

/* --- Responsividade da loja --- */
@media (max-width: 1024px) {
  .produtos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (max-width: 700px) {
  .produtos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .loja-hero-content {
    padding: 44px 0 48px;
  }

  .section-loja {
    padding: 52px 0 60px;
  }

  .produto-card-body {
    padding: 14px 14px 16px;
  }

  .produto-card-preco {
    font-size: 1.15rem;
  }

  .loja-titulo {
    font-size: 1.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}