/* ================= FONTS & GERAL ================= */
* {
  font-family: 'Poppins', sans-serif;
}

.poppins-thin { font-family: "Poppins", sans-serif; font-weight: 100; font-style: normal; }
.poppins-extralight { font-family: "Poppins", sans-serif; font-weight: 200; font-style: normal; }
.poppins-light { font-family: "Poppins", sans-serif; font-weight: 300; font-style: normal; }
.poppins-regular { font-family: "Poppins", sans-serif; font-weight: 400; font-style: normal; }
.poppins-medium { font-family: "Poppins", sans-serif; font-weight: 500; font-style: normal; }
.poppins-semibold { font-family: "Poppins", sans-serif; font-weight: 600; font-style: normal; }
.poppins-bold { font-family: "Poppins", sans-serif; font-weight: 700; font-style: normal; }
.poppins-extrabold { font-family: "Poppins", sans-serif; font-weight: 800; font-style: normal; }
.poppins-black { font-family: "Poppins", sans-serif; font-weight: 900; font-style: normal; }
.poppins-italic { font-style: italic; } /* Simplificado itálicos */

:root {
  --primary-color: #063a1a;
  --secondary-color: #9adf00;
  --text-muted: #666;
  --bg-light: #f9f9f9;
}

body {
  margin: 0;
  overflow-x: hidden; /* Evita rolagem lateral indesejada */
}

/* ================= NAVBAR ================= */
.navbar-nav {
  /* padding-left removido para centralizar melhor no mobile/desktop */
  display: flex;
  gap: 1.5em;
}

.navbar-nav .nav-link {
  position: relative;
  padding-bottom: 5px;
}

.navbar-nav .nav-link:not(.nav-item-botao)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: #88c400;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:not(.nav-item-botao):hover::after,
.navbar-nav .nav-link:not(.nav-item-botao).active::after {
  width: 100%;
}

.nav-item-botao.nav-link.active::after {
  content: none !important;
}

/* ================= BOTÕES ================= */
.btn-primary-custom-nav {
  background: #9adf00;
  border: 1px solid transparent;
  padding: 11px 29px;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.btn-primary-custom-nav:hover {
  background: transparent;
  border: 1px solid #9adf00;
  color: white;
}

.btn-primary-custom {
  background: #9adf00;
  border: 1px solid transparent;
  padding: 14px 19px;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #000;
}

.btn-primary-custom:hover {
  background: transparent;
  border: 1px solid #9adf00;
  color: white;
}

/* Correção específica para botão dentro do form ficar escuro no hover */
form .btn-primary-custom:hover {
  color: #1e1e1e;
}

.btn-outline-custom {
  background: transparent;
  border: 1px solid #9adf00;
  padding: 14px 19px;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: white;
}

.btn-outline-custom:hover {
  border: 1px solid white;
  color: white;
}

.btn-contact {
  background: #9adf00;
  font-weight: 600;
}

/* ================= HERO SECTION ================= */
.hero {
  background: #003C12;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background-image: url("../assets/Screens/background.png");
  background-repeat: repeat-x;
  background-size: auto 100%;
  z-index: 0;
}

.hero-tag {
  color: #9adf00;
  font-size: 14px;
}

.hero-text h1 {
  font-size: 50px;
  color: white;
}

.hero-text p {
  width: 60%;
  font-size: 15px;
  color: white;
}

.hero h1 span {
  color: #9adf00;
}

.hero-text,
.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-height: none;
}

/* Animações Hero */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  transition: all 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.hero-anim {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  transition: all 0.8s ease;
}

.hero-anim.show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 1s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ================= WHY SECTION (POR QUE ESCOLHER) ================= */
.why-section {
  padding: 80px 0;
  text-align: center;
  background-color: white;
  overflow: hidden;
}

.why-section h2 {
  margin-bottom: 60px;
  color: #1e1e1e;
  font-size: 35px;
}

.features-wrapper {
  position: relative;
  padding-top: 20px;
  justify-content: center;
}

.cards-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.feature-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 15px;
}

.icon-box-pq {
  width: 110px;
  height: 110px;
  background-color: #033311;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.icon-box-pq:hover {
  transform: scale(1.08);
  background-color: #88c400;
}

.icon-box-pq i {
  font-size: 48px;
  color: white;
}

.feature-item h5 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1e1e1e;
}

.feature-item p {
  font-size: 14px;
  color: #555;
  max-width: 220px;
  margin: 0 auto;
}

.spacer-item {
  width: 10%;
}

/* Linha Verde e Curvas */
.green-path-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.start-curve {
  position: absolute;
  top: 75px;
  left: 15px;
  width: 50px;
  height: 80px;
  border-left: 12px solid rgba(160, 209, 45, 0.4);
  border-top: 12px solid rgba(160, 209, 45, 0.4);
  border-top-left-radius: 25px;
}

.horizontal-line {
  position: absolute;
  top: 75px;
  left: 65px;
  right: 15%;
  height: 12px;
  width: 84%;
  background-color: rgba(160, 209, 45, 0.4);
}

.corner-curve {
  position: absolute;
  top: 15px;
  right: 7.1%;
  width: 50px;
  height: 72px;
  border-bottom: 12px solid rgba(160, 209, 45, 0.4);
  border-right: 12px solid rgba(160, 209, 45, 0.4);
  border-bottom-right-radius: 25px;
}

/* Ícone do Plugue (SVG Imagem) */
.plug-icon-svg {
  position: absolute;
  top: -78.5px; 
  right: calc(8% - 52px); 
  width: 95px;
  height: 95px;
  color: #d4f095;
  z-index: 5;
}

/* ================= SOLUÇÕES SECTION ================= */
.nossas-solucoes {
  font-family: 'Arial', sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

.header-section {
  text-align: center;
  margin-bottom: 50px;
}

.header-section h2 {
  font-size: 2.8rem;
  color: #333;
}

.header-section span {
  color: #9adf00;
}

.solucao-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  background-color: #eeeeee;
  opacity: 1; 
}

.solucao-row.active {
  opacity: 1;
  transform: translateY(0);
}

.solucao-row.reverse {
  background-color: #033311;
  color: #f8f9fa;
}

.solucao-content {
  padding: 40px 60px;
}

.solucao-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.solucao-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.solucao-content ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
}
 
.solucao-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #9adf00;
  font-weight: bold;
  border: 1px solid #9adf00;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.solucao-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  display: flex;
}

.img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.btn-solucoes {
  display: inline-block;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: 0.3s;
  border: 1px solid;
}

.btn-dark {
  background-color: #063a1a;
  color: white;
}

.btn-dark:hover {
  background-color: transparent;
  color: #003C12;
  border: 1px solid #003C12;
}

.btn-light {
  background-color: #a4d431;
  color: #063a1a;
  border: 1px solid transparent;
}

.btn-light:hover {
  background-color: transparent;
  color: #88c400;
  border: 1px solid #88c400;
}

/* ================= HOW IT WORKS (CARROSSEL) ================= */
.how-section {
  padding: 80px 0;
  background-color: #ffffff;
  background-image: radial-gradient(#d4f095 2px, transparent 2px);
  background-size: 30px 30px;
}

.how-section h2 span {
  color: #9adf00;
}

.how-section .subtitle {
  color: #555;
  margin-bottom: 60px;
}

.timeline-wrapper {
  position: relative;
  padding-top: 20px;
}

.timeline-line {
  position: absolute;
  top: 45px;
  left: 5%;
  right: 5%;
  height: 2px;
  background-color: #033311;
  z-index: 1;
  margin-bottom: 60px;
}

.step-col {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: #033311;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 30px auto;
}

.step-image-box {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 0 60px 0 60px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.small-text {
  font-size: 14px;
  color: #666;
  max-width: 300px;
  margin: 0 auto;
}

.custom-prev,
.custom-next {
  width: 40px;
  height: 40px;
  top: 27px;
  bottom: auto;
  position: absolute;
  z-index: 10;
  background: transparent;
  border: none;
}

.custom-prev { left: -20px; }
.custom-next { right: -20px; }

.custom-prev i,
.custom-next i {
  color: #033311;
  font-size: 30px;
  font-weight: bold;
}

.custom-prev:hover i,
.custom-next:hover i {
  color: #88c400;
}

/* ================= FORMULÁRIO COTAÇÃO ================= */
.lp-cotacao {
  background-color: #eeeeee;
}

.main-title {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
}

.text-highlight {
  color: var(--secondary-color);
}

.feature-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-text {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
}

mark {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 0 2px;
}

.icon-box {
  width: 90px;
  height: 90px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.form-container {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
}

.form-title {
  font-weight: 700;
  font-size: 1.8rem;
}

.form-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-label {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 5px;
}

.form-control,
.form-select {
  border-radius: 8px;
  border: 1px solid #ced4da;
  padding: 10px 15px;
  font-size: 0.9rem;
}

/* ================= CTA DÚVIDAS ================= */
.cta-duvidas {
  background-color: #003C12;
  position: relative;
  overflow: hidden;
  min-height: 450px;
  display: flex;
  align-items: center;
}

.cta-duvidas::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/Screens/background.png");
  background-repeat: repeat;
  background-size: auto 100px;
  opacity: 0.15;
  z-index: 1;
}

.cta-container {
  position: relative;
  z-index: 2;
}

.cta-duvidas h2 span {
  color: #9adf00;
}

.cta-equipe {
  max-height: 500px;
  object-fit: contain;
  margin-bottom: -50px;
}

/* ================= MAPA ================= */
#mapa-localizacao {
  background-color: #f8f9fa;
  position: relative;
  z-index: 10;
}

.map-container iframe {
  height: 450px;
  border: 0;
}

.map-info-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= FOOTER ================= */
.footer-custom {
  background-color: #1e1e1e; 
  font-family: 'Poppins', sans-serif;
  color: #bbbbbb;
}

.footer-logo {
  height: 50px; 
  display: block;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
  max-width: 400px;
}

.footer-title {
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #bbbbbb;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #9adf00;
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  font-size: 15px;
  color: #bbbbbb;
}

.social-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #666;
  border-radius: 4px;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-box:hover {
  border-color: #9adf00;
  color: #9adf00;
  background-color: transparent;
  transform: scale(1.05);
}

.footer-divider {
  border-color: #444; 
  opacity: 0.5;
}

.small-text-footer {
  font-size: 13px;
  color: #888;
}

.dev-highlight {
  color: #9adf00; 
  font-weight: 500;
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  color: #FFF;
  transform: scale(1.1);
}

/* ================= MEDIA QUERIES (RESPONSIVIDADE) ================= */

/* Ajustes Gerais para Telas Grandes (Notebooks) */
@media (max-width: 1400px) {
  .plug-icon-svg {
    right: calc(8% - 66.5px);
  }
  .corner-curve {
    right: 5.7%;
  }


}

@media (max-width: 1200px) {
  .plug-icon-svg {
    right: calc(8% - 81px);
  }
  .corner-curve {
    right: 3.75%;
  }
}

/* Ajustes para Tablets e Telas Médias (<990px) */
@media (max-width: 990px) {
  .green-path-container {
    display: none;
  }

  .solucao-row,
  .solucao-row.reverse {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    margin: 20px auto;
    max-width: 92%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  }

  .solucao-image {
    order: 1;
    width: 100%;
    max-height: 220px;
    aspect-ratio: 16 / 9;
  }

  .solucao-content {
    order: 2;
    padding: 24px 20px;
    text-align: left;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .solucao-content h2 {
    font-size: 1.4rem;
  }

  .solucao-content ul {
    width: 100%;
    padding-left: 0;
  }

  .solucao-row.reverse {
    background-color: #033311;
    color: #ffffff;
  }

  .solucao-row.reverse ul li::before {
    color: #9adf00;
    border-color: #9adf00;
  }

  .solucao-row.reverse .btn-light {
    background-color: #9adf00;
    color: #033311;
  }

  .cards-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .feature-item {
    width: 100%;
    max-width: 320px;
    padding: 0;
  }

  .feature-item p {
    max-width: 100%;
    text-align: center;
  }
  
  .spacer-item {
    display: none;
  }

  .hero-text {
    margin-top: 50px;
  }
  
  .hero-text p {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 100px;
    margin-top: 40px;
  }

  .hero-buttons button{
    margin-bottom: 10px;
  }
}

/* Ajustes para Mobile (<768px) */
@media (max-width: 768px) {
  .timeline-line {
    display: none;
  }

  .step-card {
    margin: 0 auto;
    max-width: 360px;
    border-radius: 20px;
  }

  .carousel-inner {
    padding-bottom: 30px;
  }

  /* Ajuste botões carrossel mobile */
  .carousel-control-prev,
  .carousel-control-next {
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    width: 48px;
    height: 48px;
    top: 45%;
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 10;
  }

  .carousel-control-prev { left: 10px; }
  .carousel-control-next { right: 10px; }

  .carousel-control-prev i,
  .carousel-control-next i {
    font-size: 26px;
    color: #033311;
  }

  .map-container iframe {
    height: 350px;
  }

  .cta-duvidas {
    text-align: center;
    padding: 60px 0;
  }

  .cta-image-wrapper {
    margin-bottom: -50px;
    order: 2;
  }

  .cta-content {
    order: 1;
    margin-bottom: 30px;
  }

  .cta-duvidas h2 {
    font-size: 2.5rem;
  }

  #mapa-localizacao {
    text-align: center;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
}

/* ================= SCROLL REVEAL - NOSSAS SOLUÇÕES ================= */
/* ===== STAGGER - NOSSAS SOLUÇÕES ===== */

.solucao-content > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.solucao-content.active > * {
  opacity: 1;
  transform: translateY(0);
}

/* delays em cascata */
.solucao-content.active h3 {
  transition-delay: 0.2s;
}

.solucao-content.active ul li:nth-child(1) {
  transition-delay: 0.4s;
}

.solucao-content.active ul li:nth-child(2) {
  transition-delay: 0.55s;
}

.solucao-content.active ul li:nth-child(3) {
  transition-delay: 0.65s;
}

.solucao-content.active .btn-solucoes {
  transition-delay: 0.7s;
}

/* ===== SCALE IN - CARDS DO FORM ===== */

.form-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.form-scale.active {
  opacity: 1;
  transform: scale(1);
}


.cta-slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.9s ease;
}


.cta-slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.9s ease;
}

.cta-slide-left.active,
.cta-slide-right.active {
  opacity: 1;
  transform: translateX(0);
}

.hero-image{
  padding-bottom: -38px;
}