body {
    padding-top: 80px;
}

.hero {
    background: linear-gradient(135deg, #0B1F3A 0%, #132f5e 100%);
    color: white;
    padding: 180px 0 140px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.hero p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.hero::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    top: -200px;
    right: -200px;
}

.section-light {
    background-color: #F4F6F8;
    padding: 140px 0;
}

.section-dark {
    background-color: #0B1F3A;
    color: white;
    padding: 100px 0;
}


.btn-primary-custom {
    background-color: #1E3A8A;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #162E6A;
    color: white;
}



.btn-destacado {
    display: inline-block;
    background-color: #2563EB;
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 8px; /* ← aquí está la clave */
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
}

.btn-destacado:hover {
    background-color: #162E6A;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.producto-card {
    transition: all 0.3s ease;
    border-radius: 12px;
	background: white;
}

.producto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.producto-card i {
    color: #1E3A8A;
}

.metodo-box {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.metodo-box:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-8px);
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    line-height: 60px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.plan-card {
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.plan-card.destacado {
    border: 2px solid #1E3A8A;
    transform: scale(1.05);
	box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.precio {
    color: #1E3A8A;
    font-weight: 700;
}

.comparativa-planes th {
    background-color: #1E3A8A;
    color: white;
    font-weight: 600;
}

.plan-destacado {
    background-color: rgba(37, 99, 235, 0.08);
    font-weight: 600;
}

.comparativa-planes td,
.comparativa-planes th {
    padding: 18px;
    vertical-align: middle;
}

.comparativa-planes tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.03);
}