/* Custom styles and font definitions */
:root {
    --brand-blue: #2A25F2;
    --brand-yellow: #FFCF0B;
    --brand-red: #FF3A20;
    --brand-white: #FFFFFF;
    --brand-dark: #271B43;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--brand-dark);
    color: var(--brand-white);
}

h1, h2, h3, .cta-button {
    /* Usando a fonte 'Luckiest Guy' para um visual divertido e compatível */
    font-family: 'Luckiest Guy', cursive;
    /* Adicionado um leve espaçamento entre as letras para melhor legibilidade */
    letter-spacing: 1px;
}

/* Custom gradient for titles */
.text-gradient-custom {
    background: linear-gradient(45deg, var(--brand-blue), var(--brand-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Custom gradient for buttons */
.bg-gradient-custom {
    background-image: linear-gradient(to right, var(--brand-blue), var(--brand-red));
}

/* New Green Gradient for Checkout Button */
.bg-gradient-green {
    background-image: linear-gradient(to right, #22c55e, #16a34a, #15803d);
}


.card-item {
    background-color: #3a2d5c;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.card-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    border-color: var(--brand-yellow);
}


/* Accordion styles */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
}

.accordion-button.active + .accordion-content {
    max-height: 500px; /* Adjust as needed */
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.accordion-button .icon {
    transition: transform 0.3s ease;
}

.accordion-button.active .icon {
    transform: rotate(180deg);
}

/* Sales Notification Style */
#sales-notification {
    transform: translateY(200%);
    opacity: 0;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

#sales-notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* Pulsating Animation */
.pulsate {
    animation: pulse-bright 2.5s infinite;
}

@keyframes pulse-bright {
    0% {
        transform: scale(1);
        filter: brightness(100%);
    }
    50% {
        transform: scale(1.05);
        filter: brightness(110%);
    }
    100% {
        transform: scale(1);
        filter: brightness(100%);
    }
}
