/* =========================
   AJUSTE GENERAL
========================= */



/* =========================
   BLOQUE DEL TÍTULO
========================= */
.hero-seccion {
    text-align: center;
    padding-top: 30px;
    margin-bottom: 60px;
}

.hero-seccion h1 {
    font-size: 32px;
    margin-bottom: 18px;
    font-weight: 700;
    color: #222;
}

.hero-seccion p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 700px;
}


/* =========================
   SEPARACIÓN TARJETAS (por coherencia con el resto del sitio)
========================= */
.categorias {
    margin-top: 20px;
}


/* =========================
   HOVER TARJETAS (estructura base común)
========================= */
.categoria:hover {
    transform: translateY(-8px);
}


/* =========================
   PÁGINA DE COMPRA
========================= */
.compra-box {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
}

.compra-box h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 20px;
    color: #b91c6b;
}

.compra-box p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.direccion-cripto {
    background: #fff;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: monospace;
    word-break: break-all;
    margin: 10px 0;
}

.aviso-red {
    color: #d00000;
    font-weight: 600;
    margin-top: 10px;
}


.content {
    margin-top: 40px;
}

/* =========================
   BOTÓN PRINCIPAL
========================= */

.btn-comprar {
    display: inline-block;
    background: #ff7a00;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-comprar:hover {
    background: #e66a00;
}

.volver-producto {
    text-align: center;
    margin: 60px 0 40px 0;
}

.planes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.plan-card {
    background: #ffffff;
    padding: 45px;
    border-radius: 20px;
    border: 2px solid #e5e7eb; /* borde suave gris */
    transition: 0.3s ease;
}

.plan-card.destacado {
    border: 2px solid #4108d1fd;
    background: #faf9ff;
}


.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.precio {
    font-size: 28px;
    font-weight: 700;
    margin: 20px 0;
}

.precio span {
    font-size: 16px;
    font-weight: 400;
    color: #666;
}

.plan-card ul {
    list-style: none;
    padding: 0;
}

.plan-card li {
    margin-bottom: 10px;
}

.btn-principal {
    display: inline-block;
    margin-top: 20px;
    background: #4108d1fd;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.metodos-pago {
    margin-top: 60px;
}

.pago-box {
    margin-bottom: 20px;
}

.activacion-box {
    margin-top: 100px;
    margin-bottom: 100px;   /* 👈 esto es lo que falta */
    padding: 50px;
    background: #f3f4f8;
    border-radius: 24px;
    text-align: center;
}