/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%; /* 1rem = 16px */
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif; /* Fonte similar ao site */
    line-height: 1.5;
    color: #4a4a4a; /* Cinza escuro */
    background-color: #f7f7f7; /* Fundo branco suave */
    margin: 0;
    padding: 0 1rem; /* Espaçamento interno nas laterais do corpo */
}

/* Cabeçalho */
header {
    background: #1a1a1a; /* Preto */
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
    font-weight: 300;
}

header nav {
    margin-top: 1.5rem;
}

header nav a {
    color: #ffcc00; /* Amarelo vibrante */
    text-decoration: none;
    font-size: 1rem;
    margin: 0 1rem;
    font-weight: 500;
}

header nav a:hover,
header nav a:focus {
    text-decoration: underline;
}

/* Conteúdo principal */
main {
    max-width: 800px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

main h2 {
    font-size: 2rem;
    color: #1a1a1a; /* Preto */
    margin-bottom: 1rem;
    font-weight: 600;
}

main p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

main img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

/* Botão de chamada para ação */
.cta-button {
    display: inline-block;
    background: #ffcc00; /* Amarelo vibrante */
    color: #1a1a1a; /* Preto */
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: background 0.3s ease;
}

.cta-button:hover,
.cta-button:focus {
    background: #ffc107; /* Amarelo mais claro */
}

/* Rodapé */
footer {
    background: #1a1a1a; /* Preto */
    color: white;
    text-align: center;
    padding: 1.5rem 1rem;
    margin-top: 2rem;
    font-size: 0.9rem;
}

footer a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover,
footer a:focus {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    main {
        margin: 1.5rem 1rem; /* Reduz a margem externa nas laterais em telas menores */
        padding: 1.5rem; /* Ajusta o espaçamento interno para telas pequenas */
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
}