body {
    font-family: Segoe UI;
    margin: 0;
    background: #f5f7fb;
}

/* NAVBAR */

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 8%;
    background: #111827;
    color: white;
}

.menu a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
}

.btn-login {
    background: #2563eb;
    padding: 8px 14px;
    border-radius: 6px;
}

/* HERO */

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 8%;
}

.hero img {
    width: 420px;
    border-radius: 10px;
}

.hero-btn {
    display: inline-block;
    margin-top: 20px;
    background: #2563eb;
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
}

/* FEATURES */

.features {
    padding: 80px 8%;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
}

/* PLANES */

.pricing {
    padding: 80px 8%;
    text-align: center;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.price-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    width: 280px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.highlight {
    border: 2px solid #2563eb;
}

.badge {
    background: #2563eb;
    color: white;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.price {
    font-size: 36px;
    margin: 20px 0;
}

.btn-plan {
    display: block;
    background: #2563eb;
    padding: 12px;
    color: white;
    border-radius: 8px;
    text-decoration: none;
}

/* MODAL */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.modal-content img {
    width: 100%;
    border-radius: 8px;
    margin: 15px 0;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* SUBTEXTO PLANES */

.pricing-sub {
    margin-top: 10px;
    color: #555;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.plan-desc {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    margin-bottom: 10px;
}


/* FOOTER */

.footer {
    margin-top: 80px;
    padding: 60px 8%;
    text-align: center;
    color: white;

    background: linear-gradient(135deg,
            #111827,
            #111827,
            #374151);
}

.footer h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.footer p {
    opacity: 0.9;
}

.copyright {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}