:root {
    --preto: #000000;
    --branco: #FFFFFF;
    --cinza: #F2F2F2;
    --amarelo-destaque: #FFFF00; /* Amarelo Vibrante */
    --azul-logo: #0057FF; /* Cor principal do logo para referência */
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-color: var(--branco);
    color: var(--preto);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
}

.header {
    background-color: var(--branco);
    padding: 1rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* NOVO ESTILO PARA O LOGO */
.logo {
    height: 80px; /* Ajuste a altura conforme necessário */
    width: auto;
}

.nav a {
    color: var(--preto);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
}

.nav .contact-button {
    background-color: var(--preto);
    color: var(--branco);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    transition: background-color 0.3s;
}
.nav .contact-button:hover {
    background-color: #333;
}


.hero {
    padding: 6rem 2.5rem;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin: 0;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1.5rem auto 0;
    line-height: 1.5;
}

.container {
    padding: 6rem 2.5rem;
}

.service-intro {
    max-width: 700px;
    margin-bottom: 4rem;
    text-align: left; /* Alinhado à esquerda para o estilo moderno */
}

.service-intro h2 {
    font-size: 2.8rem;
    line-height: 1.2;
}

.highlight {
    color: var(--preto);
    background-color: var(--amarelo-destaque);
    padding: 0 0.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: left;
}

.service-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--cinza);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--amarelo-destaque); /* Cor do preenchimento */
    -webkit-text-stroke: 1px var(--preto); /* Borda preta */
    text-stroke: 1px var(--preto); /* Borda preta para outros navegadores */
}

.service-card h4 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.simulator-section {
    background-color: var(--cinza);
    text-align: center;
}

.simulator-content {
    max-width: 700px;
    margin: auto;
}

.simulator-content h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.simulator-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.mcmv-highlight {
    font-weight: 700;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap; /* Para telas menores */
}

.cta-button {
    padding: 1rem 2rem;
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.2s;
    border: 2px solid var(--preto);
}

.cta-button.primary {
    background-color: var(--preto);
    color: var(--branco);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--preto);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


.disclaimer {
    font-size: 0.8rem;
    margin-top: 2rem;
    opacity: 0.7;
}

.portfolio-showcase {
    background-color: var(--preto);
    color: var(--branco);
    padding: 6rem 2.5rem;
    text-align: center;
}

.portfolio-showcase h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

.portfolio-image-placeholder {
    background-color: #333;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}
.portfolio-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a imagem cobrir todo o espaço sem distorcer */
    border-radius: 8px; /* Mantém as bordas arredondadas */
}

.footer {
    padding: 6rem 2.5rem;
    text-align: center;
    background-color: var(--amarelo-destaque);
}

.footer h2 {
    font-size: 2.8rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.email-link {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--preto);
    text-decoration: none;
    border-bottom: 2px solid var(--preto);
    margin-bottom: 2rem;
}

.copyright {
    margin-top: 4rem;
    font-size: 0.9rem;
}
