/* =====================================================
   BLOQUE DEL TÍTULO (HERO)
===================================================== */

.hero-seccion {
    padding-top: 30px;
    margin-bottom: 60px;
    text-align: center;
}

.hero-seccion h1 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
}

.hero-seccion h2 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 18px;
}

.hero-seccion p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 700px;
}


/* =====================================================
   TARJETAS DE CATEGORÍAS
===================================================== */

.categorias {
    margin-top: 20px;
}

.categoria:hover {
    transform: translateY(-8px);
}


/* =====================================================
   DETALLE DEL PRODUCTO
===================================================== */

.detalle-producto {
    margin-top: 40px;
    font-size: 18px;
}

.detalle-producto ul {
    list-style: none;
    padding-left: 0;
}

.detalle-producto li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.detalle-producto h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 20px;
}


/* =====================================================
   BLOQUE REQUISITOS
===================================================== */

.requisitos-producto {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

.requisitos-producto h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.requisitos-producto ul {
    list-style: none;
    padding-left: 0;
}

.requisitos-producto li {
    font-size: 18px;
    line-height: 1.6;
}


/* =====================================================
   BOTONES GENERALES (UNIFICADOS)
===================================================== */

.acciones-producto {
    text-align: center;
    margin: 50px 0;
}

/* Botón principal */
.btn-comprar,
.btn-cta-primary {
    background: #4108d1;
    color: #fff;
    padding: 14px 32px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.btn-comprar:hover,
.btn-cta-primary:hover {
    opacity: 0.9;
}

/* Botón secundario */
.btn-galeria,
.btn-cta-secondary {
    border: 2px solid #4108d1;
    color: #4108d1;
    padding: 14px 30px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    background: transparent;
    transition: 0.3s ease;
}

.btn-galeria:hover,
.btn-cta-secondary:hover {
    background: #4108d1;
    color: #fff;
}


/* =====================================================
   GALERÍA
===================================================== */

.galeria-grid {
    margin-top: 30px;
    gap: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.galeria-grid .categoria {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.galeria-grid .categoria:hover {
    transform: translateY(-6px);
}

.galeria-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}


/* =====================================================
   VISOR DE IMÁGENES
===================================================== */

.visor {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.visor img {
    max-width: 95%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.cerrar-visor {
    position: absolute;
    top: 25px;
    right: 40px;
    font-size: 45px;
    color: white;
    cursor: pointer;
}


/* =====================================================
   VIDEO
===================================================== */

.video-demo {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
}

.video-demo video {
    width: 100%;
    max-width: 300px;
    padding: 12px;
    background: #fff;
    border-radius: 12px;
}

.video-principal {
    text-align: center;
    margin: 60px 0;
}

.video-principal h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.video-principal p {
    color: #555;
    margin-bottom: 25px;
}

.video-grande {
    width: 100%;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.video-grande:hover {
    transform: scale(1.01);
    transition: 0.3s ease;
}


/* =====================================================
   CTA FINAL (UNIFICADO)
===================================================== */

.cta-final {
    margin-top: 80px;
    padding: 60px 20px;
    text-align: center;
    background: #f8f9fc;
    border-radius: 16px;
}

.cta-final h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-final p {
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: #555;
    font-size: 17px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


/* =====================================================
   ESPACIADO GENERAL
===================================================== */

main {
    padding-bottom: 70px;
}


/* =====================================================
   PLANES COMPRA
===================================================== */

.planes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.plan-box {
    background: #f8f9fc;
    padding: 35px;
    border-radius: 16px;
}

.plan-box.destacado {
    border: 2px solid #4108d1;
}

.plan-box h3 {
    margin-bottom: 15px;
}

.precio {
    font-size: 22px;
    margin-bottom: 20px;
}

.precio span {
    font-size: 14px;
    color: #777;
    margin-left: 6px;
}

.plan-box ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.plan-box li {
    margin-bottom: 10px;
}


/* =====================================================
   MÉTODOS DE PAGO
===================================================== */

.metodos-pago {
    margin-top: 60px;
}

.direccion-cripto {
    background: #fff;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: monospace;
    word-break: break-all;
    margin: 15px 0;
}

.aviso-red {
    color: #d00000;
    font-weight: 600;
}


/* =====================================================
   ACTIVACIÓN
===================================================== */

.activacion-box {
    margin-top: 60px;
    padding: 40px;
    background: #f8f9fc;
    border-radius: 16px;
    text-align: center;
}

.separacion-bloque {
    margin-top: 60px;
}
