@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&display=swap');

/* CSS Unificado - Somnacity */

:root {
    --primary-color: #19b26e;
    --primary-light: #2dd48f;
    --secondary-color: #339af0;
    --accent-color: #ff9740;
    --bg-main: #0a1117;
    --bg-card: #1a2332;
    --text-light: #ffffff;
    --text-secondary: #b4dfff;
    --text-muted: #7a95b8;
    --border-color: #2d3f54;
    --success: #89fa50;
    --warning: #ff9740;

    /* New Card Variables */
    --bg-card-new: #1c2533;
    --color-date: #3498db;
    --color-time: #f39c12;
    --color-title: #f1c40f;
    --color-tag: #2ecc71;
    --uber-black: #000000;
    --gradient-venue-fix: linear-gradient(135deg, #FF416C 0%, #FF4B2B 100%);
}

/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY E TIPOGRAFIA */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--bg-main);
    min-height: 100vh;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 14px;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* HEADER */
header {
    background: linear-gradient(135deg, #122f43 0%, #0e1f2e 100%);
    box-shadow: 0 4px 20px rgba(51, 154, 240, 0.15);
    margin-bottom: 14px;
    position: relative;
    padding: 16px 15px;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--success), var(--accent-color));
}

.header-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    min-height: auto;
    overflow: visible;
}

.branding {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    flex-wrap: nowrap;
}

.logo {
    max-width: 52px;
    max-height: 52px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 3px 15px rgba(59, 202, 235, 0.2);
    border: 2px solid var(--accent-color);
    flex-shrink: 0;
}

.plataforma-nome {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.plataforma-nome h1 {
    font-size: 1.5em;
    font-weight: 900;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--success) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 2px;
    display: flex;
    gap: 8px;
}

.plataforma-nome p {
    font-size: 0.8em;
    color: var(--text-secondary);
    margin: 0;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    white-space: nowrap;
    visibility: visible;
    opacity: 1;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.3s;
    background: rgba(51, 154, 240, 0.1);
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--success);
    background: rgba(51, 154, 240, 0.2);
    transform: translateY(-2px);
}

.nav-link svg {
    flex-shrink: 0;
}

/* FILTRO HORIZONTAL - DIAS DA SEMANA */
.dias-semana-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px 10px;
    margin: 0 15px 14px 15px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    flex-wrap: wrap;
}

.dia-tab {
    border: none;
    background: var(--bg-main);
    color: var(--secondary-color);
    padding: 10px 18px;
    font-size: 0.95em;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1.5px solid var(--border-color);
}

.dia-tab:hover {
    border-color: var(--secondary-color);
    color: var(--success);
}

.dia-tab.active {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    border-color: var(--secondary-color);
    box-shadow: 0 3px 12px rgba(51, 154, 240, 0.4);
}

/* FILTERS */
.filters-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin: 0 15px 16px 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 20px 18px;
}

.filters-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}

.filters-header h2 {
    font-size: 1.2em;
    color: var(--text-light);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-count {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--text-light);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
}

.clear-filters {
    background: var(--accent-color);
    color: var(--text-light);
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.9em;
    box-shadow: 0 2px 10px rgba(255, 151, 64, 0.3);
}

.clear-filters:hover {
    background: #e88230;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 151, 64, 0.5);
}

.filters-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.filter-group label {
    color: var(--secondary-color);
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group select,
.filter-group input {
    background: var(--bg-main);
    border: 1.5px solid var(--border-color);
    color: var(--text-light);
    padding: 11px 12px;
    border-radius: 10px;
    font-size: 0.95em;
    transition: all 0.3s;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

#filterArtista option:not([value=""]) {
    text-transform: uppercase;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(51, 154, 240, 0.15);
}

.filter-group select:hover,
.filter-group input:hover {
    border-color: var(--primary-color);
}

/* EVENTS GRID */
.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 0 15px 24px 15px;
}

/* EVENT CARD */
/* EVENT CARD REDESIGN */
.event-card {
    background-color: var(--bg-card-new);
    width: 100%;
    max-width: 340px;
    border-radius: 16px;
    padding: 16px 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
    position: relative;
    display: flex;
    flex-direction: column;
}

.event-card * {
    font-family: 'Roboto', sans-serif;
}

/* --- TOPO: Data e Hora --- */
.header-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.badge {
    padding: 6px 16px;
    border-radius: 6px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.badge-date {
    background-color: var(--color-date);
}

.badge-time {
    background-color: var(--color-time);
}

/* --- TÍTULO --- */
.event-title-new {
    color: var(--color-time);
    font-size: 1.3rem;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(243, 156, 18, 0.3);
    line-height: 1.2;
}

/* --- TAG ROCK --- */
.tag-genre {
    display: inline-block;
    background-color: var(--color-tag);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    margin-top: 6px;
    text-transform: uppercase;
}

.subtitle-new {
    color: #bdc3c7;
    font-style: italic;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* --- LOCAL (88 BIER) --- */
.venue-badge {
    background: var(--gradient-venue-fix);
    color: white;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(255, 75, 43, 0.3);
    text-decoration: none;
}

/* --- ENDEREÇO --- */
.address-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.address-title {
    color: white;
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.address-text {
    color: #bdc3c7;
    font-size: 0.85rem;
}

.address-link {
    color: inherit;
    text-decoration: none;
}

/* --- BOTÃO UBER --- */
.btn-uber {
    background-color: var(--uber-black);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s;
    width: fit-content;
    margin: 0 auto;
}

.btn-uber:hover {
    background-color: #222;
    border-color: white;
}

/* NO RESULTS */
.no-results {
    text-align: center;
    padding: 60px 30px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 2px dashed var(--border-color);
    margin: 0 15px;
}

.no-results-icon {
    font-size: 4em;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--text-light);
}

.no-results p {
    color: var(--text-muted);
    font-size: 1em;
}

.no-events.no-results {
    background: linear-gradient(145deg, var(--bg-card), rgba(10, 17, 23, 0.95));
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    text-align: center;
    padding: 50px 40px;
    max-width: 800px;
    margin: 40px auto;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.no-events.no-results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--success), var(--accent-color));
}

.no-events h2 {
    font-size: 2em;
    background: linear-gradient(90deg, var(--text-light), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.no-events p {
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.no-events strong {
    color: var(--success);
    font-weight: 700;
}

.no-events h3 {
    font-size: 1.3em;
    color: var(--accent-color);
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
}

.no-events ul {
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    padding: 25px 30px;
    border-radius: 16px;
    display: inline-block;
    width: 100%;
    max-width: 600px;
    margin: 10px auto 30px auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
}

.no-events li {
    list-style: none;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    color: var(--text-light);
    font-size: 1.05em;
    line-height: 1.5;
}

.no-events li:last-child {
    margin-bottom: 0;
}

.no-events li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--success);
    font-weight: 900;
    font-size: 1.2em;
}

.no-events a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px dashed rgba(51, 154, 240, 0.5);
    transition: all 0.3s;
    padding-bottom: 2px;
}

.no-events a:hover {
    color: var(--success);
    border-bottom-color: var(--success);
    background: rgba(137, 250, 80, 0.1);
    border-radius: 4px;
    padding: 2px 4px;
    margin: -2px -4px;
    border-bottom: none;
}

.no-events .thanks {
    margin-top: 40px;
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95em;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* LOADING */
.loading {
    display: none;
    text-align: center;
    padding: 40px;
}

.loading.active {
    display: block;
}

.spinner {
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--secondary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* FOOTER */
footer {
    text-align: center;
    padding: 32px 20px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    margin-top: 48px;
    font-size: 0.9em;
    background: var(--bg-main);
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--success);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 20px;
}

.footer-info h3 {
    color: var(--secondary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-info p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: var(--text-secondary);
    font-weight: 600;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--success);
    transform: translateX(5px);
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-contact strong {
    color: var(--secondary-color);
}

.footer-contact a {
    color: var(--text-secondary);
}

.footer-contact a:hover {
    color: var(--success);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: 20px;
    color: var(--text-muted);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9em;
}

/* BOTÃO VOLTAR AO TOPO */
.btn-voltar-topo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(51, 154, 240, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.btn-voltar-topo.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-voltar-topo:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 30px rgba(51, 154, 240, 0.6);
    background: linear-gradient(135deg, var(--success), var(--secondary-color));
}

.btn-voltar-topo:active {
    transform: translateY(-2px) scale(1.05);
}

.btn-voltar-topo svg {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* RESPONSIVIDADE */
@media (min-width: 600px) {
    body {
        font-size: 15px;
    }

    .container {
        padding: 0;
    }

    .filters-container {
        margin: 0 20px 20px 20px;
        padding: 24px 22px;
    }

    .filters-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .filters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .dias-semana-tabs {
        margin: 0 20px 16px 20px;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin: 0 20px 24px 20px;
    }

    .no-results {
        margin: 0 20px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-links ul {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (min-width: 900px) {
    body {
        font-size: 16px;
    }

    .container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .filters-container {
        margin: 0 0 24px 0;
    }

    .dias-semana-tabs {
        margin: 0 0 16px 0;
    }

    .filters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .events-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin: 0 0 32px 0;
    }

    .event-card:hover {
        transform: translateY(-8px) scale(1.01);
    }

    .event-title {
        font-size: 1.2em;
        letter-spacing: 0.75px;
    }

    .no-results {
        margin: 0;
    }

    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
        padding-bottom: 30px;
    }

    .footer-info {
        text-align: left;
    }

    .footer-links {
        text-align: center;
    }

    .footer-contact {
        text-align: right;
    }
}

@media (min-width: 1200px) {
    .filters-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }

    .event-card:hover {
        transform: translateY(-10px) scale(1.02);
    }
}

/* RESPONSIVIDADE NAVBAR */
@media (min-width: 600px),
(orientation: landscape) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .branding {
        justify-content: flex-start;
        flex-shrink: 0;
    }

    .navbar {
        display: flex;
        gap: 16px;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        visibility: visible;
        opacity: 1;
    }

    header {
        padding: 20px 30px;
    }

    .logo {
        max-width: 60px;
        max-height: 60px;
    }

    .plataforma-nome h1 {
        font-size: 1.8em;
    }

    .plataforma-nome p {
        font-size: 0.9em;
    }
}

@media (min-width: 900px) {
    header {
        padding: 24px 40px;
        border-radius: 0 0 24px 24px;
    }

    .logo {
        max-width: 70px;
        max-height: 70px;
    }

    .plataforma-nome h1 {
        font-size: 2.2em;
    }

    .plataforma-nome p {
        font-size: 1em;
    }

    .nav-link {
        font-size: 1em;
        padding: 10px 16px;
    }
}

@media (min-width: 1200px) {
    .plataforma-nome h1 {
        font-size: 2.5em;
    }
}

@media (max-width: 599px) and (orientation: portrait) {
    .navbar {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
        visibility: visible;
        opacity: 1;
    }

    .navbar::-webkit-scrollbar {
        height: 3px;
    }

    .navbar::-webkit-scrollbar-track {
        background: transparent;
    }

    .navbar::-webkit-scrollbar-thumb {
        background: var(--border-color);
        border-radius: 3px;
    }

    .nav-link {
        font-size: 0.85em;
        padding: 8px 12px;
    }

    .btn-voltar-topo {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* Garantir navbar visível em landscape mesmo em telas pequenas */
@media (orientation: landscape) {
    .navbar {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        min-height: 44px;
    }

    .header-container {
        flex-direction: row !important;
        overflow: visible !important;
    }

    .branding {
        flex-shrink: 0;
    }

    header {
        overflow: visible !important;
    }
}

.legal-page {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    margin: 20px auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 900px;
}

.legal-page h1 {
    font-size: 2.5em;
    font-weight: 900;
    background: linear-gradient(90deg, var(--secondary-color), var(--success));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-align: center;
}

.legal-page h2 {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page p {
    color: var(--text-secondary);
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-page a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.legal-page a:hover {
    text-decoration: underline;
}


/* EVENT DETAILS */
.event-details {
    font-size: 0.9em;
    color: var(--text-secondary);
    margin-bottom: 10px;
    padding: 0 5px;
    font-style: italic;
    line-height: 1.4;
    text-align: center;
}

/* ADDRESS LINK */
.address-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.address-link:hover {
    color: var(--text-light);
    background: rgba(51, 154, 240, 0.15);
    border-color: rgba(51, 154, 240, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

/* UBER BUTTON */
.btn-uber {
    background-color: #000000;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85em;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    margin-top: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-uber:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}