/* style.css */

body {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FF9900;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #fff;
    color: #333;
    padding: 20px 20px;
    display: flex;
    justify-content: center; /* Center header-content horizontally */
    align-items: center;
    border-bottom: 1px solid #eee;
}

.header-content {
    display: flex;
    flex-direction: column; /* Stack logo, title, and nav vertically */
    align-items: center; /* Center items horizontally within header-content */
    max-width: 1200px; /* Adjust max-width as needed to fit your layout */
    width: 100%; /* Ensure header-content takes full width within header */
}

.logo-container {
    margin-bottom: 10px; /* Space between logo and title */
}

.header-logo {
    max-width: 250px; /* Adjust logo size as needed */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Ensure proper spacing */
    margin: 0 auto; /* Center the logo image */
}


header h1 {
	display: none;
    margin: 0;
    font-size: 2.5em;
    color: #333;
    font-family: 'Atkinson Hyperlegible', sans-serif;
    text-align: center; /* Center the title text */
}

/* Estilos para o menu hamburguer */
.menu-hamburguer {
    background: none;
    border: none;
    color: #555;
    font-size: 1.8em;
    cursor: pointer;
    padding: 10px;
    display: none;
}

.menu-hamburguer:focus {
    outline: none;
}


nav ul {
    padding: 0;
    list-style: none;
    margin-top: 10px;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Atkinson Hyperlegible', sans-serif;
}

nav ul li a:hover {
    color: #085AFB;
}


.banner {
    background-color: #FFB039;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.banner div {
    background-color: #0043C7;
    padding: 20px 30px;
    border-radius: 10px;
    display: inline-block;
}


.banner h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-family: 'Atkinson Hyperlegible', sans-serif;
}

.banner p {
    font-size: 1.2em;
    margin-bottom: 30px;
    font-family: 'Atkinson Hyperlegible', sans-serif;
}

.secao-conteudo, .secao-sociais, .secao-investimento, .secao-contato, .secao-faq {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
    margin-bottom: 20px;
}

.secao-conteudo h2, .secao-sociais h2, .secao-investimento h2, .secao-contato h2, .secao-faq h2 {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 2em;
    /*color: #333;*/
	color: #003399;
    margin-bottom: 40px;
}


.servicos-lista {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.servico-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-width: 300px;
}

.servico-item h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #fff;
    font-family: 'Atkinson Hyperlegible', sans-serif;
}

.servico-item p {
    color: #666;
    margin-bottom: 20px;
    font-family: 'Atkinson Hyperlegible', sans-serif;
}


.passos-lista {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.passo-item {
    text-align: center;
    max-width: 250px;
}

.passo-item img {
    max-width: 100px;
    margin-bottom: 15px;
	display: none;
}

.passo-item h3 {
    margin-bottom: 10px;
    color: #333;
    font-family: 'Atkinson Hyperlegible', sans-serif;
}

.passo-item p {
    color: #666;
    font-family: 'Atkinson Hyperlegible', sans-serif;
}


.sobre-nos-texto {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.sobre-nos-texto img {
    max-width: 300px;
    border-radius: 8px;
}

.sobre-nos-texto p {
    color: #555;
    font-family: 'Atkinson Hyperlegible', sans-serif;
}


.sociais-lista {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.depoimento-item {
    /*background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;*/
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-width: 250px;
	margin: 0 auto; /* Center the logo image */
}

.depoimento-item p {
    color: #555;
    font-style: italic;
    font-family: 'Atkinson Hyperlegible', sans-serif;
}

.depoimento-item .cliente {
    font-weight: bold;
    margin-top: 15px;
    font-style: normal;
    font-family: 'Atkinson Hyperlegible', sans-serif;
}

.depoimento-item a {
    color: #000;
    text-decoration: none;
    font-family: 'Atkinson Hyperlegible', sans-serif;
}

.depoimento-item a:hover {
    color: #003399;
}


.tabela-investimento {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    border-collapse: collapse;
    font-family: 'Atkinson Hyperlegible', sans-serif;
}

.tabela-investimento thead th, .tabela-investimento tbody td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-family: 'Atkinson Hyperlegible', sans-serif;
}

.tabela-investimento thead th {
    background-color: #f4f4f4;
    font-weight: bold;
    font-family: 'Atkinson Hyperlegible', sans-serif;
}

.tabela-investimento tbody td {
    font-family: 'Atkinson Hyperlegible', sans-serif;
}

.secao-investimento p {
    margin-top: 20px;
    color: #666;
    font-family: 'Atkinson Hyperlegible', sans-serif;
}


.secao-contato {
    background-color: #FFC164;
}


/* carrossel */
.carousel-container {
  width: 100%;
  max-width: 700px;
  position: relative;
  overflow: hidden;
  margin: 0 auto; /* Added to center horizontally */
}

.carousel-slide {
  display: none;
  width: 100%;
}

.carousel-slide img {
  width: 100%;
  display: block;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.carousel-nav button {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

.carousel-indicators {
  text-align: center;
  margin-top: 10px;
}

.carousel-indicators span {
  display: inline-block;
  margin: 0 5px;
  /*font-size: 1.2em;*/
}
#indicator {
	font-weight: bold;
}

/* Estilos para responsividade */
@media (max-width: 600px) {
  .carousel-nav button {
    padding: 5px 10px;
  }
}
/* /carrossel */

.faq-lista {
    max-width: 800px;
    margin: 20px auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 15px;
    font-family: 'Atkinson Hyperlegible', sans-serif;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-pergunta {
    background: none;
    border: none;
    padding: 10px 0;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    text-align: left;
    color: #333;
    font-family: 'Atkinson Hyperlegible', sans-serif;
}

.faq-pergunta:focus {
    outline: none;
}

.faq-resposta {
    padding: 0 0 10px 0;
    color: #666;
    display: none;
    font-family: 'Atkinson Hyperlegible', sans-serif;
}

.faq-resposta.ativo {
    display: block;
}


footer {
    background-color: #003399;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
    font-family: 'Atkinson Hyperlegible', sans-serif;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-family: 'Atkinson Hyperlegible', sans-serif;
}

footer a:hover {
    text-decoration: underline;
}


/* Estilos para botões */
.button, .button-interno {
    display: inline-block;
    padding: 12px 30px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
    font-family: 'Atkinson Hyperlegible', sans-serif;
}

.button:hover, .button-interno:hover {
    background-color: #0056b3;
}

.button-interno {
    background-color: #6c757d;
    font-family: 'Atkinson Hyperlegible', sans-serif;
}


/* Estilos Responsivos */
@media screen and (max-width: 768px) {
    header {
        padding: 10px 10px;
        flex-direction: column;
        text-align: center;
    }

    .header-content {
        flex-direction: column; /* Stack logo, title, and nav vertically */
    }

    header h1 {
		display: none;
		font-size: 2em;
        margin-bottom: 10px;
        font-family: 'Atkinson Hyperlegible', sans-serif;
    }

    nav {
        width: 100%;
        display: none;
        margin-top: 10px;
    }

    nav ul {
        flex-direction: column;
        margin-top: 0;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    nav.show {
        display: block;
    }

    .menu-hamburguer {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
    }


    .banner {
        padding: 80px 0;
    }
    .banner h2 {
        font-size: 2em;
        font-family: 'Atkinson Hyperlegible', sans-serif;
    }
    .banner p {
        font-size: 1em;
        font-family: 'Atkinson Hyperlegible', sans-serif;
    }
    .secao-conteudo, .secao-sociais, .secao-investimento, .secao-contato, .secao-faq {
        padding: 40px 20px;
    }
    .secao-conteudo h2, .secao-sociais h2, .secao-investimento h2, .secao-contato h2, .secao-faq h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
        font-family: 'Atkinson Hyperlegible', sans-serif;
    }
    .servicos-lista, .passos-lista, .sociais-lista {
        flex-direction: column;
        align-items: center;
    }
    .sobre-nos-texto {
        flex-direction: column;
        text-align: center;
    }
    .sobre-nos-texto img {
        max-width: 80%;
        margin-bottom: 20px;
    }
    .contato-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .contato-detalhes {
        margin-top: 30px;
    }
	.passos-lista img {
		display: none;
	}
}

@media screen and (min-width: 650px) {
	#j-column-0 {
		width: 600px !important;
	}
	
	li.is-not-youTube {
		float: left !important;
		width: 50% !important;
		border: 10px solid white !important;
	}
}


/* Fonte Atkinson Hyperlegible */
@font-face {
    font-family: 'Atkinson Hyperlegible';
    src: url(https://fonts.gstatic.com/s/atkinsonhyperlegible/v4/cmV5YtaawoEymnWjxWgvS73Vv1JligQ0bzlMAQ.woff2) format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}