body {
    font-family: 'Poppins', sans-serif;
    margin-top: 80px;
}

.logo-box {
    width: 40px;
    height: 40px;
    background: #0d6efd;
    color: #fff;
    font-weight: bold;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    min-height: 90vh;
    background: linear-gradient(135deg, #0d6efd20, #ffffff);
    padding: 80px 0;
}

h1 {
    font-weight: 700;
}

.icon-service {
    font-size: 40px;
    color: #0d6efd;
    margin-bottom: 15px;
}

.service-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: .3s;
}

.service-card:hover {
    transform: translateY(-6px);
}

footer.footer {
    background: #0d6efd;
    color: #fff;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .3);
    z-index: 999;
}

/* -------- PLANES -------- */
.plan-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.plan-list li {
    padding: 6px 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 15px;
    display: block;
}

.plan-card {
    border-radius: 20px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.plan-card .card-header {
    font-weight: bold;
    font-size: 18px;
    background: #0d6efd;
    color: #fff;
    border-radius: 20px 20px 0 0;
}

.plan-card h3 {
    margin: 15px 0;
    font-weight: 700;
}

/* plan destacado */
.plan-card.destacada {
    border: 3px solid #0d6efd;
}

/* ANIMACIONES */
.titulo-animado,
.tarjeta-animada {
    opacity: 0;
    transform: translateY(40px);
    animation: aparecer 1s forwards;
}

.tarjeta-animada:nth-child(1) {
    animation-delay: .2s;
}

.tarjeta-animada:nth-child(2) {
    animation-delay: .4s;
}

.tarjeta-animada:nth-child(3) {
    animation-delay: .6s;
}

@keyframes aparecer {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* BOTÓN PREMIUM - SOLICITAR REUNIÓN */
.btn-reunion {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    border: none;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px;
    border-radius: 50px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.35);
}

.btn-reunion::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%);
    transform: translateX(-100%);
    transition: transform .6s ease;
}

.btn-reunion:hover::after {
    transform: translateX(100%);
}

.btn-reunion:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(13, 110, 253, 0.6);
    background: linear-gradient(135deg, #0b5ed7, #084298);
}

.btn-reunion:active {
    transform: scale(0.98);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

/* Animación sutil tipo pulso */
@keyframes pulso {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.6);
    }

    70% {
        box-shadow: 0 0 0