body {
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

/* ========================= */
/* HERO SECTION */
/* ========================= */

.hero-section {
    padding: 80px 0 120px 0;
    background: url('../img/banner-bg.png') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

/* ========================= */
/* HERO MENU */
/* ========================= */

.hero-menu {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    z-index: 1000;
}

.hero-menu .menu-link {
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 500;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
}

.hero-menu .menu-link:hover {
    background: #198754;
    color: white !important;
}

/* ========================= */
/* HERO LOGO */
/* ========================= */

.hero-logo {
    height: 170px;
    margin-top: 40px;
    filter: drop-shadow(0 8px 15px rgba(0,0,0,0.08));
}

/* ========================= */
/* HERO MOCKUP */
/* ========================= */

.hero-mockup {
    margin-top: 40px;
    width: 120%;
    max-width: none;
}

/* ========================= */
/* BENEFITS */
/* ========================= */

.benefit-card {
    border-radius: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* ========================= */
/* PLANES AJUSTADOS */
/* ========================= */

#planes {
    position: relative;
    padding-top: 70px;
    padding-bottom: 90px;
}

.plan-card {
    border-radius: 20px;
    padding: 22px;
    background: #ffffff;
    border: 1px solid #e9e9e9;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.10);
}

/* Precio más pequeño */
.plan-card h1 {
    font-size: 30px;
}

.plan-card h1 span {
    font-size: 13px;
    font-weight: 500;
    margin-left: 4px;
}

/* Lista */
.plan-card ul li {
    margin-bottom: 7px;
    font-size: 14px;
}

/* Botón */
.plan-card .btn {
    border-radius: 10px;
    font-weight: 600;
    padding: 9px;
    transition: all 0.3s ease;
}

/* PLAN DESTACADO */
.destacado {
    border: 2px solid #198754;
    transform: none; /* quitamos el scale grande */
    box-shadow: 0 15px 40px rgba(25,135,84,0.18);
    position: relative;
}

.destacado::before {
    content: "Más Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #198754;
    color: white;
    padding: 4px 14px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 18px;
}

/* Quitamos animación glow exagerada */
.destacado {
    animation: none;
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer-section {
    background: url('../img/footer.png') no-repeat center center;
    background-size: cover;
    position: relative;
}

.footer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.6) 60%,
        rgba(0, 0, 0, 0.75) 100%
    );
}

.footer-section .container {
    position: relative;
    z-index: 2;
}

.footer-background-wrapper {
    background: url('../img/footer.png') no-repeat center bottom;
    background-size: cover;
}