
html {
font-size: 100%;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

    /* ============================= */
/*         FONTES PERSONALIZADAS */
/* ============================= */
@font-face {
font-display: swap;
font-family: 'Inter';
font-style: normal;
font-weight: 400;
src: url('../fonts/inter-v19-latin-regular.woff2') format('woff2');
}


@font-face {
font-display: swap;
font-family: 'Inter';
font-style: normal;
font-weight: 500;
src: url('../fonts/inter-v19-latin-500.woff2') format('woff2');
}

@font-face {
font-display: swap;
font-family: 'Inter';
font-style: normal;
font-weight: 600;
src: url('../fonts/inter-v19-latin-600.woff2') format('woff2');
}

@font-face {
font-display: swap;
font-family: 'Inter';
font-style: normal;
font-weight: 700;
src: url('../fonts/inter-v19-latin-700.woff2') format('woff2');
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f0f0;
    color: #333;
    line-height: 1.6;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.text-center {
    text-align: center;
}
.pb-16 {
    padding-bottom: 16px;
}

.bg-home {
position: relative; /* Necessário para o pseudo-elemento */
background-image: url("https://oliveiralemos.com.br/uploads/bg-1.webp");
background-size: cover;
background-position: center;
color: white;
padding: 50px 0;
}

/* Pseudo-elemento para adicionar o overlay com opacidade apenas no fundo */
.bg-home::before {
    content: ''; /* Necessário para criar o pseudo-elemento */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(6, 18, 30, 0.8); /* Cor de fundo com opacidade */
    z-index: 1; /* Coloca a sobreposição abaixo do conteúdo */
}

.bg-home > * {
    position: relative;
    z-index: 2; /* Garante que o conteúdo, como texto, fique acima da sobreposição */
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo à esquerda, menu/itens à direita */
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* garante a logo colada na esquerda */
}

.header-logo img {
    width: 250px;
    height: auto;
    align-items: flex-start;
    transition: transform 0.3s;
} 
.header-logo img:hover {
transform: translateY(-5px);
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem; /* espaço entre texto e imagem */
  flex-wrap: wrap; /* para responsividade */
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-image {
  flex: 1;
  text-align: right;
  min-width: 300px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.button-contact {
    display: inline-block;
    background-color: #fdb63a;
    color: #232224;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
    transition: transform 0.3s;
}

.button-contact:hover {
    transform: scale(1.05);
}

.intro {
    background-color: #2c3e50;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.intro h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.intro p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.servicos {
    background-color: white;
    padding: 50px 0;
}

.container-title {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 30px;
    color: #333;
}

.servicos-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.section-card {
    background-color: #2c3e50;
    color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.section-card:hover {
    transform: translateY(-5px);
}

.section-card h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
}

.section-card p {
    font-size: 1em;
}

.beneficios {
    background-color: #ecf0f1;
    padding: 50px 0;
}

.beneficios-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.beneficios-content > div {
    flex: 1;
}

.beneficios-content ul {
    list-style: none;
    padding: 0;
}

.beneficios-content ul li {
    padding: 10px 0;
    font-size: 1.1em;
}

.beneficios-content ul li:before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    margin-right: 10px;
}

.beneficios-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.about {
    background-color: white;
    padding: 50px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-autor {
    flex: 1;
    text-align: center;
}

.about-autor img {
    width: 100%;
    height: auto;       
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    object-fit: contain;
}

.about-info {
    flex: 1;
}

.about-info h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-info p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #232224;
}

.faq-html-render {
    background-color: #2c3e50;
    color: white;
    padding: 50px 0;
}

.faq-html-render h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 10px;
}

.faq-html-render > p {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-pergunta {
    width: 100%;
    background-color: #34495e;
    color: white;
    border: none;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    font-size: 1.1em;
    position: relative;
    transition: background-color 0.3s;
}

.faq-pergunta:hover {
    background-color: #3d566e;
}

.faq-pergunta h3 {
    margin: 0;
    font-size: 1.1em;
    padding-right: 30px;
}

.faq-pergunta .symbol {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s;
}
.text-l {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
}
.text-color-primary {
    color: #fdb63a;
}
.faq-pergunta[aria-expanded="true"] .symbol {
    transform: translateY(-50%) rotate(45deg);
    color: #f39c12;
}

.faq-resposta {
    background-color: #445973;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 16px;
}

.faq-pergunta[aria-expanded="true"] + .faq-resposta {
    max-height: 500px;
    padding: 16px;
}

.faq-resposta p {
    margin-bottom: 15px;
    line-height: 1.6;
    padding-bottom: 1rem ;
}

@media (max-width: 768px) {
    .beneficios-content {
    flex-direction: column-reverse;
    
    }

    .hero h1 {
        font-size: 2em;
    }
    
    
    .about-content {
    flex-direction: column;
    gap: 20px; /* reduz o espaço entre imagem e texto no celular */
      }

  .about-autor {
    text-align: center;
  }
    
    .servicos-content {
        grid-template-columns: 1fr;
    }
    .beneficios-img img {
        width: 100%;
        height: auto;
    }
    
}

.atencao-bancos {
    background-color:#1a0101;
    border-radius: 0.5rem;
    border: 1px solid #2c0101;
    padding: 0.5rem;
}
.atencao-bancos p {
   display: flex;
   align-items: center;
   gap: 0.4rem;
   flex-wrap: wrap; /* permite quebra de linha no mobile */

   font-size: 0.8rem; 
   font-family: 'Inter', Arial, sans-serif;
   color: #ecadad; 
   margin-bottom: 0;
}

.atencao-bancos p span {
   font-weight: bold;
}
.atencao-bancos svg {
   flex-shrink: 0;
}
.hero-text h1{ 
    line-height: 1.15;
}

.reviews-google {
  background-color: #f4f4f4;
  padding: 3rem 1rem;
}

.reviews-google h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #222;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}


.review {
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.review p {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #333;
}
.review h4 {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-bottom: 10px;
}

.review img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  border: 2px solid #eee;
}

.rating {
  font-size: 18px;
  color: #FFD700; /* amarelo dourado */
  margin: 5px 0;
}
.video-yt {
    width: 100%;
    aspect-ratio: 16/9; /* 16:9 */
    border-radius: 12px;
    overflow: hidden;
}

    .video-yt iframe {
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
    }