@font-face {
  font-family: 'all-round-gothic';
  src: url('assets/fonts/all-round-gothic-regular.otf') format('opentype');
  font-weight: 400; /* Regular */
  font-style: normal;
}

@font-face {
  font-family: 'all-round-gothic';
  src: url('assets/fonts/all-round-gothic-bold.otf') format('opentype');
  font-weight: 700; /* Bold */
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('assets/fonts/montserrat-semi-bold.ttf') format('woff2'),
       url('assets/fonts/montserrat-semi-bold.ttf') format('woff');
  font-weight: 600; /* SemiBold */
  font-style: normal;
}


/* --- Cores e Estilos Base --- */
:root {
    --inami-blue-dark: #003366;
    --inami-blue-light: #007bff;
    --text-dark: #0f2e53f;
    --text-light: #0f2e53f;
    --background-light: #f4f4f4;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'all-round-gothic', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-padding {
    padding: 60px 0;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
h1{
    font-weight: bold;
    font-family: 'all-round-gothic', sans-serif;
    font-size: 2rem; /* Aumenta o tamanho da fonte */
    font-weight: 9000px; /* Deixa o negrito ainda mais forte */
    color: var(--inami-blue-dark);
}


h2{
    font-weight: bold;
    font-family: 'all-round-gothic', sans-serif;
    font-size: 22px; /* Aumenta o tamanho da fonte */
    font-weight: 9000px; /* Deixa o negrito ainda mais forte */
    color: var(--inami-blue-dark);
}

h3 {
    font-weight: bold;
    font-family: 'all-round-gothic', sans-serif;
    font-size: 15px; /* Aumenta o tamanho da fonte */
    font-weight: 9000px; /* Deixa o negrito ainda mais forte */
    color: var(--inami-blue-dark);
}

/* --- Seção de Banner Principal (Primeiro Bloco) --- */
.ebook-page-banner {
    background-image: url('assets/fundo-cinza.png');
    background-color: rgba(0, 0, 0, 0.4);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: right;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}


/* Adicione este novo bloco de código para a forma lateral */
.ebook-page-banner::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to right, #5dc3ed, #0a2243); /* Cor azul clara, você pode ajustar */
     background-color: rgba(0, 0, 0, 0.4); /* Cor preta com 40% de opacidade */
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}


.banner-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.banner-text-content {
    flex: 1;
    text-align: left;
}
.inami-logo {
    width: 150px;
    margin-bottom: 20px;
}
.ebook-header h1 {
    font-size: 1rem; /* Tamanho maior para o título */
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff; /* Cor do texto alterada para branco */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Sombra para destacar */
}
.color-divider {
    height: 18px; /* Barra um pouco mais grossa */
    background: linear-gradient(to right, #5dc3ed, #0a2243); /* Novo gradiente de cor (laranja/amarelo) */
    width: 100%;
    margin: 20px 0;
    border: 2px solid white; /* Adiciona uma borda branca de 2px de espessura */
}
.ebook-list {
    list-style: none;
    margin-bottom: 30px;
}
.ebook-list li {
    font-size: 1.5rem; /* Aumenta o tamanho da fonte da lista */
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #fff; /* Cor da lista alterada para branco */
}
.arrow-icon {
       content: "";
    display: inline-block;
    width: 40px; /* Largura para achatamento */
    height: 15px; /* Altura para achatamento */
    background: linear-gradient(to right, #eaa304, #d12a14);
    border: 2px solid white;
    border-radius: 20px; /* Grande o suficiente para arredondar as bordas */
    margin-right: 15px;
    vertical-align: middle;
}

.arrow-icon2 {
       content: "";
    display: inline-block;
    width: 40px; /* Largura para achatamento */
    height: 15px; /* Altura para achatamento */
    background: linear-gradient(to right, #8fb83d, #3b6822);
    border: 2px solid white;
    border-radius: 20px; /* Grande o suficiente para arredondar as bordas */
    margin-right: 15px;
    vertical-align: middle;
}
.btn-primary {
    display: inline-block;
    padding: 15px 40px; /* Aumenta o padding para o botão ficar maior */
    background: linear-gradient(to right, #5dc3ed, #0a2243);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    border: 2px solid white; /* Adiciona uma borda branca de 2px de espessura */
    font-size: 1.2rem; /* Adiciona esta linha para aumentar o tamanho da fonte */
}
.btn-primary:hover {
    background: linear-gradient(to right, #0a2243, #5dc3ed);
}

.banner-image-content {
    flex: 1.5;
    text-align: right; /* Esta linha já é suficiente para alinhar a imagem à direita */
}
.banner-image {
    max-width: 130%;
    height: auto;
}

/* --- Seção "O que você irá aprender" (Segundo Bloco) --- */
#aprender {
    background-image: url('assets/fundo-cinza.png'); /* Adicione o caminho da sua imagem */
    background-size: cover; /* Faz a imagem cobrir toda a área */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita que a imagem se repita */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding: 20px 0;
    align-items: center;

}
.section-title {
    display: inline-block;
    padding: 12px 50px; /* Aumenta o padding para o botão ficar maior */
    background: linear-gradient(to right, #5dc3ed, #0a2243);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    font-size: 2rem; /* Adiciona esta linha para aumentar o tamanho da fonte */
    align-items: center;
    margin-bottom: 60px;
    box-shadow: 0 15px 4px rgba(1, 1, 0, 0.3); /* Sombra no bloco */
    margin-top: -00px; /* Ajusta a margem superior para sobrepor o bloco */
}
.conteudo-grid {
    display: flex;
    justify-content: left;
    gap: 60px;
    position: relative;
    /* Esta linha é crucial para o posicionamento do divisor */
}
.conteudo-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%; /* Posiciona o divisor no centro */
    transform: translateX(-50%); /* Ajusta o posicionamento exato */
    width: 12px; /* Largura do divisor */
    height: 100%;
    background: linear-gradient(to bottom, #5dc3ed, #0a2243); /* Gradiente vertical */
    border: 2px solid white; /* Borda branca */
    border-radius: 3px;
}
.conteudo-item h3 {
    color: var(--inami-blue-dark);
    margin-bottom: 15px;
}
.conteudo-item ul {
    list-style: none;
}
.conteudo-item li {
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: 600; /* Define o negrito como SemiBold */
    font-family: 'Montserrat', sans-serif; /* Aplica a fonte Montserrat */
    font-size: 17px; /* Tamanho da fonte */
    color: var(--inami-blue-dark);
    text-align: left; /* Garante o alinhamento à esquerda */
}

.conteudo-item li::before {
    content: "•";
    color: var(--inami-blue-dark);
    font-weight: bold;
    display: inline-block;
    width: 1.5em;
    margin-left: -1.5em;
    text-align: left; /* Garante que a bolinha também esteja à esquerda */
}

/* --- Seção de Formulário (Terceiro Bloco) --- */
#formulario {
    background-image: url('assets/fundo-cinza.png'); /* Adicione o caminho da sua imagem */
    background-size: cover; /* Faz a imagem cobrir toda a área */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita que a imagem se repita */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--inami-blue-dark);
    padding: 20px 0;
}
.form-container-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.form-content {
    flex: 1;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    color: var(--text-dark);
}
.form-content h3 {
    color: var(--inami-blue-dark);
    margin-bottom: 30px;
}
.form-ebook {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
    color:#000000;
    
}
.form-ebook input {
    width: 100%;
    padding: 12px;
   
    border: 1px solid #ccc;
    background: linear-gradient(to right, #5dc3ed, #0a2243);
}
.form-terms {
    font-size: 0.8rem;
    color: #525050;
    margin-top: 10px;
}
.form-terms a {
    color: var(--inami-blue-light);
    text-decoration: none;
}
.btn-submit {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to right, #5dc3ed, #0a2243);
    color: var(--background-light);
    text-decoration: none;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.btn-submit:hover {
    background: linear-gradient(to right, #0a2243, #5dc3ed);
}
.form-image {
    flex: 1;
    text-align: center;
}
.form-image img {
    max-width: 150%;
}

/* --- Responsividade --- */
@media (max-width: 768px) {
    .banner-grid,
    .conteudo-grid,
    .form-container-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .banner-text-content,
    .banner-image-content,
    .conteudo-item,
    .form-content,
    .form-image {
        flex: 1;
        max-width: 100%;
    }
    .ebook-page-banner h1 {
        font-size: 2rem;
    }
    .ebook-cover {
        width: 200px;
    }
    .ebook-list li {
        text-align: left;
    }
}

/* Estilo para a logo no final da segunda seção */
.inami-footer-logo {
    display: block;
    width: 80px; /* Ajuste o tamanho conforme necessário */
    margin: 40px auto 0 auto; /* Centraliza horizontalmente e adiciona espaço em cima */
}
.form-ebook input {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    color: #0a2243; /* Altera a cor do texto digitado para azul escuro */
    font-weight: bold;
}

.form-ebook input::placeholder {
    color: #0a2243; /* Altera a cor do placeholder para cinza claro */
    font-weight: bold;
     font-style: italic;
}

/* --- Estilos para a nova página de downloads --- */
#downloads-page {
    background-image: url('Assets/fundo-cinza.png');
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.downloads-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 60px;
    position: relative; /* Essencial para o posicionamento do divisor */
}

/* Adiciona a linha de divisão vertical */
.downloads-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 100%;
    background: linear-gradient(to bottom, #5dc3ed, #0a2243);
    border: 2px solid white;
    border-radius: 3px;
}

.download-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    flex: 1;
    max-width: 400px;
    text-align: left;
    z-index: 1; /* Garante que os itens fiquem acima da linha */
}

.download-cover {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.download-title {
    color: var(--inami-blue-dark);
    font-family: 'all-round-gothic', sans-serif;
    font-weight: bold;
    margin-bottom: 15px;
}

.download-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #555;
    margin-bottom: 25px;
}

/* Garante que o botão de download seja consistente */
.download-item .btn-primary {
    display: block;
    text-align: center;
}

/* --- Estilo do Rodapé --- */
.site-footer {
    background-image: url('assets/fundo-cinza.png');
    padding: 20px 0;
    text-align: center;
}

.footer-divider {
    border: 0;
    border-top: 1px solid #0a2243; /* Linha divisória vermelha */
    width: 80%;
    margin: 0 auto 20px auto;
}

.footer-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--inami-blue-dark);
}