/* style.css - Design Moderno Fitness */

/* Cores: #1a73e8 (Azul principal), #f44336 (Vermelho/Destaque), #222 (Preto/Fundo) */

/* Estilos Globais e Reset Básico */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
    line-height: 1.6;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
/* Header/Navegação */
header {
    background-color: #222; /* Preto */
    color: white;
    padding: 1em 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; 
}
nav h1 {
    margin: 0;
    font-size: 1.8em;
    color: #f44336; /* Vermelho/Destaque */
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
nav ul li {
    margin-left: 25px;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: #1a73e8; /* Azul principal */
}

/* Seção Principal (Hero) */
#hero {
    background-color: #333; /* Fundo escuro para impacto */
    color: white;
    padding: 8em 0;
    text-align: center;
    /* Adicione uma imagem de fundo forte na pasta 'img' para um visual fitness */
    /* background-image: url('../img/fitness-hero.jpg'); */ 
    background-size: cover;
    background-position: center;
}
#hero h2 {
    font-size: 3.5em;
    margin-bottom: 0.2em;
    text-transform: uppercase;
    line-height: 1.1;
}
#hero .subtitle {
    font-size: 1.2em;
    margin-top: 1.5em;
    font-style: italic;
    color: #ccc;
}
.cta-button {
    display: inline-block;
    background-color: #f44336; /* Vermelho forte */
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 2em;
    transition: background-color 0.3s, transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}
.cta-button:hover {
    background-color: #e53935;
    transform: translateY(-2px);
}

/* Seções de Conteúdo */
section {
    padding: 4em 0;
    text-align: center;
}
section h2 {
    font-size: 2.2em;
    margin-bottom: 1.5em;
    color: #222;
}

/* Serviços */
#services {
    background-color: white;
}
.service-card {
    display: flex;
    justify-content: space-between;
    margin-top: 2em;
    gap: 30px;
}
.card {
    flex: 1;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.card h3 {
    color: #1a73e8; /* Azul */
    margin-top: 0;
    text-transform: uppercase;
}

/* Objetivos e CTA Secundário */
#goals {
    background-color: #e3f2fd; /* Azul muito claro */
}
.goal-list {
    max-width: 800px;
    margin: 0 auto;
}
.goal-list ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.goal-list ul li {
    background-color: white;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid #1a73e8;
    color: #333;
    font-weight: bold;
}
.secondary-cta {
    background-color: #1a73e8; /* Azul */
    color: white;
    margin-top: 2em;
}
.secondary-cta:hover {
    background-color: #0d47a1;
}

/* Contato/Formulário */
#contact form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}
#contact input, 
#contact textarea {
    padding: 15px;
    width: 100%;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; 
}
#contact button.primary-button {
    width: 100%;
    background-color: #f44336; 
    color: white;
    margin-top: 5px;
}

/* Depoimentos */
#testimonials {
    background-color: #222;
    color: white;
}
#testimonials h2 {
    color: white;
}
.testimonial-grid {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 2em;
}
.testimonial-card {
    flex: 1;
    padding: 30px;
    background-color: #333;
    border-radius: 8px;
    text-align: left;
    border-left: 5px solid #1a73e8;
}
.testimonial-card p {
    font-style: italic;
    font-size: 1.1em;
}
.testimonial-card cite {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #f44336;
}

/* Rodapé */
footer {
    background-color: #111;
    color: #aaa;
    padding: 1.5em 0;
    text-align: center;
    font-size: 0.85em;
}

/* Responsividade */
@media (max-width: 768px) {
    .service-card, .testimonial-grid {
        flex-direction: column;
    }
    .card, .testimonial-card {
        width: 100%;
        margin-bottom: 20px;
    }
    nav {
        flex-direction: column;
    }
    nav h1 {
        margin-bottom: 10px;
    }
    nav ul {
        flex-direction: column;
    }
    nav ul li {
        margin: 5px 0;
    }
    #hero h2 {
        font-size: 2.5em;
    }
    .goal-list ul {
        flex-direction: column;
    }
    .goal-list ul li {
        width: 80%;
        margin: 5px auto;
    }
}