* {
    font-family: "Share Tech Mono", monospace;
    font-weight: 400;
    font-style: normal;
}

#menu h1 {
    color: red;
    font-weight: bold;
}

#menu nav {
    display: flex;
    align-items: center;
    padding-left: 60px;
}

navbar nav a {
    text-decoration: none;
    list-style: none;
    color: black;
}

navbar nav a:hover {
    color: red;
    transition: 0.3s;
    display: flex;
}

.container h1 {
    color: red;
    font-size: 36px;
    padding-left: 20px;
    margin-bottom: 0;
    text-align: center;
}

.container h2 {
    color: indianred;
    font-size: 24px;
    padding-left: 20px;
    margin-bottom: 0;
}

.container p {
    font-size: 20px;
    margin: 0 20px;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    width: 300px;
    margin: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.card img {
    width: 100%;
    height: auto;
}

.card h2 {
    font-size: 20px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 20px;
}

.card p {
    font-size: 16px;
    padding: 10px;
    color: red;
}

.card a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: white;
    background-color: red;
    border-radius: 40px;
    border: 2px solid red;
    font-size: 24px;
    margin: 0 20px;
    margin-top: auto;
}

.card a:hover {
    color: black;
    background-color: white;
    transform: scale(1.2);
    transition: all 0.3s ease-in-out;
}

strong {
    color: red;
}

/* ANIMACOES DE FUNDO, NAO MEXER */
/* ANIMACOES DE FUNDO, NAO MEXER */
/* ANIMACOES DE FUNDO, NAO MEXER */
/* ANIMACOES DE FUNDO, NAO MEXER */
/* ANIMACOES DE FUNDO, NAO MEXER */
/* ANIMACOES DE FUNDO, NAO MEXER */
/* ANIMACOES DE FUNDO, NAO MEXER */
/* ANIMACOES DE FUNDO, NAO MEXER */
/* ANIMACOES DE FUNDO, NAO MEXER */
/* ANIMACOES DE FUNDO, NAO MEXER */
/* ANIMACOES DE FUNDO, NAO MEXER */
/* ANIMACOES DE FUNDO, NAO MEXER */
/* ANIMACOES DE FUNDO, NAO MEXER */
/* ANIMACOES DE FUNDO, NAO MEXER */

.dots-container {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.1);
}

/* Animações diferentes para cada bolinha */
@keyframes float1 {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    50% {
        transform: translate(30px, -120px) scale(1.3);
        opacity: 0.6;
    }
    90% {
        opacity: 0.8;
    }
}

@keyframes float2 {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    50% {
        transform: translate(-40px, -100px) scale(1.1);
        opacity: 0.5;
    }
    90% {
        opacity: 0.7;
    }
}

@keyframes float3 {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    50% {
        transform: translate(20px, -90px) scale(1.4);
        opacity: 0.4;
    }
    90% {
        opacity: 0.9;
    }
}

/* Bolinhas específicas com posições e animações */
.dot:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 10%;
    top: 20%;
    animation: float1 7s infinite ease-in-out;
}
.dot:nth-child(2) {
    width: 20px;
    height: 20px;
    left: 20%;
    top: 60%;
    animation: float2 5s infinite ease-in-out 1s;
}
.dot:nth-child(3) {
    width: 60px;
    height: 60px;
    left: 30%;
    top: 40%;
    animation: float3 8s infinite ease-in-out 2s;
}
.dot:nth-child(4) {
    width: 30px;
    height: 30px;
    left: 40%;
    top: 70%;
    animation: float1 6s infinite ease-in-out 0.5s;
}
.dot:nth-child(5) {
    width: 50px;
    height: 50px;
    left: 50%;
    top: 30%;
    animation: float2 7s infinite ease-in-out 1.5s;
}
.dot:nth-child(6) {
    width: 25px;
    height: 25px;
    left: 60%;
    top: 50%;
    animation: float3 5.5s infinite ease-in-out 3s;
}
.dot:nth-child(7) {
    width: 45px;
    height: 45px;
    left: 70%;
    top: 20%;
    animation: float1 6.5s infinite ease-in-out 2.5s;
}
.dot:nth-child(8) {
    width: 35px;
    height: 35px;
    left: 80%;
    top: 65%;
    animation: float2 7.5s infinite ease-in-out 1s;
}
.dot:nth-child(9) {
    width: 55px;
    height: 55px;
    left: 15%;
    top: 80%;
    animation: float3 8.5s infinite ease-in-out 0.8s;
}
.dot:nth-child(10) {
    width: 28px;
    height: 28px;
    left: 85%;
    top: 35%;
    animation: float1 5.8s infinite ease-in-out 2.2s;
}
.dot:nth-child(11) {
    width: 42px;
    height: 42px;
    left: 25%;
    top: 15%;
    animation: float2 6.2s infinite ease-in-out 3.5s;
}
.dot:nth-child(12) {
    width: 38px;
    height: 38px;
    left: 45%;
    top: 85%;
    animation: float3 7.2s infinite ease-in-out 1.8s;
}
.dot:nth-child(13) {
    width: 22px;
    height: 22px;
    left: 65%;
    top: 45%;
    animation: float1 5.5s infinite ease-in-out 4s;
}
.dot:nth-child(14) {
    width: 48px;
    height: 48px;
    left: 75%;
    top: 75%;
    animation: float2 8s infinite ease-in-out 0.3s;
}
.dot:nth-child(15) {
    width: 32px;
    height: 32px;
    left: 5%;
    top: 50%;
    animation: float3 6.8s infinite ease-in-out 2.8s;
}
.dot:nth-child(16) {
    width: 26px;
    height: 26px;
    left: 90%;
    top: 25%;
    animation: float1 5.2s infinite ease-in-out 1.2s;
}
.dot:nth-child(17) {
    width: 52px;
    height: 52px;
    left: 35%;
    top: 55%;
    animation: float2 7.8s infinite ease-in-out 3.2s;
}
.dot:nth-child(18) {
    width: 36px;
    height: 36px;
    left: 55%;
    top: 10%;
    animation: float3 6.5s infinite ease-in-out 4.5s;
}
.dot:nth-child(19) {
    width: 44px;
    height: 44px;
    left: 12%;
    top: 90%;
    animation: float1 7.3s infinite ease-in-out 0.7s;
}
.dot:nth-child(20) {
    width: 30px;
    height: 30px;
    left: 95%;
    top: 55%;
    animation: float2 6s infinite ease-in-out 2s;
}

.content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: white;
}
