* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    height: 100vh;
    width: 100%;
}

header {
    background-color: #C8102E;
    padding: 20px 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 70px;
    width: auto;
}

header h1 {
    color: #111111;
}

li {
    display: inline-block;
}

li a {
    color: white;
    font-size: 18px;
    font-weight: 440px;
    margin-right: 25px;
    text-decoration: none;
}

li a:hover {
    color: black;
    transform: scale(5);
}

button {
    width: auto;
    color: #000000;
    font-size: 16px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;
}

button:hover {
    transform: scale(1.05);
}

body {
    margin: 0;
    background-color: #fdf6e4;
}

.atividades {
    align-items: center;
    padding: 30px;
}

.atividades img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 220px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.atividades-texto h1 {
    font-family: 'Georgia', serif;
    font-size: 3rem;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 80%;
    margin: 0 auto;
}

.grid-item {
    height: 150px;
    position: relative;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 16px;
    transition: all 0.3s ease;
    color: #1a1a1a;
    text-align: justify;
}

.grid-item h3 {
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    text-align: right;
    position: static;
    transform: none;
    color: #0D1C3F;
    margin-bottom: 10px;
}

.grid-item:hover {
    transform: scale(1.05);
}

.icone-futebol {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    left: 14px;
    display: flex;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background-color: #007c72;
    background-image: url('icons/futebol.svg');
}

.icone-yoga {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    left: 14px;
    display: flex;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background-color: #e5b700;
    background-image: url('icons/yoga.svg');
}

.icone-fitness {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    left: 14px;
    display: flex;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background-color: #d72638;
    background-image: url('icons/fitness.svg');
}

.icone-caminhadas {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    left: 14px;
    display: flex;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background-color: #007c72;
    background-image: url('icons/caminhada.svg');
}

.icone-guitarra {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    left: 14px;
    display: flex;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background-color: #e5b700;
    background-image: url('icons/guitarra.svg');

}

.icone-danca {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    left: 14px;
    display: flex;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background-color: #d72638;
    background-image: url('icons/danca.svg');
}

.ver-mais {
    margin: 10px;
    text-align: right;
    position: static;
    color: #1B2336;
    cursor: pointer;
}

.grid-item:hover .ver-mais {
    text-decoration: underline;
}