/* ============================================
   HOMEPAGE MODERN - MaquinasPS
   Design inspirado no estilo MercadoPago
   ============================================ */

/* ---------- RESET & BASE ---------- */
.homepage-modern * {
  box-sizing: border-box;
}
.homepage-modern {
  font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ---------- ANIMATIONS ---------- */
@keyframes hmFadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hmFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes hmPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes hmShine {
  0% { left: -100%; }
  100% { left: 100%; }
}
@keyframes hmSlideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .homepage-modern * {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- HERO SECTION ---------- */
.hm-hero {
  background: linear-gradient(180deg, #FFE600 0%, #FFD400 100%);
  padding: 48px 16px 80px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.04);
}
.hm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.15) 1px, transparent 1px),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.hm-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.hm-hero__text {
  flex: 1;
  max-width: 560px;
  animation: hmFadeInUp 0.6s ease both;
}
.hm-hero__badge {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(0,0,0,0.8);
  margin-bottom: 16px;
}
.hm-hero__title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  color: rgba(0,0,0,0.9);
  margin: 0 0 16px;
  font-feature-settings: 'ss04';
}
.hm-hero__subtitle {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(0,0,0,0.65);
  margin: 0 0 28px;
}
.hm-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #009EE3 0%, #00b4f7 100%);
  color: #fff !important;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,158,227,0.3);
}
.hm-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,158,227,0.4);
  color: #fff !important;
}
.hm-hero__cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: hmShine 3s ease infinite;
}
.hm-hero__cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.hm-hero__cta:hover svg {
  transform: translateX(4px);
}
.hm-hero__image {
  flex: 1;
  max-width: 480px;
  text-align: center;
  animation: hmFadeInUp 0.6s ease 0.3s both;
}
.hm-hero__image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2)) drop-shadow(0 4px 8px rgba(0,0,0,0.1));
  animation: hmFloat 4s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.hm-hero__image img:hover {
  transform: scale(1.03);
}

/* ---------- TRUST BAR ---------- */
.hm-trust {
  padding: 32px 16px;
  background: #fff;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}
.hm-trust__inner {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 28px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hm-trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
  animation: hmFadeInUp 0.5s ease both;
}
.hm-trust__item:nth-child(1) { animation-delay: 0.1s; }
.hm-trust__item:nth-child(2) { animation-delay: 0.2s; }
.hm-trust__item:nth-child(3) { animation-delay: 0.3s; }
.hm-trust__item:nth-child(4) { animation-delay: 0.4s; }
.hm-trust__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}
.hm-trust__icon--blue { background: rgba(0,158,227,0.1); color: #009EE3; }
.hm-trust__icon--green { background: rgba(0,166,80,0.1); color: #00a650; }
.hm-trust__icon--orange { background: rgba(255,107,53,0.1); color: #FF6B35; }
.hm-trust__icon--purple { background: rgba(112,45,250,0.1); color: #702dfa; }
.hm-trust__text h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: rgba(0,0,0,0.85);
  line-height: 1.3;
}
.hm-trust__text p {
  margin: 2px 0 0;
  font-size: 12px;
  color: rgba(0,0,0,0.5);
  line-height: 1.4;
}

/* ---------- SECTION TITLES ---------- */
.hm-section {
  padding: 64px 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.hm-section__header {
  text-align: center;
  margin-bottom: 40px;
  animation: hmFadeInUp 0.5s ease both;
}
.hm-section__tag {
  display: inline-block;
  background: rgba(0,158,227,0.08);
  color: #009EE3;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.hm-section__title {
  font-size: 36px;
  font-weight: 700;
  color: rgba(0,0,0,0.9);
  margin: 0 0 12px;
  line-height: 1.2;
}
.hm-section__desc {
  font-size: 16px;
  color: rgba(0,0,0,0.55);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ---------- PRODUCTS GRID ---------- */
.hm-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.hm-product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  animation: hmFadeInUp 0.5s ease both;
  border: 1px solid rgba(0,0,0,0.04);
}
.hm-product-card:nth-child(1) { animation-delay: 0.05s; }
.hm-product-card:nth-child(2) { animation-delay: 0.1s; }
.hm-product-card:nth-child(3) { animation-delay: 0.15s; }
.hm-product-card:nth-child(4) { animation-delay: 0.2s; }
.hm-product-card:nth-child(5) { animation-delay: 0.25s; }
.hm-product-card:nth-child(6) { animation-delay: 0.3s; }
.hm-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.hm-product-card__image {
  position: relative;
  padding: 20px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  overflow: hidden;
}
.hm-product-card__image img {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.hm-product-card:hover .hm-product-card__image img {
  transform: scale(1.08);
}
.hm-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #FF6B35;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 1;
}
.hm-product-card__info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hm-product-card__title {
  font-size: 15px;
  font-weight: 600;
  color: rgba(0,0,0,0.85);
  margin: 0 0 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hm-product-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}
.hm-product-card__price-current {
  font-size: 22px;
  font-weight: 700;
  color: rgba(0,0,0,0.9);
}
.hm-product-card__price-old {
  font-size: 14px;
  color: rgba(0,0,0,0.4);
  text-decoration: line-through;
}
.hm-product-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #009EE3 0%, #00b4f7 100%);
  color: #fff !important;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.3s ease;
  margin-top: auto;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.hm-product-card__btn:hover {
  background: linear-gradient(135deg, #0086c3 0%, #009EE3 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,158,227,0.3);
  color: #fff !important;
}

/* ---------- BEST SELLERS / HIGHLIGHT SECTION ---------- */
.hm-highlight {
  background: linear-gradient(157deg, #000000, #1a1a2e);
  border-radius: 40px;
  padding: 64px 24px;
  margin: 0 16px 64px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}
.hm-highlight::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,158,227,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hm-highlight::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,230,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hm-highlight__header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.hm-highlight__tag {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.hm-highlight__title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2;
}
.hm-highlight__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}
.hm-highlight__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}
.hm-highlight-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}
.hm-highlight-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.hm-highlight-card__image {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.hm-highlight-card__image img {
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
}
.hm-highlight-card:hover .hm-highlight-card__image img {
  transform: scale(1.06);
}
.hm-highlight-card__title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.3;
}
.hm-highlight-card__price {
  font-size: 20px;
  font-weight: 700;
  color: #FFE600;
  margin: 0 0 4px;
}
.hm-highlight-card__old-price {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  margin: 0 0 12px;
}
.hm-highlight-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #00a650 0%, #00d166 100%);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.hm-highlight-card__cta:hover {
  background: linear-gradient(135deg, #008f44 0%, #00bf59 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,166,80,0.4);
  color: #fff !important;
}

/* ---------- BENEFITS SECTION ---------- */
.hm-benefits {
  background: #f8f9fa;
  padding: 64px 16px;
}
.hm-benefits__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.hm-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hm-benefit-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.04);
  animation: hmFadeInUp 0.5s ease both;
}
.hm-benefit-card:nth-child(1) { animation-delay: 0.1s; }
.hm-benefit-card:nth-child(2) { animation-delay: 0.2s; }
.hm-benefit-card:nth-child(3) { animation-delay: 0.3s; }
.hm-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.hm-benefit-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}
.hm-benefit-card__icon--gradient1 {
  background: linear-gradient(135deg, rgba(0,158,227,0.1) 0%, rgba(0,180,247,0.15) 100%);
  color: #009EE3;
}
.hm-benefit-card__icon--gradient2 {
  background: linear-gradient(135deg, rgba(0,166,80,0.1) 0%, rgba(0,209,102,0.15) 100%);
  color: #00a650;
}
.hm-benefit-card__icon--gradient3 {
  background: linear-gradient(135deg, rgba(255,230,0,0.15) 0%, rgba(255,212,0,0.2) 100%);
  color: #c9a800;
}
.hm-benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: rgba(0,0,0,0.85);
  margin: 0 0 8px;
}
.hm-benefit-card p {
  font-size: 14px;
  color: rgba(0,0,0,0.5);
  line-height: 1.6;
  margin: 0;
}

/* ---------- CTA BANNER ---------- */
.hm-cta-banner {
  background: linear-gradient(135deg, #009EE3 0%, #00b4f7 50%, #009EE3 100%);
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 64px;
  position: relative;
  overflow: hidden;
}
.hm-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hm-cta-banner__content {
  position: relative;
  z-index: 1;
}
.hm-cta-banner h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}
.hm-cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
}
.hm-cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #009EE3 !important;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.hm-cta-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  color: #009EE3 !important;
}

/* ---------- VIEW ALL LINK ---------- */
.hm-view-all {
  text-align: center;
  margin-top: 32px;
}
.hm-view-all a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #009EE3 !important;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.3s ease;
  padding: 10px 20px;
  border-radius: 8px;
  border: 2px solid #009EE3;
}
.hm-view-all a:hover {
  background: #009EE3;
  color: #fff !important;
  transform: translateY(-1px);
}
.hm-view-all a svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.hm-view-all a:hover svg {
  transform: translateX(4px);
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 1024px) {
  .hm-hero__title { font-size: 36px; }
  .hm-hero__inner { gap: 24px; }
  .hm-hero__image { max-width: 380px; }
  .hm-trust__inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hm-benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .hm-section__title, .hm-highlight__title { font-size: 30px; }
}

/* Mobile */
@media (max-width: 749px) {
  .hm-hero {
    padding: 32px 16px 64px;
    border-radius: 0 0 28px 28px;
  }
  .hm-hero__inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .hm-hero__text { max-width: 100%; }
  .hm-hero__title { font-size: 28px; }
  .hm-hero__subtitle { font-size: 15px; margin-bottom: 20px; }
  .hm-hero__image { max-width: 280px; order: -1; }
  .hm-hero__image img { animation: hmFloat 5s ease-in-out infinite; }

  .hm-trust__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px 16px;
  }
  .hm-trust__icon { width: 40px; height: 40px; font-size: 18px; border-radius: 10px; }
  .hm-trust__text h4 { font-size: 12px; }
  .hm-trust__text p { font-size: 11px; }

  .hm-section { padding: 40px 16px; }
  .hm-section__title { font-size: 24px; }
  .hm-section__desc { font-size: 14px; }

  .hm-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .hm-product-card__image { min-height: 160px; padding: 12px; }
  .hm-product-card__image img { max-height: 130px; }
  .hm-product-card__info { padding: 12px; }
  .hm-product-card__title { font-size: 13px; }
  .hm-product-card__price-current { font-size: 18px; }
  .hm-product-card__btn { padding: 10px 14px; font-size: 12px; }

  .hm-highlight {
    border-radius: 24px;
    padding: 40px 16px;
    margin: 0 12px 40px;
  }
  .hm-highlight__title { font-size: 24px; }
  .hm-highlight__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .hm-highlight-card { padding: 16px 12px; }
  .hm-highlight-card__image { height: 120px; }
  .hm-highlight-card__image img { max-height: 100px; }
  .hm-highlight-card__title { font-size: 12px; }
  .hm-highlight-card__price { font-size: 17px; }

  .hm-benefits { padding: 40px 16px; }
  .hm-benefits__grid { grid-template-columns: 1fr; gap: 16px; }
  .hm-benefit-card { padding: 24px 20px; }

  .hm-cta-banner {
    border-radius: 20px;
    padding: 32px 20px;
    margin: 0 12px 40px;
  }
  .hm-cta-banner h2 { font-size: 24px; }
  .hm-cta-banner p { font-size: 14px; }
}

/* Small phones */
@media (max-width: 380px) {
  .hm-products {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hm-highlight__grid {
    grid-template-columns: 1fr;
  }
  .hm-trust__inner {
    grid-template-columns: 1fr;
  }
}

/* ---------- POINT PRO 3 SHOWCASE ---------- */
.hm-highlight__showcase {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hm-highlight__showcase-image {
  flex: 1;
  text-align: center;
}
.hm-highlight__showcase-image img {
  max-width: 380px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
  animation: hmFloat 4s ease-in-out infinite;
}
.hm-highlight__showcase-info {
  flex: 1;
}
.hm-highlight__showcase-info .hm-highlight__title {
  text-align: left;
  margin-bottom: 16px;
}
.hm-highlight__showcase-info .hm-highlight__desc {
  text-align: left;
  max-width: 100%;
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
}
.hm-highlight__showcase-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.hm-highlight__showcase-old {
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}
.hm-highlight__showcase-current {
  font-size: 32px;
  font-weight: 700;
  color: #FFE600;
}
.hm-highlight__showcase-off {
  background: #FF6B35;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}
.hm-highlight__showcase-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.hm-highlight__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
}
.hm-highlight__feature ion-icon {
  color: #FFE600;
  font-size: 18px;
}

@media (max-width: 749px) {
  .hm-highlight__showcase {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .hm-highlight__showcase-image img {
    max-width: 240px;
  }
  .hm-highlight__showcase-info .hm-highlight__title,
  .hm-highlight__showcase-info .hm-highlight__desc {
    text-align: center;
  }
  .hm-highlight__showcase-price {
    justify-content: center;
  }
  .hm-highlight__showcase-current {
    font-size: 26px;
  }
  .hm-highlight__showcase-features {
    gap: 8px;
  }
  .hm-highlight__feature {
    font-size: 12px;
  }
  .hm-highlight-card__cta {
    margin: 0 auto;
  }
}

/* ============================================
   MODERN PAGE STYLES - Institutional Pages
   ============================================ */
.modern-page {
  font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.modern-page__hero {
  background: linear-gradient(135deg, #009EE3 0%, #00b4f7 100%);
  padding: 48px 24px;
  text-align: center;
  border-radius: 0 0 32px 32px;
  margin-bottom: 40px;
}
.modern-page__hero h1 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}
.modern-page__hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}
.modern-page__content {
  max-width: 900px;
  margin: 0 auto 64px;
  padding: 0 24px;
}
.modern-page__content .rte {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(0,0,0,0.7);
}
.modern-page__content .rte h2,
.modern-page__content .rte h3 {
  color: rgba(0,0,0,0.85);
  margin-top: 32px;
  margin-bottom: 12px;
  font-weight: 700;
}
.modern-page__content .rte h2 {
  font-size: 24px;
}
.modern-page__content .rte h3 {
  font-size: 20px;
}
.modern-page__content .rte p {
  margin-bottom: 16px;
}
.modern-page__content .rte ul,
.modern-page__content .rte ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.modern-page__content .rte li {
  margin-bottom: 8px;
}
.modern-page__content .rte a {
  color: #009EE3;
  text-decoration: underline;
}
.modern-page__content .rte table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border-radius: 8px;
  overflow: hidden;
}
.modern-page__content .rte th,
.modern-page__content .rte td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
}
.modern-page__content .rte th {
  background: #f8f9fa;
  font-weight: 700;
  color: rgba(0,0,0,0.85);
}
.modern-page__content .rte img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 16px 0;
}
@media (max-width: 749px) {
  .modern-page__hero {
    padding: 32px 16px;
    border-radius: 0 0 24px 24px;
  }
  .modern-page__hero h1 {
    font-size: 26px;
  }
  .modern-page__content {
    padding: 0 16px;
  }
  .modern-page__content .rte {
    font-size: 15px;
  }
}

/* ============================================
   PRODUCT DESKTOP MODERN STYLES
   ============================================ */
.product-desktop-modern {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}
.product-desktop-modern__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(0,0,0,0.5);
  margin-bottom: 32px;
}
.product-desktop-modern__breadcrumb a {
  color: rgba(0,0,0,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.product-desktop-modern__breadcrumb a:hover {
  color: #009EE3;
}
.product-desktop-modern__breadcrumb span {
  color: rgba(0,0,0,0.8);
}
.product-desktop-modern__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}
.product-desktop-modern__gallery {
  position: sticky;
  top: 100px;
}
.product-desktop-modern__gallery-main {
  border-radius: 20px;
  overflow: hidden;
  background: #f8f9fa;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  margin-bottom: 12px;
}
.product-desktop-modern__gallery-main img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.product-desktop-modern__gallery-main:hover img {
  transform: scale(1.05);
}
.product-desktop-modern__gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}
.product-desktop-modern__gallery-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  background: #f8f9fa;
  padding: 4px;
  flex-shrink: 0;
}
.product-desktop-modern__gallery-thumb.active,
.product-desktop-modern__gallery-thumb:hover {
  border-color: #009EE3;
}
.product-desktop-modern__gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-desktop-modern__info {
  padding-top: 8px;
}
.product-desktop-modern__badge {
  display: inline-block;
  background: rgba(0,158,227,0.08);
  color: #009EE3;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.product-desktop-modern__title {
  font-size: 32px;
  font-weight: 700;
  color: rgba(0,0,0,0.9);
  line-height: 1.2;
  margin: 0 0 16px;
}
.product-desktop-modern__pricing {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.product-desktop-modern__price {
  font-size: 36px;
  font-weight: 700;
  color: rgba(0,0,0,0.9);
}
.product-desktop-modern__compare {
  font-size: 18px;
  color: rgba(0,0,0,0.4);
  text-decoration: line-through;
}
.product-desktop-modern__discount {
  background: #FF6B35;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}
.product-desktop-modern__shipping {
  color: #00a650;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-desktop-modern__divider {
  border: none;
  height: 1px;
  background: #e5e5e5;
  margin: 20px 0;
}
.product-desktop-modern__operadora {
  font-size: 15px;
  font-weight: 600;
  color: rgba(0,0,0,0.7);
  margin-bottom: 12px;
}
.product-desktop-modern__variants {
  margin-bottom: 20px;
}
.product-desktop-modern__buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, #00a650 0%, #00d166 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}
.product-desktop-modern__buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,166,80,0.4);
}
.product-desktop-modern__buy-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: hmShine 3s ease infinite;
}
.product-desktop-modern__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 32px;
  background: #25D366;
  color: #fff !important;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none !important;
}
.product-desktop-modern__whatsapp:hover {
  background: #1fbf5a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
  color: #fff !important;
}
.product-desktop-modern__trust {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
}
.product-desktop-modern__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(0,0,0,0.6);
}
.product-desktop-modern__trust-item ion-icon {
  color: #009EE3;
  font-size: 18px;
}
.product-desktop-modern__description {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  padding: 32px;
  margin-bottom: 24px;
}
.product-desktop-modern__description h2 {
  font-size: 20px;
  font-weight: 700;
  color: rgba(0,0,0,0.85);
  margin: 0 0 16px;
}
.product-desktop-modern__description .rte {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(0,0,0,0.65);
}

@media (max-width: 1024px) {
  .product-desktop-modern__main {
    gap: 32px;
  }
  .product-desktop-modern__title {
    font-size: 26px;
  }
  .product-desktop-modern__price {
    font-size: 30px;
  }
}
