/* =========================
   AJUSTE GENERAL
========================= */

body{
font-family: Arial, Helvetica, sans-serif;
}

/* =========================
   BLOQUE DEL TÍTULO
========================= */
.hero-seccion {
    padding-top: 20px;
    padding-bottom: 10px;
    text-align: center;
}

.hero-seccion h2 {
    margin: 0 auto;
    display: inline-block;
    font-size: 2rem;
    font-weight: 600;
    color: #b91c6b;
}


/* =========================
   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;
}


/* =========================
   NUEVO DISEÑO PROFESIONAL
========================= */

.hero-seccion {
    text-align: center;
    margin-bottom: 50px;
}

.hero-seccion h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.hero-seccion p {
    font-size: 18px;
    color: #555;
}

.planes-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.plan-card {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 20px;
    width: 600px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 2px solid #4f1bd9;
}

.precio{
font-size:26px;
font-weight:700;
margin-bottom:20px;
}

.precio span{
font-size:14px;
font-weight:400;
color:#777;
margin-left:6px;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.plan-card li {
    margin-bottom: 12px;
    font-size: 16px;
}

.btn-principal {
    display: inline-block;
    background: linear-gradient(135deg, #5b21ff, #3a0ca3);
    color: white;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-principal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.activacion-box {
    background: #f2f2f2;
    padding: 40px;
    border-radius: 20px;
    margin: 60px auto 100px auto;
    max-width: 800px;
    text-align: center;
}

.activacion-box h3 {
    margin-bottom: 15px;
}

.activacion-box p {
    margin-bottom: 8px;
    color: #444;
}

.activacion-box strong {
    display: block;
    margin: 10px 0;
    font-size: 18px;
}

/* ================================
PLANES DE 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;
border:1px solid #e5e7eb;
transition:0.2s ease;
}

.plan-box:hover{
transform:translateY(-4px);
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.plan-box.destacado{
border:2px solid #4108d1;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.plan-box h3{
margin-bottom:15px;
}


.plan-box ul{
list-style:none;
padding-left:0;
margin-bottom:25px;
}

.plan-box li{
margin-bottom:10px;
}

.plan-box .btn-comprar{
margin-top:20px;
margin-bottom:20px;
}

.nota-plan{
margin-top:15px;
font-size:14px;
color:#666;
line-height:1.4;
}

/* =========================
BOTÓN COMPRA
========================= */

.btn-comprar{
display:inline-block;
background:linear-gradient(135deg,#5b21ff,#3a0ca3);
color:white;
padding:14px 30px;
border-radius:10px;
text-decoration:none;
font-weight:600;
transition:0.3s ease;
}

.btn-comprar:hover{
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

/* ================================
RESPONSIVE
================================ */

@media (max-width:900px){

.planes-grid{
grid-template-columns:1fr;
}

}