/* Estilo para aplicar a fonte Nunito Sans */
body {
    font-family: 'Nunito Sans', sans-serif;
    background-color: #000000; /* Fundo preto puro */
    color: #F9FAFB; /* text-gray-100 */
    letter-spacing: 0.025em;
}

h1, h2, h3 {
    letter-spacing: -0.02em;
}

/* Cor primária personalizada */
.text-red-primary {
    color: #FF3131;
}
.bg-red-primary {
    background-color: #FF3131;
}
.border-red-primary {
    border-color: #FF3131;
}
.border-red-darker {
    border-color: #b32222;
}
/* Efeito de sombra com a nova cor */
.glow-shadow {
    box-shadow: 0 0 20px rgba(255, 49, 49, 0.4), 0 0 8px rgba(255, 49, 49, 0.3);
}
.cta-button-animation {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.carousel-item {
    transition: opacity 0.5s ease-in-out;
}
.btn-3d {
    transition: all 0.15s ease-out;
}
.btn-3d:active {
    transform: translateY(2px);
    border-bottom-width: 2px;
}
.btn-text-shadow {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
