body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.hero {
    background: linear-gradient(to right, #0d6efd, #0dcaf0);
    color: white;
    padding: 100px 0;
}

.hero img {
    filter: drop-shadow(0 0 1rem rgb(255, 255, 255));
}

.section-title {
    font-weight: 600;
}

.cta {
    background: linear-gradient(to right, #0d6efd, #0dcaf0);
}

footer {
    font-size: 0.9rem;
}

/* La nostra offerta background overlay */
#offerta {
    background: url('/media/bg-offerta.jpg') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

#offerta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
}

#offerta .container {
    position: relative;
    z-index: 1;
}

#offerta .card-body {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px;
    color: white;
}

#offerta .card-title i {
    color: #0dcaf0;
}

#offerta .card-title {
    font-weight: 600;
}

#offerta .card-text {
    font-size: 0.95rem;
}