/* Reset básico */ 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Corpo da página */
body {
    font-family: Arial, sans-serif;
    background-color: #000; /* Fundo preto */
    color: #fff; /* Texto branco */
}

/* Headline Section */
.headline {
    background: url('instrumentosHammer.jpg') no-repeat center center; /* Coloque sua imagem aqui */
    background-size: cover;
    height: 400px; /* Altura da seção */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.headline-content {
    text-align: center;
    color: rgb(249, 246, 246); /* Texto vermelho */
    background-color: rgba(0, 0, 0, 0.6); /* Fundo preto semi-transparente */
    padding: 20px;
    border-radius: 10px;
}

.headline h1 {
    font-size: 28px;
}

.cta-button {
    background-color: #c00; /* Vermelho */
    color: #fff; /* Texto branco */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    margin-top: 20px; /* Espaçamento entre o texto e o botão */
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #a00; /* Vermelho escuro */
}

/* Seções de Informação */
.info-section {
    padding: 60px 20px; /* Maior espaçamento */
    background-color: #000; /* Fundo preto */
}

.info-section h2 {
    color: #c00; /* Texto vermelho */
    margin-bottom: 20px;
}

.info-section p, 
.info-section ul {
    color: #fff; /* Texto branco */
    margin-bottom: 20px;
    line-height: 1.6; /* Aumenta o espaçamento entre as linhas de texto */
}

.info-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* Vantagens de Vender na Hammer Section */
.advantages-section {
    background-color: #222; /* Fundo cinza escuro */
    padding: 60px 20px; /* Maior espaçamento */
}

.advantages-section h2 {
    color: #c00; /* Texto vermelho */
    margin-bottom: 20px;
}

.advantages-list {
    list-style-type: none; /* Remove a lista padrão */
    padding: 0;
}

.advantages-list li {
    background-color: #000; /* Fundo preto */
    padding: 15px; /* Maior espaçamento interno */
    margin: 15px 0; /* Maior margem entre itens */
    border-radius: 8px; /* Bordas arredondadas */
    border-left: 5px solid #c00; /* Linha vermelha à esquerda */
    line-height: 1.6; /* Aumenta o espaçamento entre as linhas de texto */
}

/* Localização Section */
.location-section {
    padding: 60px 20px; /* Maior espaçamento */
    background-color: #000; /* Fundo preto */
}

.location-section h2 {
    color: #c00; /* Texto vermelho */
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #000; /* Fundo preto */
    color: #fff; /* Texto branco */
}

/* Botão WhatsApp */
.whatsapp-button {
    display: inline-block;
    background-color: #25D366; /* Verde do WhatsApp */
    color: #c00; /* Texto branco */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.whatsapp-button:hover {
    background-color: #128C7E; /* Verde escuro do WhatsApp */
}
/* Estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ajustes gerais para melhorar a legibilidade e alinhamento */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    padding: 10px;
}

/* Headline Section */
.headline {
    padding: 20px;
    text-align: center;
    background-color: #f8f8f8;
}

.headline h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.headline .cta-button {
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #c00;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

/* Seções de informação (Como Vender, Por Que Vender, Vantagens) */
.info-section {
    padding: 15px;
    margin-bottom: 20px;
}

.info-section h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-align: center;
}

.info-section p, .info-section ul {
    font-size: 1rem;
    margin-bottom: 10px;
}

.info-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* Botões de chamada para ação */
.cta-button {
    font-size: 1rem;
    padding: 10px 20px;
    color: #fff;
    background-color: #c00;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: block;
    text-align: center;
    width: 100%;
    max-width: 300px;
    margin: 10px auto;
}

/* Vantagens */
.advantages-section ul {
    list-style-type: none;
    padding-left: 0;
}

.advantages-section li {
    padding: 8px;
    background-color: #000000;
    margin-bottom: 5px;
    border-radius: 5px;
    font-size: 1rem;
}

/* Localização */
.location-section {
    text-align: center;
    padding: 20px;
}

.location-section h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 5px;
}

/* Footer */
footer {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 20px;
}

/* Media Queries para telas menores */
@media (min-width: 600px) {
    .headline h1 {
        font-size: 2rem;
    }

    .info-section h2 {
        font-size: 1.5rem;
    }

    .cta-button {
        font-size: 1.1rem;
    }
}


