/* ── HAMBURGER MENU ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
    border-radius: 8px;
    transition: background 0.2s;
    margin-left: 12px;
}
.hamburger:hover { background: #f1f5f9; }
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #0f1923;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger.ativo span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.ativo span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.ativo span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 20px 20px;
    z-index: 99;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.mobile-menu.ativo { display: flex; }
.mobile-menu a {
    padding: 13px 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #556575;
    transition: background 0.15s, color 0.15s;
    text-decoration: none;
}
.mobile-menu a:hover { background: #ebfaf4; color: #009265; }
.mobile-menu .btn-mobile {
    margin-top: 8px;
    background: #00b37e;
    color: #fff !important;
    text-align: center;
    font-weight: 700;
    border-radius: 10px;
}
.mobile-menu .btn-mobile:hover { background: #009265; }

/* ── RESPONSIVE OVERRIDE ── */
@media (max-width: 600px) {
    .hamburger { display: flex; }
    nav a { display: none !important; }
}
@media (min-width: 601px) {
    .mobile-menu { display: none !important; }
}

/* ── COOKIE BANNER ── */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0f1923;
    border-top: 1px solid #1e293b;
    z-index: 9999;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 32px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
#cookie-banner.visivel { transform: translateY(0); }

.cookie-text {
    flex: 1;
    min-width: 260px;
}
.cookie-text p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}
.cookie-text a {
    color: #00b37e;
    text-decoration: underline;
}
.cookie-text strong {
    color: #e2e8f0;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-aceitar {
    background: #00b37e;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: background 0.2s;
    white-space: nowrap;
}
.cookie-btn-aceitar:hover { background: #009265; }

.cookie-btn-recusar {
    background: transparent;
    color: #64748b;
    border: 1px solid #1e293b;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.2s;
    white-space: nowrap;
}
.cookie-btn-recusar:hover { border-color: #334155; color: #94a3b8; }

.cookie-btn-config {
    background: transparent;
    color: #475569;
    border: none;
    padding: 10px 0;
    font-size: 13px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    text-decoration: underline;
    white-space: nowrap;
}

@media (max-width: 600px) {
    #cookie-banner { padding: 20px; }
    .cookie-btns { width: 100%; }
    .cookie-btn-aceitar, .cookie-btn-recusar { flex: 1; text-align: center; }
}
