* {
    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: #F2F2F2;
}

.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);
}

.atividades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 30px;
  justify-items: center;
}

.atividade {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.icon {
  width: 12.5rem;
  height: 12.5rem;
  border-radius: 50%;
  margin-bottom: 10px;
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
}

.futebol {
  background-color: #007c72;
  background-image: url('icons/futebol.svg');
}

.yoga {
  background-color: #e5b700;
  background-image: url('icons/yoga.svg');
}

.fitness {
  background-color: #d72638;
  background-image: url('icons/fitness.svg');
}

.caminhada {
  background-color: #007c72;
  background-image: url('icons/caminhada.svg');
}

.guitarra {
  background-color: #e5b700;
  background-image: url('icons/guitarra.svg');
}

.danca {
  background-color: #d72638;
  background-image: url('icons/danca.svg');
}

.atividade p {
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0;
  color: #262626;
}

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