body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  background: #F5F5F5;
  color: #000000;
  padding-top: 80px;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  background: #0f5735;
  color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  animation: slideDown 1s ease;
  height: 80px;
  display: flex;
  align-items: center;
}
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
header .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 2rem;
  position: relative;
}
.logo {
  height: 60px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
nav a::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
}
nav a:hover {
  color: #fff;
}
nav a:hover::after {
  width: 100%;
}
.hero {
  position: relative;
  background: none;
  color: #fff;
  padding: 8rem 0 5rem 0;
  text-align: center;
  margin-top: -10px;
  animation: fadeIn 1.2s;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.80;
  filter: brightness(0.6);
}
.hero .container {
  position: relative;
  z-index: 2;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #FFFFFF;
}
.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #F5F5F5;
}
.btn-primary {
  background: #0f5735;
  color: #fff;
  border: none;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(47,79,79,0.15);
}
.btn-primary:hover {
  background: #fff;
  color: #0f5735;
  border: 2px solid #0f5735;
  transform: scale(1.05);
}
section {
  padding: 5rem 0 3rem 0;
  animation: fadeInUp 1s;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.sobre, .vantagens, .depoimentos, .contato, .servicos, .abra-empresa {
  background: #fff;
}

.sobre h2,.servicos h2, .vantagens h2, .depoimentos h2, .contato h2, .abra-empresa h2 {
  color: #0f5735;
  margin-bottom: 1.5rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.card {
  background: #fff;
  color: #000000;
  padding: 2rem 1.5rem;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(47,79,79,0.08);
  font-weight: 600;
  min-width: 220px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s, color 0.3s;
  cursor: pointer;
  animation: fadeInUp 1s;
}
.card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 8px 24px rgba(26,26,26,0.13);
  background: #0f5735;
  color: #fff;
}
.vantagens-list {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.vantagem {
  background: #F5F5F5;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  min-width: 220px;
  box-shadow: 0 2px 8px rgba(47,79,79,0.08);
  transition: background 0.3s, color 0.3s;
}
.vantagem:hover {
  background: #0f5735;
  color: #fff;
}
.vantagem .icon {
  font-size: 2.5rem;
  margin-bottom: 0.7rem;
  display: block;
}
.depoimentos-slider {
  display: flex;
  overflow: hidden;
  position: relative;
  min-height: 120px;
}
.depoimento {
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.6s;
  position: absolute;
  left: 0;
  top: 0;
  padding: 1.5rem;
  box-sizing: border-box;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(47,79,79,0.07);
  color: #000000;
}
.depoimento.ativo {
  opacity: 1;
  position: relative;
}
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.slider-controls button {
  background: #0f5735;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.3s;
}
.slider-controls button:hover {
  background: #000000;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}
input, textarea {
  padding: 0.9rem 1rem;
  border: 1px solid #0f5735;
  border-radius: 8px;
  font-size: 1rem;
  background: #F5F5F5;
  color: #000000;
  resize: none;
}
input:focus, textarea:focus {
  outline: 2px solid #0f5735;
}
footer {
  background: #0f5735;
  color: #fff;
  text-align: center;
  padding: 1.2rem 0 0 0;
  margin-bottom: -280px;
}
.footer-info {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  background: #0f5735;
  padding: 2.5rem 1rem 1.5rem 1rem;
  border-radius: 12px 12px 0 0;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-col {
  flex: 1 1 220px;
  min-width: 180px;
  text-align: center;
}
.footer-title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  text-align: center;
}
.footer-item {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.5;
  justify-content: center;
  text-align: center;
}
.footer-icon {
  color: #fff;
  font-size: 1.2rem;
  min-width: 1.5em;
  display: inline-block;
}
.footer-icon-img {
  width: 1.5em;
  height: 1.5em;
  min-width: 1.5em;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.3em;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #fff;
  text-decoration: underline;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #fff;
}
.sobre-flex {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sobre-texto {
  flex: 1 1 320px;
  min-width: 260px;
  padding-left: 10px;
  padding-right: 10px;
}
.sobre-img {
  flex: 1 1 320px;
  min-width: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
}
.sobre-img img {
  max-width: 500px;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(47,79,79,0.10);
}

.vantagens-title {
  text-align: center;
  font-size: 2rem;
  color: #0f5735;
  margin-bottom: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.vantagens-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.vantagem-item {
  position: relative;
  overflow: hidden;
  background: #F5F5F5;
  border-radius: 16px;
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  box-shadow: 0 2px 8px rgba(47,79,79,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background 0.3s, color 0.3s;
  min-height: 210px;
}
.vantagem-item:hover {
  background: #0f5735;
  color: #fff;
}
.vantagem-bg1 {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: url('assets/lucro.png') center center/cover no-repeat;
  opacity: 0.30;
  z-index: 1;
  pointer-events: none;
}
.vantagem-bg2 {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: url('assets/calculadora.png') center center/cover no-repeat;
  opacity: 0.30;
  z-index: 1;
  pointer-events: none;
}
.vantagem-bg3 {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: url('assets/mesa.png') center center/cover no-repeat;
  opacity: 0.30;
  z-index: 1;
  pointer-events: none;
}
.vantagem-bg4 {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: url('assets/escritorio.png') center center/cover no-repeat;
  opacity: 0.30;
  z-index: 1;
  pointer-events: none;
}
.vantagem-bg5 {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: url('assets/financa.png') center center/cover no-repeat;
  opacity: 0.30;
  z-index: 1;
  pointer-events: none;
}
.vantagem-bg6 {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: url('assets/lupa.png') center center/cover no-repeat;
  opacity: 0.30;
  z-index: 1;
  pointer-events: none;
}
.vantagem-bg7 {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: url('assets/pido.png') center center/cover no-repeat;
  opacity: 0.30;
  z-index: 1;
  pointer-events: none;
}
.vantagem-bg8 {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: url('assets/escrita.png') center center/cover no-repeat;
  opacity: 0.30;
  z-index: 1;
  pointer-events: none;
}
.vantagem-item > *:not(.vantagem-bg1, .vantagem-bg2, .vantagem-bg3, .vantagem-bg4, .vantagem-bg5, .vantagem-bg6, .vantagem-bg7, .vantagem-bg8) {
  position: relative;
  z-index: 2;
}
.vantagem-item h3 {
  font-size: 1.15rem;
  color: #0f5735;
  margin: 0.7rem 0 0.5rem 0;
  font-weight: 700;
  transition: color 0.3s;
}
.vantagem-item:hover h3 {
  color: #fff;
}
.vantagem-item p {
  font-size: 1rem;
  color: #000000;
  margin: 0;
  transition: color 0.3s;
}
.vantagem-item:hover p {
  color: #fff;
}
.vantagem-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #0f5735;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 8px rgba(47,79,79,0.10);
  transition: background 0.3s, color 0.3s;
}
.vantagem-item:hover .vantagem-icon {
  background: #fff;
  color: #0f5735;
}
.servicos .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.servicos .card {
  flex: 1 1 320px;
  max-width: 340px;
  min-width: 260px;
  margin: 0;
  border: 2px solid #0f5735;
}
.servicos .card h3 {
  color: #0f5735;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 1.2rem 0 0.7rem 0;
}
.servicos .card p {
  color: #222;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.servicos .card:hover {
  box-shadow: 0 8px 24px rgba(26,26,26,0.18);
  background: #fff;
  border: 2px solid #0f5735;
}
.servicos .card:hover h3 {
  color: #0f5735;
}
.servicos .card button, .servicos .card .btn {
  background: #0f5735;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  margin-top: auto;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.servicos .card button:hover, .servicos .card .btn:hover {
  background: #fff;
  color: #0f5735;
  border: 1.5px solid #0f5735;
}
@media (max-width: 1100px) {
  .servicos .card {
    flex: 1 1 45%;
    max-width: 95%;
  }
}
@media (max-width: 700px) {
  .servicos .card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .servicos .cards {
    gap: 1rem;
  }
}
@media (max-width: 900px) {
  .sobre-flex {
    flex-direction: column;
    gap: 1.5rem;
  }
  .sobre-img img {
    max-width: 450px;
    width: 100%;
  }
  .cards, .vantagens-list {
    flex-direction: column;
    align-items: center;
  }
  header .container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  nav {
    margin-left: 0;
  }
  .vantagens-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .vantagem-item {
    align-items: center;
    text-align: center;
  }
  .vantagem-item {
    padding: 0.6rem 0.3rem 0.5rem 0.3rem;
    min-height: 65px;
    border-radius: 10px;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
  .container {
    width: 98%;
  }
  section {
    padding: 3rem 0 2rem 0;
  }
  .card, .vantagem {
    min-width: 90%;
    padding: 1.2rem 0.7rem;
  }
} 

.abra-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.abra-img,
.abra-texto {
  flex: 1 1 400px;
  max-width: 500px;
}

.abra-img img {
  width: 100%;
  height: 300px;
}

.abra-texto h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0f5735;
}

.abra-texto2 {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  padding-left: 10px;
  padding-right: 10px;
}

.btn-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn-abra {
  background-color: #0f5735;
  color: #fff;
  padding: 12px 30px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-abra:hover {
  background: #fff;
  color: #0f5735;
  border: 2px solid #0f5735;
}

.section-alternada {
  position: relative;
  background: #ffffff;
  color: #0f5735;
  overflow: hidden;
}
.section-alternada .container {
  position: relative;
  z-index: 2;
}
.section-alternada input,
.section-alternada textarea {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid #fff;
}
.section-alternada input::placeholder,
.section-alternada textarea::placeholder {
  color: #e0e0e0;
}
@media (max-width: 700px) {
  .section-alternada {
    padding: 3rem 0 2rem 0;
    background-position: center top;
  }
} 

.contato-flex {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.contato-form-area {
  flex: 1;
  max-width: 500px;
  text-align: left;
}
.contato-label {
  display: block;
  color: #0f5735;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  width: 100%;
}
.contato-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.contato-row {
  display: flex;
  gap: 1rem;
  width: 100%;
}
.input-metade {
  flex: 1;
  min-width: 0;
}
.contato-form input,
.contato-form textarea {
  padding: 0.9rem 1rem;
  border: 1px solid #0f5735;
  border-radius: 8px;
  font-size: 1rem;
  background: #F5F5F5;
  color: #000000;
  resize: none;
  width: 100%;
  box-sizing: border-box;
}
.contato-form input:focus,
.contato-form textarea:focus {
  outline: 2px solid #0f5735;
}
.contato-form textarea {
  min-height: 120px;
}
.btn-contato {
  background: #0f5735;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-contato:hover {
  background: #fff;
  color: #0f5735;
  border: 2px solid #0f5735;
}
.btn-icon {
  font-size: 1.2rem;
}
.contato-mapa-area {
  flex: 1;
  max-width: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(27,80,60,0.15);
}
@media (max-width: 768px) {
  .contato-flex {
    flex-direction: column;
    align-items: center;
  }
  .contato-row {
    flex-direction: column;
  }
  .contato-flex {
    padding: 0 0.5rem;
  }
}
@media (max-width: 1000px) {
  .contato-flex {
    flex-direction: column;
    gap: 2rem;
  }
  .contato-mapa-area {
    max-width: 100%;
    min-width: 0;
  }
  .contato-form-area {
    margin: 0 auto;
  }
}
@media (max-width: 900px) {
  .contato-title {
    font-size: 1.5rem;
  }
  .contato-label {
    font-size: 1rem;
  }
  .contato-form input,
  .contato-form textarea {
    font-size: 1rem;
    padding: 0.5rem 0.7rem;
  }
  .contato-mapa-area iframe {
    height: 250px;
  }
} 

.contato-form-wrapper {
  background: #181f23;
  max-width: 480px;
  margin: 2rem auto 3rem auto;
  padding: 2.5rem 2rem 2rem 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
  color: #fff;
}
.contato-titulo {
  color: #0f5735;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 1.7rem;
  letter-spacing: 0.5px;
}
.contato-form-modelo {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contato-form-modelo label,
.contato-form label {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.contato-form-modelo input,
.contato-form-modelo select,
.contato-form-modelo textarea {
  background: #232b31;
  color: #fff;
  border: 1px solid #232b31;
  border-radius: 6px;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: border 0.2s, box-shadow 0.2s;
}
.contato-form-modelo input:focus,
.contato-form-modelo select:focus,
.contato-form-modelo textarea:focus {
  outline: none;
  border: 1.5px solid #0f5735;
  box-shadow: 0 0 0 2px rgba(27,80,60,0.15);
}
.contato-form-modelo select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.contato-form-modelo textarea {
  min-height: 120px;
  resize: vertical;
}
.btn-enviar {
  background: transparent;
  color: #0f5735;
  border: 2px solid #0f5735;
  border-radius: 6px;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s, color 0.2s;
}
.btn-enviar:hover {
  background: #0f5735;
  color: #fff;
}
@media (max-width: 600px) {
  .contato-form-wrapper {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    max-width: 98px;
  }
} 

@media (max-width: 900px) {
  .footer-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0px;
  }
  .footer-col {
    width: 100%;
    min-width: 0;
    text-align: center;
  }
} 
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 972px) {
  #menu-toggle {
    display: block !important;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 3001;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .container {
    position: relative;
  }
  nav ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 130px;
    background: #0f5735;
    box-shadow: -2px 0 8px rgba(0,0,0,0.15);
    border-radius: 0;
    z-index: 2000;
    margin: 0;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  }
  nav ul.open {
    transform: translateX(0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    padding-top: 40px;
  }
  nav ul li {
    margin: 0;
    padding: 18px 32px;
    text-align: center;
  }
  nav ul li a {
    color: #fff;
    font-size: 1.1em;
    display: block;
    width: 100%;
    text-align: center;
  }
  nav {
    position: relative;
  }
  
  .servicos h2, .sobre h2, .vantagens h2, .contato h2, .abra-empresa h2 {
    text-align: center;
  }

  .contato-label {
    display: block;
    color: #0f5735;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
  }
}

@media (max-width: 1000px) {
  .contato-flex {
    flex-direction: column;
    gap: 2rem;
  }
  .contato-form{
    width: 500px;
  }
  .contato-mapa-area {
    max-width: 100%;
    min-width: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
  .contato-mapa-area iframe {
    width: 100% !important;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
  }
}