
/* reset e fontes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #FFFFFF;
    color: #180B70;
    line-height: 1.6;
    overflow-x: hidden;
}

.custom-right-alignment {
    text-align: center;
}

.nav-color {
    background-color: #FFFFFF;
}

/* Estilo do cabeçalho aprimorado */
header {
    background: linear-gradient(135deg, #F8F9FA, #F8F9FA);
    padding: 100px 20px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* Efeito de partículas no cabeçalho */
header::before,
header::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1%, transparent 20%);
    animation: rotate 10s linear infinite;
    opacity: 0.3;
}
header::after {
    animation-direction: reverse;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

header h1 {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInDown 1.2s ease-out;
}

header .img {
    animation: fadeInDown 1.2s ease-out;
}


header p {
    font-size: 1.4rem;
    margin-top: 10px;
    opacity: 0.9;
    max-width: 700px;
    margin: 10px auto;
    animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Botão no cabeçalho */
header .cta-button {
    background-color: #FB6F20;
    color: #FFFFFF;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(251, 111, 32, 0.4);
    animation: bounceIn 1.8s ease-out;
}


header .cta-button:hover {
    background-color: #F58640;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(251, 111, 32, 0.5);
}

p {
    color: #180B70;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}

.navbar-brand img {
    height: 40px;
}

.nav-item a {
    font-size: 16px;
    color: #007bff;
}

.nav-item a:hover {
    color: #0056b3;
}