@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap");

/* ══════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════ */

.pageWrapper {
  min-height: 100vh;
  background: var(--bg-primary);
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 768px) {
  .container { padding-left: 16px; padding-right: 16px; }
}

/* ══════════════════════════════════════════
   HERO CINEMATOGRÁFICO
══════════════════════════════════════════ */

.heroWrapper {
  position: relative;
  width: 100%;
  padding-top: 16px;
}

.heroOverlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, var(--bg-primary) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* classes mantidas para compatibilidade */
.heroCinematic { display: none; }
.heroBannerBg { display: none; }
.heroBannerOverlay { display: none; }
.heroBgGradient { display: none; }
.heroBgNoise { display: none; }

.heroContent {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 24px;
}

.heroEyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
  border: 1px solid var(--border-color);
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(255,255,255,0.03);
}

.heroEyebrowDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.heroHeadline {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 24px;
  animation: heroFadeUp 0.7s ease forwards;
}

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

.heroHeadlineTop {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.heroHeadlineBottom {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--accent-cyan);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.heroSub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.heroActions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.heroCta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--accent-cyan);
  color: #06091a;
  border-radius: 6px;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.heroCta:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 200, 232, 0.2);
}

.heroCtaSecondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  border-radius: 6px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s ease;
  background: rgba(255,255,255,0.03);
}

.heroCtaSecondary:hover {
  border-color: rgba(255,255,255,0.2);
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.heroTrustRow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.heroTrustItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.heroTrustItem span {
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}

.heroTrustItem p {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.heroTrustDivider {
  width: 1px;
  height: 32px;
  background: var(--border-color);
}

.heroScrollIndicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.heroScrollLine {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2));
  animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.heroScrollIndicator span {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .heroCinematic { min-height: 85vh; }
  .heroTrustRow { gap: 16px; }
  .heroTrustDivider { display: none; }
  .heroScrollIndicator { display: none; }
}

@media (max-width: 480px) {
  .heroTrustRow { gap: 20px; flex-wrap: wrap; }
}

/* ══════════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════════ */

.trustStrip {
  background: rgba(10, 16, 40, 0.6);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px 0;
}

.trustItems {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.trustItem {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 32px;
}

.trustIcon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.trustItem > div strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.trustItem > div span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.trustDivider {
  width: 1px;
  height: 36px;
  background: var(--border-color);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .trustItems { gap: 0; }
  .trustItem { padding: 10px 16px; }
  .trustDivider { display: none; }
}

@media (max-width: 480px) {
  .trustItem { width: 50%; justify-content: flex-start; padding: 10px 12px; }
}

/* ══════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════ */

.section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section { padding: 48px 0; }
}

.sectionHeader {
  margin-bottom: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.sectionHeader h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 4px;
  line-height: 1.1;
}

.sectionHeader h2 span {
  color: var(--accent-cyan);
}

.sectionSub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.sectionLink {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s;
  text-transform: uppercase;
  font-weight: 600;
  flex-shrink: 0;
}

.sectionLink:hover {
  color: var(--text-primary);
}

/* ══════════════════════════════════════════
   PRODUCT GRID
══════════════════════════════════════════ */

.productsGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

@media (min-width: 900px) {
  .productsGrid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

@media (min-width: 1200px) {
  .productsGrid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

/* ══════════════════════════════════════════
   PRODUCT CARD
══════════════════════════════════════════ */

.product {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  height: 100%;
}

.product:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 200, 232, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.imageWrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #080e24;
  flex-shrink: 0;
}

.imageWrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.imageOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 9, 26, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.product:hover .imageWrapper img {
  transform: scale(1.07);
}

.badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 5;
}

.badge {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  background: var(--accent-cyan);
  color: #06091a;
}

.badgeHot {
  background: #ef4444;
  color: #fff;
}

.badgeDiscount {
  background: var(--accent-gold);
  color: #06091a;
}

.productInfo {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.TeamName {
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 768px) {
  .TeamName { font-size: 0.98rem; }
}

.wrapperPrice {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: auto;
}

.discountPrice {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.rightPrice {
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  font-family: "Outfit", sans-serif;
  line-height: 1;
}

@media (max-width: 400px) {
  .rightPrice { font-size: 1.1rem; }
}

.installments {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.installments span {
  color: var(--text-secondary);
  font-weight: 600;
}

.geoInfoWrapper {
  display: flex;
  align-items: center;
  gap: 6px;
}

.geoText {
  color: var(--text-muted);
  font-size: 0.68rem;
  line-height: 1.2;
}

.ctaButton {
  width: 100%;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  transition: all 0.2s ease;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Outfit", sans-serif;
}

.product:hover .ctaButton {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: #06091a;
}

/* ══════════════════════════════════════════
   SKELETON
══════════════════════════════════════════ */

.skeleton {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 3 / 4;
  background: linear-gradient(90deg, #0b1426 25%, #101d38 50%, #0b1426 75%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ══════════════════════════════════════════
   PROMO BANNER
══════════════════════════════════════════ */

.promoBanner {
  background: linear-gradient(135deg, rgba(0, 60, 180, 0.08) 0%, rgba(0, 200, 232, 0.05) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 56px 0;
}

.promoContent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.promoEyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}

.promoText h3 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.15;
}

.promoText h3 span {
  color: var(--accent-cyan);
}

.promoText p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.promoTable {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.promoItem,
.promoItemHighlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  min-width: 100px;
  gap: 4px;
}

.promoItemHighlight {
  background: rgba(0, 200, 232, 0.07);
  border-color: rgba(0, 200, 232, 0.2);
}

.promoQty {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.promoPrice {
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.promoItemHighlight .promoPrice {
  color: var(--accent-cyan);
}

.promoPrice small {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
}

.promoBest {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .promoContent { justify-content: center; text-align: center; }
  .promoTable { justify-content: center; }
}

/* ══════════════════════════════════════════
   SOCIAL PROOF
══════════════════════════════════════════ */

.socialSection {
  padding: 80px 0;
  background: linear-gradient(to bottom, transparent, rgba(10, 16, 40, 0.3), transparent);
}

.socialHeader {
  text-align: center;
  margin-bottom: 48px;
}

.socialEyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.socialTitle {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.1;
}

.socialTitle span {
  color: var(--accent-cyan);
}

.socialSub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.depoGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .depoGrid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .depoGrid { grid-template-columns: 1fr; }
}

.depoCard {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s, transform 0.25s;
}

.depoCard:hover {
  border-color: rgba(0, 200, 232, 0.15);
  transform: translateY(-3px);
}

.depoStars {
  color: var(--accent-gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.depoText {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.depoAuthor {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.depoAvatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 200, 232, 0.2), rgba(26, 92, 255, 0.2));
  border: 1px solid rgba(0, 200, 232, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-cyan);
  flex-shrink: 0;
  font-family: "Outfit", sans-serif;
}

.depoAuthor strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 700;
}

.depoAuthor span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════
   ABOUT / MANIFESTO
══════════════════════════════════════════ */

.aboutSection {
  padding: 96px 0;
  border-top: 1px solid var(--border-subtle);
}

.aboutContent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 768px) {
  .aboutContent { grid-template-columns: 1fr; gap: 48px; }
}

.aboutEyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.aboutText h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 24px;
  line-height: 1.15;
}

.aboutText h2 span {
  color: var(--accent-cyan);
}

.aboutText p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.aboutCta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 28px;
  border: 1px solid rgba(0, 200, 232, 0.3);
  color: var(--accent-cyan);
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Outfit", sans-serif;
}

.aboutCta:hover {
  background: rgba(0, 200, 232, 0.08);
  border-color: rgba(0, 200, 232, 0.5);
}

.aboutStats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.stat:hover {
  border-color: rgba(0, 200, 232, 0.15);
  transform: translateY(-2px);
}

.stat h3 {
  font-family: "Outfit", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1;
}

.stat p {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Legacy */
.containerHome { min-height: 100vh; }
.containerSlider { position: relative; }
.title { display: none; }
.heroWrapper { display: none; }
.heroOverlay { display: none; }
