/* General Styles */
body {
    font-family: 'Arial', sans-serif; /* Usarei Arial como fallback, idealmente inspecionar fonte do site exemplo ou usar uma similar do Google Fonts */
    margin: 0;
    padding: 0;
    background-color: #121212; /* Fundo escuro principal */
    color: #ffffff; /* Texto branco */
    line-height: 1.6;
}

header {
    text-align: center;
    padding: 40px 20px;
    background-color: #1a1a1a; /* Um pouco mais claro que o body para distinção */
}

header h1 {
    font-size: 2.5em;
    color: #f0c14b; /* Amarelo/Dourado para destaque */
    margin: 0;
    line-height: 1.2;
}

main {
    padding: 0 20px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 30px 0;
}

.hero img {
    max-width: 300px; /* Ajustar conforme necessário */
    height: auto;
    border-radius: 50%; /* Imagem circular como no exemplo */
    border: 5px solid #f0c14b; /* Borda dourada na imagem */
    margin-bottom: 20px;
}

.hero .experience {
    font-size: 1.1em;
    max-width: 600px;
    margin: 0 auto;
    padding: 15px;
    border-left: 4px solid #f0c14b;
    background-color: #1f1f1f;
}

.hero .experience strong {
    color: #f0c14b;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #1a1a1a;
    margin-top: 30px;
}

.cta-section h2 {
    font-size: 2em;
    color: #f0c14b;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 20px auto;
}

.cta-button {
    display: inline-block;
    background-color: #f0c14b; /* Botão dourado */
    color: #121212; /* Texto escuro no botão */
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #d8ab3f; /* Cor mais escura no hover */
}

/* Benefits Section */
.benefits {
    padding: 40px 20px;
    text-align: center;
}

.benefits h3 {
    font-size: 1em;
    color: #f0c14b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.benefits h2 {
    font-size: 2em;
    color: #ffffff;
    margin-bottom: 30px;
}

.benefits ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.benefits li {
    font-size: 1.1em;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.benefits .checkmark {
    color: #f0c14b; /* Checkmark dourado */
    margin-right: 10px;
    font-size: 1.2em;
    line-height: 1.3; /* Alinhar melhor com o texto */
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 75px; /* Aumentado de 60px */
    height: 75px; /* Aumentado de 60px */
    bottom: 70px; /* Aumentado de 40px para subir mais */
    right: 40px;
    background-color: #25D366; /* Cor oficial do WhatsApp */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px; /* Mantido, pois o ícone que dá a percepção de tamanho */
    box-shadow: 3px 3px 6px #777; /* Sombra um pouco mais pronunciada */
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease-in-out; /* Adiciona transição suave */
}

.whatsapp-float:hover {
    transform: scale(1.1); /* Efeito de zoom no hover para mais destaque */
}

.whatsapp-float img {
    width: 45px; /* Aumentado de 35px */
    height: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    .hero img {
        max-width: 200px;
    }

    .cta-section h2, .benefits h2 {
        font-size: 1.8em;
    }

    .cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }

    .whatsapp-float {
        width: 65px; /* Ajustado de 50px */
        height: 65px; /* Ajustado de 50px */
        bottom: 50px; /* Ajustado de 20px para subir mais */
        right: 30px; /* Ajustado de 20px */
    }

    .whatsapp-float img {
        width: 38px; /* Ajustado de 28px */
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.6em;
    }

    .hero .experience, .cta-section p, .benefits li {
        font-size: 1em;
    }

    .cta-section h2, .benefits h2 {
        font-size: 1.5em;
    }
    /* Para telas muito pequenas, o botão do WhatsApp pode manter o tamanho do breakpoint anterior (768px) 
       ou ser ligeiramente reduzido se necessário, mas a prioridade é visibilidade. 
       Os valores de 65px/38px para o botão/ícone e bottom:50px devem funcionar bem. */
}

