body {
    font-family: 'Inter', sans-serif;
}

.gradient-bg {
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
}

.card-hover {
    transition: all 0.3s ease;
}

.gray-glow-button {
    box-shadow: 0 0 15px rgba(155, 154, 154, 0.5);
    transition: all 0.3s ease;
}

.gray-glow-button:hover {
    box-shadow: 0 0 20px rgba(85, 85, 85, 0.5);
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    /* Corrigido: posiciona submenu imediatamente abaixo do botão */
    background-color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 0.375rem;
    overflow: hidden;
    z-index: 50;
    min-width: 160px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Estilo para links dentro do dropdown */
.dropdown-content a {
    display: block;
    padding: 0.75rem 1rem;
    /* 12px 16px */
    color: #111;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f3f4f6;
    /* cinza claro */
}

.glow-button {
    box-shadow: 0 0 15px rgba(30, 64, 175, 0.4);
    transition: all 0.3s ease;
}

.glow-button:hover {
    box-shadow: 0 0 20px rgba(30, 64, 175, 0.6);
}

.orange-glow-button {
    box-shadow: 0 0 15px rgba(234, 88, 12, 0.4);
    transition: all 0.3s ease;
}

.orange-glow-button:hover {
    box-shadow: 0 0 20px rgba(234, 88, 12, 0.6);
}

.green-glow-button {
    box-shadow: 0 0 15px rgba(5, 150, 105, 0.4);
    transition: all 0.3s ease;
}

.green-glow-button:hover {
    box-shadow: 0 0 20px rgba(5, 150, 105, 0.6);
}

.purple-glow-button {
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
    transition: all 0.3s ease;
}

.purple-glow-button:hover {
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.6);
}

.yellow-glow-button {
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
    transition: all 0.3s ease;
}

.yellow-glow-button:hover {
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.8);
}

/* Accordion Style */
.accordion-header {
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.open {
    max-height: 500px;
}

/* Notification style */
.notification {
    animation: slideIn 0.5s ease forwards, fadeOut 0.5s ease 5s forwards;
    transform: translateX(120%);
}

@keyframes slideIn {
    to {
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
    }
}

/* Breadcrumbs */
.breadcrumb-item:after {
    content: '/';
    margin: 0 0.5rem;
    color: #9ca3af;
}

.breadcrumb-item:last-child:after {
    content: '';
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    text-align: center;
}

.countdown-segment {
    margin: 0 0.5rem;
    min-width: 3rem;
}

/* Ribbon effect */
.ribbon {
    position: absolute;
    top: 10px;
    right: -10px;
    width: 120px;
    height: 120px;
    overflow: hidden;
    z-index: 10;
}

.ribbon-content {
    position: absolute;
    display: block;
    width: 180px;
    padding: 8px 0;
    background-color: #ea580c;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .2);
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    left: -30px;
    top: 25px;
    transform: rotate(45deg);
}