/* Estilos iniciales */ 
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

  * { margin: 0; 
    padding: 0; 
    box-sizing:
     border-box; 
    }
 
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
 
}

.promo-modal {
  background: linear-gradient(135deg, #000000, #6d6363);
  color: white;
  padding: 30px;
  border-radius: 20px;
  width: 360px;
  text-align: center;
  position: relative;
   box-shadow: 0 0 20px rgb(216, 195, 5);
}

.close {
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
}

.btn-live-now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff0050; /* color TikTok */
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 0 5px rgb(28, 179, 141);
  margin: 20px 0;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}
/* Botón flotante Live TikTok */
.live-float {
    position: fixed;
    bottom: 7rem; /* arriba del WhatsApp */
    right: 1.5rem;
    background: linear-gradient(135deg, #ff0050, #000000);
    color: white;
    padding: 6px 12px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: bold;
    text-decoration: none;
    z-index: 50;
    box-shadow: 0 0 10px rgba(255, 0, 80, 0.6);
    animation: pulseLive 2s infinite;
    transition: transform 0.3s ease;
}

/* Hover */
.live-float:hover {
    transform: translateY(-3px) scale(1.05);
}

/* Animación tipo latido */
@keyframes pulseLive {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 0, 80, 0.6);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 18px rgba(255, 0, 80, 0.9);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 0, 80, 0.6);
    }
}

/* Tooltip opcional */
.live-tooltip {
    position: absolute;
    right: 100%;
    margin-right: 10px;
    background: white;
    color: #111;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    opacity: 0;
    transition: 0.3s;
    white-space: nowrap;
}

.live-float:hover .live-tooltip {
    opacity: 1;
}
.btn-live-now i {
  font-size: 18px;
}

.btn-live-now:hover {
  transform: scale(1.05);
  background: #e60045;
}

/* TABLET */
@media (min-width: 768px) {
  .promo-modal {
    width: 500px;
    padding: 40px;
  }

  .promo-modal h2 {
    font-size: 24px;
  }

  .promo-modal p {
    font-size: 16px;
  }

  .btn-live-now {
    padding: 14px 25px;
    font-size: 16px;
  }
}
/* COMPUTADORA */
@media (min-width: 1024px) {
  .promo-modal {
    width: 650px;
    padding: 50px;
    top: -30px;
  }

  .promo-modal h2 {
    font-size: 28px;
  }

  .promo-modal p {
    font-size: 18px;
  }

  .btn-live-now {
    padding: 16px 30px;
    font-size: 18px;
  }
}
/* PANTALLAS GRANDES (FULL HD+) */
@media (min-width: 1440px) {
  .promo-modal {
    width: 750px;
  }
}
  #att-root {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: white;
    min-height: 600px;
    overflow: hidden;
    position: relative;
  }

  #intro-screen {
    position: absolute;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    animation: introFade 3s ease forwards;
  }

  #intro-logo {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, #c8a84b 0%, #f0d080 30%, #e8c55a 50%, #d4af37 65%, #f5e07a 80%, #b8902a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoAnim 3s ease forwards;
    text-align: center;
    position: relative;
    top: -150px;
  }
#logo-img{
  position: absolute;
  width: 500px;
  height: auto;
  top: 35%;
  transform: translateY(-50%, -50%);
 }
  @keyframes logoAnim {
    0% { opacity: 0; transform: scale(0.92); }
    20% { opacity: 1; transform: scale(1); }
    75% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.04); }
  }

  @keyframes introFade {
    0% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; pointer-events: none; }
  }

  #main-content {
    opacity: 0;
    animation: contentReveal 0.8s ease 2.8s forwards;
    background: #0a0a0a;
    min-height: 600px;
  }

  @keyframes contentReveal {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }
 .header{
    position: relative;
    height: 60px;
    width: 100%;
    overflow: hidden;
    background-color: #0a0a0a;
    top: 0;
    left: 0;
 }
 #barra-navegancion {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);

  width: 100%;
  max-width: 960px;

  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(35,35,35,0.75);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.06);

  z-index: 9999;
}

  @keyframes navSlide {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .nav-logo {
    color: #E2B743;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
  }

  .nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: white; }
  .nav-links a.active { color: #E2B743; }

  .nav-cta {
    background: #E2B743;
    color: #000;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 9px 22px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 0 18px rgba(226,183,67,0.28);
  }
  .nav-cta:hover { background: #c9a145; transform: scale(1.03); }

  /* HAMBURGER BUTTON */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }

  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* MOBILE MENU DROPDOWN */
  .mobile-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    background: rgba(20,20,20,0.97);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
    z-index: 200;
    transform-origin: top center;
    transform: scaleY(0);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .mobile-menu.open {
    transform: scaleY(1);
    opacity: 1;
  }

  .mobile-menu ul {
    list-style: none;
    padding: 8px 0;
  }

  .mobile-menu ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
    border-left: 3px solid transparent;
  }

  .mobile-menu ul li a:hover {
    background: rgba(255,255,255,0.05);
    color: white;
  }

  .mobile-menu ul li a.active {
    color: #E2B743;
    border-left-color: #E2B743;
  }

  .mobile-menu-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
  }

  .mobile-menu ul li a.active .mobile-menu-dot {
    background: #E2B743;
  }

  .mobile-menu-footer {
    padding: 12px 24px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .mobile-menu-footer a {
    display: block;
    background: #E2B743;
    color: #000;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 0 18px rgba(226,183,67,0.25);
    transition: background 0.2s;
  }

  .mobile-menu-footer a:hover { background: #c9a145; }

  /* HERO */
  .heroo {
    max-width: 1200px;
    margin: 52px auto 0;
    padding: 0 20px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    align-items: center;
  }

  .heroo-text { animation: heroText 0.8s ease 3.2s both; }

  @keyframes heroText {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
  }

  .heroo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(226,183,67,0.12);
    border: 1px solid rgba(226,183,67,0.3);
    color: #E2B743;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .heroo-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: #E2B743;
    border-radius: 50%;
    animation: blink 1.4s ease-in-out infinite;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: white;
    margin-bottom: 18px;
  }

  h1 span {
    background: linear-gradient(135deg, #E2B743, #f5d87a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .heroo-sub {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 360px;
    margin-bottom: 32px;
    font-weight: 400;
  }

  .heroo-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: #E2B743;
    color: #000;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 0 22px rgba(226,183,67,0.3);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  }
  .btn-primary:hover { background: #c9a145; transform: translateY(-2px); box-shadow: 0 4px 28px rgba(226,183,67,0.4); }

  .btn-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 13px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
  }
  .btn-secondary:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.2); }

  .whatsapp-icon { width: 18px; height: 18px; fill: #25D366; }

  .stats-row {
    display: flex;
    gap: 28px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.07);
  }

  .stat-item .stat-num {
    font-size: 1.4rem;
    font-weight: 700;
    color: #E2B743;
    display: block;
    line-height: 1;
  }

  .stat-item .stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
    display: block;
  }

  .heroo-image-wrap {
    position: relative;
    animation: heroImg 0.9s ease 3.35s both;
  }

  @keyframes heroImg {
    from { opacity: 0; transform: translateX(20px) scale(0.97); }
    to { opacity: 1; transform: translateX(0) scale(1); }
  }

  .heroo-img {
    width: 100%;
    border-radius: 24px;
    aspect-ratio: 5/4;
    object-fit: cover;
    display: block;
  }

  .float-card {
    position: absolute;
    background: rgba(20,20,20,0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 12px 16px;
    animation: floatCard 3.5s ease-in-out 4s infinite alternate;
  }

  @keyframes floatCard {
    from { transform: translateY(0); }
    to { transform: translateY(-6px); }
  }

  .card-top { top: -18px; right: 20px; display: flex; align-items: center; gap: 10px; }

  .card-icon {
    width: 36px; height: 36px;
    background: rgba(226,183,67,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .card-icon svg { width: 18px; height: 18px; }
  .card-title { font-size: 0.7rem; color: rgba(255,255,255,0.45); }
  .card-val { font-size: 0.95rem; font-weight: 600; color: white; margin-top: 1px; }
  .card-bottom { bottom: -18px; left: 20px; display: flex; align-items: center; gap: 10px; }

  .star-row { display: flex; gap: 2px; margin-bottom: 2px; }
  .star { color: #E2B743; font-size: 11px; }
  .card-review-text { font-size: 0.7rem; color: rgba(255,255,255,0.4); }
  .card-review-val { font-size: 0.9rem; font-weight: 600; color: white; }

  /* RESPONSIVE */
  @media (max-width: 640px) {
    nav { border-radius: 20px; padding: 14px 20px; }
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .mobile-menu { display: block; }
    .heroo { grid-template-columns: 1fr; margin-top: 32px; gap: 56px; }
    .heroo-image-wrap { order: -1; }
    .card-top { top: -14px; }
    .card-bottom { bottom: -14px; }
    .stats-row { gap: 20px; }
  }