body {
    font-family: 'Poppins', sans-serif;
    background: #f7f7f8;
    color: #1b1b1d;
    line-height: 1.6;
}

.navbar .logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.nav-link {
    font-weight: 600;
    color: #1b1b1d !important;
}

.nav-link:hover,
.nav-link:focus {
    color: #d20023 !important;
}

.btn-danger {
    background: #d20023;
    border-color: #d20023;
    border-radius: 5px;
}

.btn-danger:hover {
    background: #a1001c;
    border-color: #a1001c;
}

.btn-dark {
    border-radius: 5px;
}

.hero {
    background: radial-gradient(circle at 20% 20%, rgba(210, 0, 35, 0.08), transparent 35%),
                radial-gradient(circle at 80% 10%, rgba(0, 0, 0, 0.06), transparent 35%),
                #fdfdfd;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #111;
    color: #fff;
    padding: .4rem .8rem;
    border-radius: 999px;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: #d20023;
    border-radius: 2px;
}

.section-title {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.card-modern {
    background: #fff;
    border: 1px solid #ececf0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: all .2s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.08);
}

.card-modern img {
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}

.card-modern .card-footer {
    background: #f7f7f8;
    border-top: 1px solid #ececf0;
}

.card-modern .btn-link {
    font-weight: 600;
    text-decoration: none;
}

.card-modern .btn-link:hover {
    text-decoration: underline;
}

.chip {
    background: #f1f1f4;
    border-radius: 999px;
    padding: .35rem .75rem;
    font-size: .85rem;
    font-weight: 600;
}

.section-alt {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid #ededf1;
    box-shadow: 0 8px 22px rgba(0,0,0,0.05);
}

.filter-pill button {
    border-radius: 999px;
    border: 1px solid #d6d6dc;
    padding: .45rem 1rem;
    font-weight: 600;
    background: #fff;
}

.filter-pill button.active {
    background: #d20023;
    color: #fff;
    border-color: #d20023;
}

.form-control,
.form-select {
    border-radius: 5px;
}

.footer {
    background: #0f0f11;
}

.whatsapp-badge {
    background: #25d366;
    color: #0b3b1b;
    border-radius: 8px;
    padding: .35rem .65rem;
    font-weight: 600;
}

.animate-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: all 0.6s ease;
}

.animate-reveal.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
    }
    .hero img {
        margin-top: 2rem;
    }
}
