/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Corpo da página */
body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #2e2e2e;
    padding: 20px;
}

/* Container Principal */
.main-container {
    width: 100%;
    max-width: 900px;
    padding: 20px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Título da Página */
.title {
    font-size: 2.5em;
    color: #ffbb00;
    margin-bottom: 25px;
    text-transform: uppercase;
}

/* Seção de Serviços */
.services-icons {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.service {
    text-align: center;
    width: 100px;
}

.service img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.service p {
    font-size: 0.9em;
    color: #444;
    font-weight: bold;
}

/* Descrição da Academia */
.description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
}

/* Seção de Informações e Imagem */
.info-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 30px;
}

.info {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.info-item h3 {
    font-size: 1.2em;
    color: #e60000;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 0.9em;
    color: #666;
}

/* Imagem da Academia */
.gym-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: 20px;
}

/* Botões de Ação */
.botoes {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 30px;
    flex-wrap: wrap;
}

.register-button {
    display: inline-block;
    background-color: #e60000;
    color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.register-button:hover {
    background-color: #f39e1f;
    transform: translateY(-3px);
}

/* Responsividade para notebooks (telas médias) */
@media (max-width: 1024px) {
    .main-container {
        padding: 15px;
    }
    
    .services-icons {
        gap: 60px;
    }
    
    .info-section {
        gap: 15px;
    }
    
    .botoes {
        gap: 1rem;
    }
}

/* Responsividade para celulares (telas pequenas) */
@media (max-width: 768px) {
    .title {
        font-size: 2em;
    }
    
    .services-icons {
        flex-direction: column;
        align-items: center;
    }
    
    .info-section {
        flex-direction: column;
        align-items: center;
    }
    
    .info {
        width: 100%;
        max-width: 350px;
    }
    
    .botoes {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    
    .register-button {
        width: 100%;
    }
}