.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

.cookie-box {
    width: 380px;
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cookie-title {
    font-weight: bold;
    color: #000; /* preto */
}

.cookie-brand {
    color: #000; /* preto */
    font-weight: bold;
}

.cookie-text {
    color: #333;
    margin-bottom: 10px;
}

.cookie-info {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    color: #555;
    font-size: 14px;
    margin-bottom: 12px;
}

.cookie-links a {
    color: #000; /* preto */
    text-decoration: underline;
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.cookie-options {
    color: #000;
    text-decoration: underline;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 8px;
}

.btn-reject {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 8px 16px;
    cursor: pointer;
}

.btn-accept {
    background: #000; /* preto */
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    cursor: pointer;
}

#cookie-banner {
    display: none;
}

.show-cookie #cookie-banner { display:block; }

.hero-title {
    position: relative;
    height: 180px;
    background: url("SEU-FUNDO.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* overlay escuro elegante */
.hero-overlay {
    position: absolute;
    inset: 0;
  background: linear-gradient(
  180deg,
  rgba(255, 255, 255, 0.85) 0%,
  rgba(255, 255, 255, 0.85) 0%,
  rgba(255, 255, 255, 0.85) 0%,
);
    backdrop-filter: blur(2px);
}

/* conteúdo */
.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

/* linha decorativa */
.hero-line {
    width: 70px;
    height: 3px;
    background: black;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* responsivo */
@media (max-width: 768px) {
    .hero-title {
        height: 130px;
    }

    .hero-content h1 {
        font-size: 26px;
    }
}

.dropdown-item:hover{
    background-color:lightgrey !important;
}

