body {
    background-color: #f5f7fb;
}

/* Exemplo de hero na home */
.hero-praia {
    background: url('../img/praia.jpg') center center / cover no-repeat;
    min-height: 300px;
    border-radius: 1rem;
}

/* ===== Cards modernos ===== */

.menu-card {
    border: none;
    border-radius: 1rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.menu-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(148, 163, 184, 0.35);
    pointer-events: none;
}

.menu-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
}

.menu-card .card-body {
    padding: 1.1rem 1.15rem 0.9rem;
}

.menu-card .card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
}

.badge-destaque {
    background: linear-gradient(135deg, var(--gold-main), var(--coral));
    color: #1f2933;
    font-weight: 600;
    font-size: 0.7rem;
    border-radius: 999px;
    padding: 0.2rem 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.menu-card .card-text {
    font-size: 0.86rem;
    color: #6b7280;
}

.menu-card-footer {
    border-top: 0;
    background: linear-gradient(90deg, var(--gold-main), var(--coral));
    color: #1f2933;
    font-size: 0.94rem;
    padding: 0.65rem 1.15rem;
}

.menu-card-footer::before {
    content: "R$ ";
    font-weight: 500;
}

/* Container de imagem com proporção fixa */
.menu-card-image-container {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #f3f4f6;
}

.menu-card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Menu sticky de categorias */
.categorias-menu-sticky {
    background: #ffffff;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.categorias-menu-sticky.sticky-active {
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: #ffffff;
}

.categoria-link {
    transition: all 0.2s ease;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: rgba(37, 99, 235, 0.2);
    touch-action: manipulation;
    display: inline-block;
    text-decoration: none;
    position: relative;
}

.categoria-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    background-color: #eff6ff;
    border-color: #2563eb;
}

.categoria-link:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(37, 99, 235, 0.2);
}

.categoria-link.active {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff !important;
    border-color: #2563eb;
    font-weight: 600;
    transform: none;
}

.categoria-link.active:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: none;
}

/* Cards de destaque */
.menu-card-destaque {
    border: 2px solid var(--gold-main);
    box-shadow: 0 12px 40px rgba(255, 201, 74, 0.2);
}

.menu-card-destaque:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(255, 201, 74, 0.3);
}

/* Melhorias de tipografia */
.menu-card .card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

.menu-card .card-descricao-resumida {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Preço destacado */
.menu-card .text-primary {
    color: var(--coral) !important;
    font-size: 1.1rem;
}

/* Responsividade mobile */
@media (max-width: 768px) {
    .categorias-menu-sticky {
        padding: 0.75rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .categorias-menu-sticky .d-flex {
        flex-wrap: nowrap;
        min-width: max-content;
    }
    
    .categoria-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.9rem;
        white-space: nowrap;
        flex-shrink: 0;
        min-width: fit-content;
    }
    
    .menu-card-image-container {
        aspect-ratio: 16 / 9;
    }
    
    .menu-card .card-title {
        font-size: 1rem;
    }
    
    /* Garantir que o menu sticky funcione no mobile */
    .categorias-menu-sticky.sticky-active {
        top: 56px; /* Altura da navbar no mobile */
    }
}

/* ===== Cards de eventos ===== */

.event-card {
    border: none;
    border-radius: 1rem;
    background:
        radial-gradient(circle at top left, rgba(29, 186, 214, 0.18), transparent 55%),
        #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    border-left: 4px solid var(--turquoise);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
    border-left-color: var(--coral);
}

.event-card .card-body {
    padding: 1.1rem 1.2rem 1rem;
}

.event-card .card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
}

.event-card-date {
    font-size: 0.78rem;
    font-weight: 600;
    color: #0f172a;
    background-color: rgba(29, 186, 214, 0.09);
    border-radius: 999px;
    padding: 0.3rem 0.7rem;
    white-space: nowrap;
}

.event-card-date .sep {
    opacity: 0.6;
    margin: 0 0.25rem;
}

.event-card-description {
    font-size: 0.86rem;
    color: #6b7280 !important;
}
