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

.gradient-bg {
    background: linear-gradient(135deg, #f0f4ff 0%, #e6eeff 100%);
}

/* Scrollbar moderno e estilizado */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Fundo da barra */
::-webkit-scrollbar-track {
    background: #203552;
    border-radius: 10px;
}

/* Área rolável */
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #2F7C96 0%, #203552 100%);
    border-radius: 10px;
    border: 2px solid #203552;
    transition: all 0.3s ease;
}

/* Hover: mais contraste e leve brilho */
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #3CAAC1 0%, #2F7C96 100%);
}


.gradient-bg {
    background: linear-gradient(135deg, #f0f4ff 0%, #e6eeff 100%);
}

.text-gradient {
    background: linear-gradient(135deg, #3FB5C8 0%, #203451 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Estilos para melhorar a experiência visual */
.text-gradient {
    background: linear-gradient(90deg, #3FB5C8, #213754);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-placeholder {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.btn-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


.btn-hover {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(63, 181, 200, 0.3);
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(32, 52, 81, 0.15);
}

.form-input {
    @apply w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent transition duration-300;
}

.form-input-error {
    @apply border-error ring-2 ring-error/30;
}

.header-shadow {
    transition: box-shadow 0.3s ease;
}

.header-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.bg-sejapay-blue {
    background-image: url(/assets/img/bg_sejapay.webp);
    background-attachment: fixed;
}

.bg-sejapay-white {
    background-image: url(/assets/img/bg_sejapay_white.webp);
    background-attachment: fixed;
}

.white-shadow {
    filter: drop-shadow(1px 1px 1px white);
}