/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: #0057b8;
}
a:hover {
    text-decoration: underline;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Header */
header {
    background: #222;
    color: #fff;
    padding: 15px 0;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.8rem;
    font-weight: bold;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
nav ul li a {
    color: #fff;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}
nav ul li a:hover,
nav ul li a.active {
    background-color: #003366;
}

.banner {
  position: relative; 
  width: 100%;
  overflow: hidden;
  margin: 20px 0;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
  background: rgba(0, 0, 0, 0.5);
}

.banner .texto {
    width: 40%;
    position: absolute;
    top: 50%; 
    left: 30%;
    transform: translate(-50%, -50%); /* centraliza no meio */
    color: white; 
    text-align: center;
    background: rgba(0, 0, 0, 0.6); /* fundo semi-transparente */
    padding: 20px;
    border-radius: 10px;
    max-width: 60%;
}

.banner-negociacao {
  background: linear-gradient(135deg, #2e3a59, #1c1c1c);
  color: #fff;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-container {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.banner-texto {
  flex: 1;
  min-width: 320px;
  background: rgba(0,0,0,0.6);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.banner-texto h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #4cc9f0;
}

.banner-texto ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.banner-texto ul li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.banner-texto ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #4cc9f0;
  font-weight: bold;
}

.btn-banner:hover {
  background: #38a3d1;
}

.banner-imagem {
    width: 50%;
  flex: 1;
  min-width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-imagem img {
  max-width: 100%;
  margin: 0;
  display: block;
}
section{
    width: 100%;
    font-family: Arial, sans-serif;
    overflow: hidden;
    text-align: center;

    padding:18px;
    box-shadow:0 6px 18px rgba(10,20,30,0.04)
}
.objetivos div{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.solucoes{
    font-family: Arial, sans-serif;
    padding: 50px ;
}
h2{
    color:#1a1a4b;
    font-size: 26px;
    text-align: center;
}
.solucoes .conteudo{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
}
.solucoes .direito{
    width: 50%;
}
.solucoes .esquerdo{
    width: 50%;
    text-align: center;
}
.important{
    background:#fff3cd;
    border-left:4px solid #ffe08a;
    padding:12px;
    border-radius:6px;
    color:#563d05;
}
.steps {
    margin: 50px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
    max-width: 100vw;
}
.step {
    width: 500px;
    background: white;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: relative;
    text-align: center;
}
.step-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #0057b8;
    color: white;
    font-weight: bold;
    font-size: 1.4rem;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
}
.step h3 {
    margin-top: 40px;
    margin-bottom: 12px;
    font-size: 1.3rem;
    color: #004494;
}
.step p {
    font-size: 1rem;
    color: #555;
}

.form-section {
  background: linear-gradient(135deg, #1c1c1c, #2e3a59);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-container {
  background: rgba(0,0,0,0.75);
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}

.form-container h2 {
  font-size: 1.8rem;
  color: #4cc9f0;
  margin-bottom: 10px;
}

.form-container p {
  margin-bottom: 25px;
  color: #cfd9e0;
}

.formulario .form-group {
  margin-bottom: 20px;
}

.formulario label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #a6b3c6;
}

.formulario input,
.formulario textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #2a2f3a;
  color: #fff;
  font-size: 1rem;
}

.formulario input:focus,
.formulario textarea:focus {
  outline: 2px solid #4cc9f0;
}

.btn-form {
  width: 100%;
  padding: 14px;
  background: #4cc9f0;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-form:hover {
  background: #38a3d1;
}

/* Footer */
footer {
    background: #222;
    color: #bbb;
    padding: 20px 0;
    font-size: 0.9rem;
    margin-top: 20px;
}
.footer-container {
    text-align: center;
    margin-top: 10px;
}
footer p {
    margin-bottom: 10px;
}

/* Como funciona */
.como-funciona {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #f0f0f0;
}

.como-funciona h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #4cc9f0;
}

.como-funciona p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
  font-size: 1.1rem;
  color: #cfd9e0;
}

.como-funciona > div {
  background: #1c1c1c;
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.como-funciona > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.como-funciona h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #38a3d1;
}

.como-funciona div p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.como-funciona div ul {
  list-style: none;
  padding-left: 0;
}

.como-funciona div ul li {
  padding-left: 28px;
  margin-bottom: 10px;
  position: relative;
  line-height: 1.5;
  color: #dbe4ea;
}

.como-funciona div ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #4cc9f0;
  font-weight: bold;
}


/* Responsividade */
@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    .benefit-grid {
        flex-direction: column;
    }
    .como-funciona > div {
        padding: 35px;
    }

    .como-funciona h2 {
        font-size: 2.4rem;
    }

    .como-funciona h3 {
        font-size: 1.6rem;
    }

    .como-funciona div p,
    .como-funciona div ul li {
        font-size: 1.05rem;
    }
}