    .card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Card base */
.al-card {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: transform .35s ease, box-shadow .35s ease;
    background: #fff;
}

.al-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0,0,0,.1);
}

/* Tag */
.al-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #c9a24d;
    margin-bottom: 10px;
}

/* Título */
.al-title {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    margin-bottom: 10px;
    color: #1f2937;
}

/* Texto */
.al-text {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

/* Call to action */
.al-action {
    margin-top: 15px;
    font-weight: 600;
    color: #c0392b;
}

/* Imagem */
.al-image {
    overflow: hidden;
}

.al-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

/* Zoom suave no hover */
.al-card:hover .al-image img {
    transform: scale(1.08);
}

.hero-section {
    height: 95vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.60);
    z-index: 1;
    pointer-events: none;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

/* Top small text */
.hero-top-text {
    font-size: 25px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 20px;
}

/* Main title */
.hero-title {
    font-size: 32px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-title span {
    font-weight: 600;
}

/* Subtitle */
.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
}

/* Search */
.hero-search {
    display: flex;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
}

.hero-input {
    border: none;
    padding: 18px;
    font-size: 16px;
}

.hero-input:focus {
    box-shadow: none;
}

.hero-btn {
    background: #ea883a;
    border: none;
    padding: 0 30px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #b96e30;
}

/* Categories */
.hero-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.category-pill {
    padding: 10px 25px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.category-pill:hover {
    background: rgba(255,255,255,0.2);
    color: white;
}