/* ===================================================
   Giovanni Canuto — Design System (Links)
   Dark mode only | Mobile-first | Glassmorphism premium
   =================================================== */

:root {
  --bg-navy: #060A1A;
  --gold: #C8A24E;
  --gold-soft: #D9B56A;
  --gold-glow: rgba(200, 162, 78, 0.28);
  --gold-glow-strong: rgba(200, 162, 78, 0.45);
  --teal: #00B4D8;

  --glass-base: rgba(255, 255, 255, 0.065);
  --glass-hover: rgba(255, 255, 255, 0.13);
  --glass-active: rgba(255, 255, 255, 0.09);

  --border-base: rgba(255, 255, 255, 0.10);
  --border-hover: rgba(200, 162, 78, 0.38);
  --border-gold-soft: rgba(200, 162, 78, 0.22);

  --shadow-btn-rest:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 8px 20px rgba(0, 0, 0, 0.28),
    0 2px 4px rgba(0, 0, 0, 0.35);

  --shadow-btn-hover:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 14px 32px rgba(0, 0, 0, 0.4),
    0 6px 12px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(200, 162, 78, 0.18),
    0 0 24px rgba(200, 162, 78, 0.12);

  --shadow-btn-active:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 4px 10px rgba(0, 0, 0, 0.35),
    0 1px 2px rgba(0, 0, 0, 0.4);

  --shadow-featured-large-rest:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 10px 30px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(200, 162, 78, 0.12),
    0 0 40px rgba(200, 162, 78, 0.08);

  --shadow-featured-large-hover:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(200, 162, 78, 0.45),
    0 0 60px rgba(200, 162, 78, 0.22);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #FFFFFF;
  background: var(--bg-navy);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* --- Orbs (Background) --- */
.orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  will-change: transform;
}

.orb--gold {
  width: 280px;
  height: 280px;
  background: var(--gold);
  top: -60px;
  left: -80px;
  opacity: 0.42;
  animation: orbFloat1 22s ease-in-out infinite;
}

.orb--teal {
  width: 320px;
  height: 320px;
  background: var(--teal);
  bottom: 10%;
  right: -100px;
  opacity: 0.22;
  animation: orbFloat2 26s ease-in-out infinite;
}

.orb--purple {
  width: 220px;
  height: 220px;
  background: #7B5EA7;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(60px, 40px); }
  50% { transform: translate(20px, 80px); }
  75% { transform: translate(-30px, 30px); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-50px, -30px); }
  50% { transform: translate(-20px, -70px); }
  75% { transform: translate(40px, -20px); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translateX(-50%) translate(0, 0); }
  33% { transform: translateX(-50%) translate(40px, -50px); }
  66% { transform: translateX(-50%) translate(-40px, 30px); }
}

/* --- Container --- */
.container {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
  padding: 44px 16px 72px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 481px) {
  .container {
    padding: 56px 20px 88px;
  }
}

/* --- Fade Up Animation (Scroll Reveal) --- */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: calc(var(--i, 0) * 0.04s);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Section Title --- */
.section-title {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 16px;
}

/* --- Hero --- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  margin-bottom: 12px;
  background: #0a0a0a;
  flex-shrink: 0;
}

@media (min-width: 481px) {
  .avatar {
    width: 130px;
    height: 130px;
  }
}

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

.avatar__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(200, 162, 78, 0.3), rgba(0, 180, 216, 0.3));
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.hero__name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 6px;
}

.hero__tagline {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 6px;
}

.hero__bio {
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.55;
  max-width: 380px;
}

.hero__tags {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.32);
  margin-top: 0;
}

/* --- Social Icons Row --- */
.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 4px;
  margin-bottom: 20px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-base);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid var(--border-base);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-btn-rest);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.52);
  transition: fill 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.05);
  background: var(--glass-hover);
  border-color: var(--border-gold-soft);
  box-shadow: var(--shadow-btn-hover);
}

.social-icon:hover svg {
  fill: rgba(255, 255, 255, 0.9);
}

.social-icon:active {
  transform: translateY(-1px) scale(1.0);
  box-shadow: var(--shadow-btn-active);
}

/* --- Glass Card Base --- */
.glass-card {
  background: var(--glass-base);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid var(--border-base);
  border-radius: 20px;
  box-shadow: var(--shadow-btn-rest);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.35s ease;
  cursor: pointer;
  display: block;
}

/* --- Bento Grid (Channels) --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.bento-item {
  position: relative;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  min-height: 88px;
  overflow: hidden;
}

.bento-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    120% 80% at 50% 0%,
    var(--gold-glow) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.bento-item:hover {
  transform: translateY(-3px) scale(1.008);
  background: var(--glass-hover);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-btn-hover);
}

.bento-item:hover::before {
  opacity: 1;
}

.bento-item:active {
  transform: translateY(-1px) scale(0.997);
  background: var(--glass-active);
  box-shadow: var(--shadow-btn-active);
  transition-duration: 0.12s;
}

.bento-item--wide {
  grid-column: span 2;
  flex-direction: row;
  justify-content: flex-start;
  gap: 14px;
  text-align: left;
  padding: 16px 20px;
}

.bento-item--full-width {
  grid-column: span 3;
  flex-direction: row;
  justify-content: flex-start;
  gap: 14px;
  text-align: left;
  padding: 16px 20px;
}

.bento-item--wide .bento-item__text,
.bento-item--full-width .bento-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bento-item__icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.bento-item__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.bento-item__name {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.bento-item__followers {
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.bento-item__label {
  font-size: 0.625rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.bento-item--personal .bento-item__icon {
  width: 32px;
  height: 32px;
}

.bento-item--business {
  opacity: 0.75;
}

.bento-item--business:hover {
  opacity: 1;
}

/* --- Product Cards Groups --- */
.products-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.products-group__title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
  line-height: 1.4;
}

.products-group__name {
  font-weight: 700;
  color: #FFFFFF;
}

.products-group__sep {
  color: rgba(255, 255, 255, 0.25);
  margin: 0 2px;
}

.products-group__subtitle {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.42);
}

.products-group + .products-group {
  margin-top: 28px;
}

/* --- Audience-segmented Groups --- */
.audience-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.audience-group + .audience-group {
  margin-top: 36px;
}

.audience-group__title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2px;
}

.audience-group__subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 10px;
  line-height: 1.4;
}

/* ===================================================
   Product Card — Premium Button
   =================================================== */

.product-card {
  position: relative;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  isolation: isolate;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    120% 80% at 50% 0%,
    var(--gold-glow) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.product-card > * {
  position: relative;
  z-index: 1;
}

/* Gradient border dourado SUTIL em TODOS os cards regulares */
.product-card:not(.product-card--featured-large)::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(200, 162, 78, 0.5) 0%,
    rgba(200, 162, 78, 0.12) 50%,
    rgba(200, 162, 78, 0.5) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.product-card:not(.product-card--featured-large):hover::after {
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    rgba(200, 162, 78, 0.35) 50%,
    var(--gold) 100%
  );
}

.product-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.product-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.product-card__target {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 4px;
  line-height: 1.3;
}

.product-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}

.product-card[data-product="canuto-os"] .product-card__name {
  font-size: 0.9375rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.015em;
}

/* Linha de features (ex.: "Atendimento • CRM • ...") — cabe em 1 linha em telas ~414px+ */
.product-card__features {
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-top: 5px;
}

.product-card__desc {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.55;
  margin-top: 2px;
  white-space: pre-line; /* respeita \n no config.js (bullets, paragrafos) */
}

/* Arrow circle (top-right) */
.product-card__arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-gold-soft);
  background: rgba(200, 162, 78, 0.08);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    color 0.3s ease;
}

.product-card__arrow svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
}

.product-card:hover .product-card__arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: #060A1A;
  transform: translate(2px, -2px) scale(1.05);
}

/* CTA textual (dourado, abaixo) */
.product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.product-card__cta svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.product-card:hover .product-card__cta {
  gap: 10px;
  color: var(--gold-soft);
  border-top-color: rgba(200, 162, 78, 0.18);
}

/* Hover state: premium button */
.product-card:hover {
  transform: translateY(-3px);
  background: var(--glass-hover);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-btn-hover);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:active {
  transform: translateY(-1px) scale(0.997);
  background: var(--glass-active);
  box-shadow: var(--shadow-btn-active);
  transition-duration: 0.12s;
}

/* ===================================================
   Featured — Dourado puro (remove teal gradient)
   =================================================== */
.product-card--featured {
  background: transparent;
  border: none;
  box-shadow: var(--shadow-btn-rest);
}

.product-card--featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    rgba(200, 162, 78, 0.55) 50%,
    var(--gold) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

.product-card--featured {
  background: var(--glass-base);
}

.product-card--featured:hover {
  background: var(--glass-hover);
  box-shadow: var(--shadow-btn-hover);
}

.product-card--featured .product-card__name {
  color: #FFFFFF;
  -webkit-text-fill-color: #FFFFFF;
  background: none;
}

/* ===================================================
   Featured-LARGE (Desafio) — dourado + champagne
   =================================================== */
.product-card--featured-large {
  position: relative;
  background: var(--glass-base);
  border: none;
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-featured-large-rest);
}

.product-card--featured-large::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.75px;
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    #EACB87 40%,
    var(--gold) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  opacity: 1;
}

.product-card--featured-large::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(
    140% 100% at 50% 0%,
    var(--gold-glow) 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.product-card--featured-large > * {
  position: relative;
  z-index: 1;
}

.product-card--featured-large:hover {
  transform: translateY(-4px);
  background: var(--glass-hover);
  box-shadow: var(--shadow-featured-large-hover);
}

.product-card--featured-large:hover::after {
  opacity: 1;
}

.product-card--featured-large:active {
  transform: translateY(-1px) scale(0.998);
  transition-duration: 0.12s;
}

.product-card--featured-large .product-card__info {
  gap: 8px;
}

.product-card--featured-large .product-card__target {
  color: var(--gold);
}

.product-card--featured-large .product-card__name {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  -webkit-text-fill-color: #FFFFFF;
  background: none;
}

.product-card--featured-large .product-card__desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}

.product-card--featured-large .product-card__cta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(200, 162, 78, 0.18);
  width: 100%;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
  transition: gap 0.3s ease, color 0.3s ease;
}

/* Arrow circle no canto superior direito do featured-large */
.product-card--featured-large .product-card__arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border-gold-soft);
  background: rgba(200, 162, 78, 0.08);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    color 0.3s ease;
}

.product-card--featured-large .product-card__arrow svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
}

.product-card--featured-large:hover .product-card__arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: #060A1A;
  transform: translate(2px, -2px) scale(1.05);
}

.product-card--featured-large .product-card__info {
  padding-right: 42px;
}

.product-card--featured-large:hover .product-card__cta {
  gap: 10px;
  color: var(--gold-soft);
}

.product-card--featured-large .product-card__cta svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ===================================================
   BizView360 — MANTÉM teal (única exceção)
   =================================================== */
.product-card--featured-large[data-product="bizview360"]::before {
  background: linear-gradient(
    135deg,
    var(--teal) 0%,
    #4ECDE8 50%,
    var(--teal) 100%
  );
}

.product-card--featured-large[data-product="bizview360"]::after {
  background: radial-gradient(
    140% 100% at 50% 0%,
    rgba(0, 180, 216, 0.22) 0%,
    transparent 65%
  );
}

.product-card--featured-large[data-product="bizview360"] {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 10px 30px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(0, 180, 216, 0.12),
    0 0 40px rgba(0, 180, 216, 0.08);
}

.product-card--featured-large[data-product="bizview360"]:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(0, 180, 216, 0.45),
    0 0 60px rgba(0, 180, 216, 0.22);
}

.product-card--featured-large[data-product="bizview360"] .product-card__target {
  color: var(--teal);
}

.product-card--featured-large[data-product="bizview360"] .product-card__cta {
  color: var(--teal);
  border-top-color: rgba(0, 180, 216, 0.2);
}

.product-card--featured-large[data-product="bizview360"] .product-card__arrow {
  border-color: rgba(0, 180, 216, 0.25);
  background: rgba(0, 180, 216, 0.08);
  color: var(--teal);
}

.product-card--featured-large[data-product="bizview360"]:hover .product-card__arrow {
  background: var(--teal);
  border-color: var(--teal);
  color: #060A1A;
}

.product-card--featured-large[data-product="desafio-7-dias"] .product-card__name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.02em;
  font-size: 0.9375rem;
}

/* BizView tem titulo longo — 0.8rem cabe em 1 linha em telas ~414px+; abaixo disso quebra em 2 (sem truncar) */
.product-card--featured-large[data-product="bizview360"] .product-card__name {
  font-size: 0.8rem;
  letter-spacing: -0.02em;
  white-space: normal;
}

.product-card--featured-large[data-product="bizview360"]:hover .product-card__cta {
  color: #4ECDE8;
}

/* ===================================================
   Focus Visible
   =================================================== */
.product-card:focus-visible,
.bento-item:focus-visible,
.social-icon:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  box-shadow:
    var(--shadow-btn-hover),
    0 0 0 4px rgba(200, 162, 78, 0.18);
}

.product-card--featured-large[data-product="bizview360"]:focus-visible {
  outline-color: var(--teal);
  box-shadow:
    var(--shadow-featured-large-hover),
    0 0 0 4px rgba(0, 180, 216, 0.18);
}

/* ===================================================
   Mobile tap feedback
   =================================================== */
@media (hover: none) {
  .product-card:active,
  .bento-item:active,
  .social-icon:active {
    transform: scale(0.985);
    transition-duration: 0.12s;
  }
}

/* --- SaaS Card (legado, mantido caso seja reutilizado) --- */
.saas-card {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.saas-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.saas-card__logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), #0096B7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.saas-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.saas-card__subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.3;
}

.saas-card__desc {
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.6;
}

.saas-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--teal);
  margin-top: 4px;
  transition: gap 0.3s ease;
}

.saas-card:hover .saas-card__cta {
  gap: 10px;
}

.saas-card__cta svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* --- Footer Spacer --- */
.section:last-child {
  padding-bottom: 0;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

/* --- Selection --- */
::selection {
  background: rgba(200, 162, 78, 0.3);
  color: #FFFFFF;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .orb {
    animation: none !important;
  }

  .glass-card,
  .social-icon,
  .product-card,
  .product-card__arrow,
  .product-card__cta,
  .bento-item {
    transition: none;
  }

  .product-card:hover,
  .product-card--featured-large:hover,
  .bento-item:hover,
  .social-icon:hover {
    transform: none;
  }

  .product-card__banner img {
    transition: none;
  }

  .trusted-by__logos {
    scroll-behavior: auto;
  }
}

/* ===================================================
   Banner do card (full-bleed no topo do featured-large)
   =================================================== */
.product-card__banner {
  display: block;
  margin: -22px -22px 2px;
  width: calc(100% + 44px);
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: rgba(255, 255, 255, 0.03);
  position: relative;
}

.product-card__banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 55%,
    rgba(6, 10, 26, 0.55) 85%,
    rgba(6, 10, 26, 0.9) 100%
  );
  pointer-events: none;
}

.product-card__banner img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card--featured-large:hover .product-card__banner img {
  transform: scale(1.035);
}

/* Seta sobre o banner precisa de fundo sólido pra não sumir na imagem */
.product-card--featured-large:has(.product-card__banner) .product-card__arrow {
  background: rgba(6, 10, 26, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(255, 255, 255, 0.22);
  z-index: 3;
}

/* Banner em card STANDARD (padding 16px 18px) — versao mais leve, sem borda dourada */
.product-card--has-banner .product-card__banner {
  margin: -16px -18px 12px;
  width: calc(100% + 36px);
}

.product-card--has-banner .product-card__badges {
  margin-top: 12px;
}

.product-card--has-banner:hover .product-card__banner img {
  transform: scale(1.03);
}

/* ===================================================
   Badges de prova social
   =================================================== */
.product-card__badges {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
  margin-top: 2px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
}

.badge__check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  color: var(--gold);
}

.badge__check svg {
  width: 100%;
  height: 100%;
}

.product-card--featured-large[data-product="bizview360"] .badge {
  background: rgba(0, 180, 216, 0.07);
  border-color: rgba(0, 180, 216, 0.2);
}

.product-card--featured-large[data-product="bizview360"] .badge__check {
  color: var(--teal);
}

/* ===================================================
   Quem confia — logos das agências parceiras
   =================================================== */
.trusted-by {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.trusted-by__title {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
  margin-bottom: 12px;
}

.trusted-by__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}

.trusted-logo {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

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

.trusted-logo--contain {
  background: #FFFFFF;
}

.trusted-logo--contain img {
  object-fit: contain;
  padding: 4px;
}

.product-card--featured-large:hover .trusted-logo {
  border-color: rgba(0, 180, 216, 0.35);
}

