* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #0B2027;
}

/* Seção 1: Hero com Formulário */
.hero-section {
    background-color: #A3B18A;
    background-image: url('bg.jpeg');
    background-size: 100% 80vh; /* Mantendo a altura original de 80vh */
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Para garantir que o conteúdo seja legível sobre a imagem */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(58, 90, 64, 0.7);
    z-index: 1;
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    max-width: 200px;
    z-index: 2; /* Garantindo que o logo fique acima da camada de sobreposição */
}

.logo img {
    width: 100%;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin-top: 40px;
    position: relative;
    z-index: 2; /* Garantindo que o conteúdo fique acima da camada de sobreposição */
}

.hero-text {
    flex: 1;
    padding-right: 40px;
}

.hero-text h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.form-container {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, select {
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    background-color: #FFFFFF;
}

.cta-button {
    background-color: #E07A5F;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #D06A4F;
}

/* Seção 2: Boost Traffic */
.boost-section {
    background-color: #ffffff;
    padding: 60px 20px;
}

.boost-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.boost-image {
    flex: 1;
    padding-right: 40px;
}

.boost-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.boost-text {
    flex: 1;
}

.boost-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #0B2027;
    line-height: 1.2;
}

.boost-text ul {
    list-style-type: none;
    margin-bottom: 30px;
}

.boost-text li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.boost-text li:before {
    content: "•";
    color: #3A5A40;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Seção 3: Learn How to Start */
.learn-section {
    background-color: #A3B18A;
    padding: 60px 20px;
}

.learn-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.learn-text {
    flex: 1;
    padding-right: 40px;
    color: #0B2027;
}

.learn-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.learn-text p {
    margin-bottom: 30px;
    font-size: 16px;
}

.learn-image {
    flex: 1;
}

.learn-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ebook-cover {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    /* Removendo bordas e efeitos */
    border-radius: 0;
    box-shadow: none;
    background-color: transparent;
}

/* Footer */
footer {
    background-color: #0B2027;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text {
    max-width: 60%;
}

.footer-text p {
    font-size: 16px;
    margin: 0;
}

.footer-button {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #E9C46A;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.footer-button:hover {
    background-color: #E9C46A;
    color: #0B2027;
}

.footer-logo {
    max-width: 200px;
}

.footer-logo img {
    width: 100%;
    filter: brightness(0) invert(1);
}

.footer-button {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #E9C46A;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.footer-button:hover {
    background-color: #E9C46A;
    color: #0B2027;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content, .boost-content, .learn-content {
        flex-direction: column;
    }
    
    .hero-text, .boost-image, .learn-text {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .hero-text h1, .boost-text h2, .learn-text h2 {
        font-size: 1.8rem;
    }
}


/* Estilos para o formulário MailerLite */
#mlb2-28888430.ml-form-embedContainer {
    box-sizing: border-box;
    width: 100% !important;
    margin: 0;
    padding: 0;
}

#mlb2-28888430.ml-form-embedContainer .ml-form-embedWrapper {
    background-color: transparent;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}

#mlb2-28888430.ml-form-embedContainer .ml-form-embedBody {
    padding: 0;
}

#mlb2-28888430.ml-form-embedContainer .ml-form-embedBody .ml-form-fieldRow {
    margin: 0 0 15px 0;
    width: 100%;
}

#mlb2-28888430.ml-form-embedContainer .ml-form-embedBody .ml-form-fieldRow input {
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    background-color: #FFFFFF;
    color: #0B2027;
    width: 100%;
    box-sizing: border-box;
}

#mlb2-28888430.ml-form-embedContainer .ml-form-embedBody .ml-form-embedSubmit button {
    background-color: #E07A5F !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 15px 20px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100% !important;
}

#mlb2-28888430.ml-form-embedContainer .ml-form-embedBody .ml-form-embedSubmit button:hover {
    background-color: #D06A4F !important;
}

#mlb2-28888430.ml-form-embedContainer .ml-form-successBody {
    padding: 20px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
}

#mlb2-28888430.ml-form-embedContainer .ml-form-successBody h4 {
    color: white;
    font-size: 22px;
    margin-bottom: 10px;
}

#mlb2-28888430.ml-form-embedContainer .ml-form-successBody p {
    color: white;
    font-size: 16px;
}

/* Ajuste para manter a aparência do botão consistente */
.ml-form-embedSubmit .cta-button {
    width: 100%;
}

/* Estilo para a headline do formulário */
.form-headline {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}