@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
    scroll-behavior: smooth;
}

/* Particle animation styles */
.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;

}

.header-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0;
    min-height: 300px;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.header-content h1 {
    color: #fff;
    font-size: 3em;
    font-weight: 700;
    text-align: center;
    margin: 0 0 20px 0;
    animation: fadeInUp 1s ease-out;
}

.header-content p {
    color: #56C0FF;
    font-style: italic;
    font-size: 1.2em;
    text-align: center;
    margin: 0 0 30px 0;
    max-width: 600px;

    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* General styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Source Sans 3', sans-serif;

}

header {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    padding: 20px;
    padding-bottom: 40px;
    box-sizing: border-box;
    width: calc(100% - 40px);
    margin: 0 auto;
    border-radius: 0 0 10px 10px;
    z-index: 1;

}

.participantes h3 {
    color: #1c58c9;
    text-align: left;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3em;
    display: flex;
    align-items: center;
    gap: 10px;
}

main {


    margin: 0 auto;
    z-index: 2;
    position: relative;

    margin-top: -20px;
    background:
        radial-gradient(circle at 20% 30%, rgba(60, 184, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(79, 255, 217, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.8) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    overflow: hidden;
}


main h2,
.foradomain h2 {
    color: #1c58c9;
    margin-bottom: 20px;

    padding-bottom: 10px;
}

main h4 {
    color: #56C0FF;
    margin-bottom: 10px;
}

main a,
header a {
    color: #56C0FF;
    text-decoration: none;
}

header .logo {
    max-width: 500px;
    margin-bottom: 15px;
}

/* Specific classes */
.participantes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
    padding: 0;
}

.professores {
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;


}

.professores li {
    background: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 0.95em;

    transition: all 0.2s ease;
    position: relative;

}

.professores li:hover {
    background: rgba(255, 255, 255, 0.582);
    transform: translateY(-2px);
    border: 2px solid rgba(45, 118, 255, 0.2);
}

.participantes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.participantes li {
    background: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 0.95em;

    transition: all 0.2s ease;
    position: relative;
}

.alunos li::before {
    background: #f9e20f;
    color: #333;
}

.alunos li:last-child {
    padding: 0;
}

.beneficio-exclusivo {
    background: linear-gradient(135deg, rgba(249, 226, 15, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    border-radius: 10px;
    padding: 20px 20px;
    border: 2px solid #f9e20f;
}

.beneficio-exclusivo strong {
    color: #1c58c9;
}

.programa-info {
    background-color: rgba(28, 132, 201, 0.048);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border: 2px solid rgba(86, 192, 255, 0.1);
    padding-top: 5px !important;
    margin-bottom: 80px;
}

.programa-info p:last-child {
    margin-bottom: 0;
}

.beneficios-lista {
    list-style: none;
    padding: 0;
}

.beneficios-lista li {
    background: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 1em;

    transition: all 0.2s ease;
    position: relative;

    display: flex;
    align-items: center;
}

.beneficios-lista li i {
    color: #56C0FF;
    margin-right: 15px;
    font-size: 1.2em;
}

.beneficios-lista li:hover {
    background: rgba(255, 255, 255, 0.582);
    transform: translateY(-2px);
    border: 2px solid rgba(45, 153, 255, 0.2);
}

@media (max-width: 768px) {
    .participantes {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .inscreva-se {
        flex-direction: column;

    }

}


@media (max-width: 1100px) {

    header {
        width: 100%;
        border-radius: 0;
    }

}

.btn {
    padding: 10px 20px;
    background: #f9e20f;
    color: black;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #f9e20f;
    text-transform: uppercase;
    box-sizing: border-box;
    text-decoration: none;
    text-align: center;
}




header .btn:hover {

    color: white;
    transform: translateY(-3px);
}

header .btn i {
    font-size: 0.9em;
}

.btn:hover {
    border: 2px solid #56C0FF;
    background: transparent;
}

.btn:hover {
    text-decoration: none !important;
}

.regulamento a {
    padding: 5px 10px;
    color: white !important;
    text-transform: uppercase;
    text-align: right;
    width: fit-content;
    border-radius: 5px;
    font-size: small;
    transition: all 0.3s ease;
    border: 2px solid #56C0FF;
    box-sizing: border-box;
    font-weight: bold;

}

.regulamento {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.regulamento a:hover {
    color: white !important;
    border: 2px solid #f9e20f;
}

.foradomain {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;

}

.inscreva-se {
    margin: 40px 0;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.inscreva-se a {
    flex: 1;
    width: 100%;
}



/* Estilo para substituir bolinhas por ícones de check na seção Benefícios do Programa */
.foradomain ul {
    list-style: none;
    padding-left: 0;
}

.foradomain ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    border: 2px solid rgba(86, 192, 255, 0.1);
}

main p {
    text-indent: 10px;
}

.foradomain p {
    text-indent: 10px;
}

/* Partículas de dados flutuantes globais */
.data-particles-global {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.data-particles-global .particle {
    position: absolute;
    color: #cbecff;
    font-weight: bold;
    font-size: 18px;
    animation: floatGlobal 12s infinite linear;
    opacity: 0.6;

}

.data-particles-global .particle:nth-child(1) {
    left: 5%;
    animation-delay: 0s;
}

.data-particles-global .particle:nth-child(2) {
    left: 15%;
    animation-delay: 2s;
}

.data-particles-global .particle:nth-child(3) {
    left: 25%;
    animation-delay: 4s;
}

.data-particles-global .particle:nth-child(4) {
    left: 35%;
    animation-delay: 1s;
}

.data-particles-global .particle:nth-child(5) {
    left: 45%;
    animation-delay: 6s;
}

.data-particles-global .particle:nth-child(6) {
    left: 55%;
    animation-delay: 3s;
}

.data-particles-global .particle:nth-child(7) {
    left: 65%;
    animation-delay: 8s;
}

.data-particles-global .particle:nth-child(8) {
    left: 75%;
    animation-delay: 5s;
}

.data-particles-global .particle:nth-child(9) {
    left: 85%;
    animation-delay: 7s;
}

.data-particles-global .particle:nth-child(10) {
    left: 10%;
    animation-delay: 9s;
}

.data-particles-global .particle:nth-child(11) {
    left: 30%;
    animation-delay: 11s;
}

.data-particles-global .particle:nth-child(12) {
    left: 50%;
    animation-delay: 1.5s;
}

.data-particles-global .particle:nth-child(13) {
    left: 70%;
    animation-delay: 3.5s;
}

.data-particles-global .particle:nth-child(14) {
    left: 90%;
    animation-delay: 5.5s;
}

.data-particles-global .particle:nth-child(15) {
    left: 20%;
    animation-delay: 7.5s;
}

@keyframes floatGlobal {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    5% {
        opacity: 0.6;
    }

    85% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-1000px) rotate(360deg);
        opacity: 0;
    }
}

.realizado{
    margin: 0 auto;
    max-width: 200px;
    margin-bottom: 50px;
}

.realizado p{
    margin-bottom: 5px;
    font-weight: bold;
}