* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f6f8;
}

/* Fundo com a Estátua bem suave */
.fundo-estatua {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./01/img/PR\ CICO.PNG');
    background-size: cover;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.92);
    background-blend-mode: lighten;
    z-index: -1;
}

.container {
    text-align: center;
    padding: 40px;
    max-width: 900px;
    width: 100%;
}

.logo-header {
    margin-bottom: 20px;
}

.logo-img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.titulo {
    font-size: 2.2rem;
    font-weight: 800;
    color: #222;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.subtitulo {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    margin: 10px 0 50px 0;
}

/* Grade de Projetos */
.grade-projetos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card-projeto {
    text-decoration: none;
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #eaeaea;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Numeração do projeto */
.numero-projeto {
    font-size: 3.5rem;
    font-weight: 800;
    color: #e0e0e0;
    line-height: 1;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.card-projeto h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-projeto p {
    font-size: 0.9rem;
    color: #777;
}

/* Hover dos cards */
.card-projeto:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.card-projeto:hover .numero-projeto {
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

/* Cores específicas de cada projeto no hover */
.projeto-1:hover { background: #d52b1e; }
.projeto-1:hover h2, .projeto-1:hover p { color: #fff; }
.projeto-1:hover .numero-projeto { background-image: linear-gradient(135deg, #ffb3a7, #fff); }

.projeto-2:hover { background: #002c5f; }
.projeto-2:hover h2, .projeto-2:hover p { color: #fff; }
.projeto-2:hover .numero-projeto { background-image: linear-gradient(135deg, #4f8bd5, #fff); }

.projeto-3:hover { background: #333; }
.projeto-3:hover h2, .projeto-3:hover p { color: #fff; }
.projeto-3:hover .numero-projeto { background-image: linear-gradient(135deg, #888, #fff); }

.projeto-4:hover { background: #6a1b9a; }
.projeto-4:hover h2, .projeto-4:hover p { color: #fff; }
.projeto-4:hover .numero-projeto { background-image: linear-gradient(135deg, #d5a6ff, #fff); }

.projeto-5:hover { background: #009739; }
.projeto-5:hover h2, .projeto-5:hover p { color: #fff; }
.projeto-5:hover .numero-projeto { background-image: linear-gradient(135deg, #79e6a0, #fff); }

.projeto-6:hover { background: #ffc700; }
.projeto-6:hover h2, .projeto-6:hover p { color: #333; }
.projeto-6:hover .numero-projeto { background-image: linear-gradient(135deg, #c29a00, #fff); }

/* Rodapé */
.rodape {
    margin-top: 60px;
    font-size: 0.8rem;
    color: #aaa;
}

/* Responsividade */
@media (max-width: 768px) {
    .grade-projetos {
        grid-template-columns: repeat(2, 1fr);
    }
    .titulo {
        font-size: 1.6rem;
    }
}

@media (max-width: 500px) {
    .grade-projetos {
        grid-template-columns: 1fr;
    }
    .logo-img {
        max-width: 250px;
    }
}

.creditos-central {
    margin-top: 80px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    color: #aaa;
}
.creditos-central strong {
    color: #666;
}