:root{
  --max-width:1200px;
  --accent:#0b9d58;
  --dark:#1f2937;
  --muted:#6b7280;
  --bg:#f7fafc;
  --card:#ffffff;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--dark);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.5;
  font-family: 'Nunito', sans-serif;
}

.container{max-width:var(--max-width);margin:0 auto;padding:1rem;}

/* Header */
.site-header{
  background:linear-gradient(90deg,#ffffffcc, #f0f6f8);
  backdrop-filter:blur(4px);
  position:sticky;
  top:0;
  z-index:50;
  border-bottom:1px solid #e6eef2;
}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:0.75rem 1rem;}
.logo{font-weight:700;color:var(--dark);margin:0;font-size:1.125rem}
.nav{display:flex;gap:1rem}
.nav a{color:var(--muted);text-decoration:none;font-size:0.95rem}
.btn-whatsapp{background:var(--accent);color:#fff;padding:0.5rem 0.75rem;border-radius:8px;text-decoration:none;font-weight:600;font-size:0.95rem}

/* Hero */
.hero{padding:3rem 0;background:linear-gradient(180deg,#e8f8f0 0%,transparent 60%);}
.hero-inner{display:flex;gap:2rem;align-items:center;justify-content:space-between;flex-wrap:wrap;}
.hero-text{flex:1 1;}
.hero-text h2{font-size:2rem;margin:0 0 0.5rem}
.hero-text p{color:var(--muted);margin:0 0 1rem}
.hero-cta{display:flex;gap:0.75rem;flex-wrap:wrap;}
.btn{display:inline-block;padding:0.6rem 1rem;border-radius:8px;text-decoration:none;font-weight:600}
.btn.primary{background:var(--dark);color:#fff}
.btn.outline{border:1px solid #d1e7df;background:#fff;color:var(--dark)}

/* Hero image */
.hero-image{flex:0 0 300px;text-align:right}
.hero-image img{max-width:100%;height:auto;border-radius:12px;box-shadow:0 6px 20px rgba(15,23,42,0.08)}

/* Estrutura geral da seção */
.app-section {
  background-color: #ffffff;
  padding: 50px 50px;
  position: relative;
  overflow: hidden;
}

/* Container centralizado com duas colunas */
.app-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Texto da esquerda */
.app-text {
  flex: 1;
  max-width: 600px;
}

.app-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00264d;
  line-height: 1.3;
  margin-bottom: 25px;
}

.app-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00264d;
  line-height: 1.3;
  margin-bottom: 25px;
}

.app-text h5 {
  font-weight: 700;
  color: #00264d;
  margin-top: 15px;
}

.app-text p {
  font-size: 1rem;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Botão verde */
.btn-orcamento {
  background-color: #4ef037;
  margin-top: 25px;
  border: none;
  color: #003300;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

/* Mesmo estilo, sem hover extra */
.btn-orcamento:hover {
  background-color: #4ef037;
}

/* Coluna direita (imagem do app) */
.app-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.app-image img {
  max-width: 800px;
}

/* Sobre */
.about{padding:2rem 1rem;background:linear-gradient(180deg,#ffffff, #fbffff)}
.features{display:flex;gap:1rem;flex-wrap:wrap;margin-top:1rem}
.feature{flex:1 1 180px;background:linear-gradient(180deg,#fff,#fbffff);padding:0.75rem;border-radius:10px;border:1px solid #eef6f3}
.feature strong{display:block}

/* Contato */
.contact{padding:2rem 1rem}
.contact-form{display:grid;gap:0.75rem;grid-template-columns:1fr 1fr;align-items:start}
.contact-form input,.contact-form textarea{width:100%;padding:0.6rem;border-radius:8px;border:1px solid #e6eef2;background:#fff}
.contact-form textarea{grid-column:1/3;min-height:120px;resize:vertical}
.form-actions{grid-column:1/3;display:flex;gap:0.75rem;align-items:center}
.btn.whatsapp{background:var(--accent);color:#fff;text-decoration:none;padding:0.6rem 1rem;border-radius:8px;font-weight:600}

/* Footer */
.site-footer{padding:1rem 0;background:#0f1724;color:#fff;margin-top:2rem}
.footer-inner{display:flex;gap:1rem;justify-content:space-between;align-items:center}
.dev-id {
  color:var(--muted);
  font-size: 12px;
  letter-spacing: 2px;
  text-decoration: none;
}
.dev-id-wapp {
  text-decoration: none;
  color: var(--muted);
}

/* Responsividade */
@media (max-width:800px){
  .header-inner{padding:0.5rem 0.75rem}
  .hero-inner{flex-direction:column-reverse;align-items:flex-start}
  .hero-image{text-align:left;order:-1}
  .contact-form{grid-template-columns:1fr}
  .form-actions{flex-direction:column;align-items:stretch}
  .site-header .nav a {color: transparent;}
  .app-container {flex-direction: column;text-align: center;}
  .app-image {margin-top: 40px;}
}
:root{
  --max-width:1200px;
  --accent:#0b9d58;
  --dark:#1f2937;
  --muted:#6b7280;
  --bg:#f7fafc;
  --card:#ffffff;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--dark);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.5;
  font-family: 'Nunito', sans-serif;
}

body {
  margin: 0;
  color: var(--dark);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  font-family: 'Nunito', sans-serif !important;
}


.container{max-width:var(--max-width);margin:0 auto;padding:1rem;}

/* Header */
.site-header{
  background:linear-gradient(90deg,#ffffffcc, #f0f6f8);
  backdrop-filter:blur(4px);
  position:sticky;
  top:0;
  z-index:50;
  border-bottom:1px solid #e6eef2;
}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:0.75rem 1rem;}
.logo{font-weight:700;color:var(--dark);margin:0;font-size:1.125rem}
.nav{display:flex;gap:1rem}
.nav a{color:var(--muted);text-decoration:none;font-size:0.95rem}
.btn-whatsapp{background:var(--accent);color:#fff;padding:0.5rem 0.75rem;border-radius:8px;text-decoration:none;font-weight:600;font-size:0.95rem}

/* Hero */
.hero{padding:3rem 0;background:linear-gradient(180deg,#e8f8f0 0%,transparent 60%);}
.hero-inner{display:flex;gap:2rem;align-items:center;justify-content:space-between;flex-wrap:wrap;}
.hero-text{flex:1 1;}
.hero-text h2{font-size:2rem;margin:0 0 0.5rem}
.hero-text p{color:var(--muted);margin:0 0 1rem}
.hero-cta{display:flex;gap:0.75rem;flex-wrap:wrap;}
.btn{display:inline-block;padding:0.6rem 1rem;border-radius:8px;text-decoration:none;font-weight:600}
.btn.primary{background:var(--dark);color:#fff}
.btn.outline{border:1px solid #d1e7df;background:#fff;color:var(--dark)}

/* Hero image */
.hero-image{flex:0 0 300px;text-align:right}
.hero-image img{max-width:100%;height:auto;border-radius:12px;box-shadow:0 6px 20px rgba(15,23,42,0.08)}

/* Estrutura geral da seção */
.app-section {
  background-color: #ffffff;
  padding: 50px 50px;
  position: relative;
  overflow: hidden;
}

/* Container centralizado com duas colunas */
.app-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Texto da esquerda */
.app-text {
  flex: 1;
  max-width: 600px;
}

.app-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00264d;
  line-height: 1.3;
  margin-bottom: 25px;
}

.app-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00264d;
  line-height: 1.3;
  margin-bottom: 25px;
}

.app-text h5 {
  font-weight: 700;
  color: #00264d;
  margin-top: 15px;
}

.app-text p {
  font-size: 1rem;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Botão verde */
.btn-orcamento {
  background-color: #4ef037;
  margin-top: 25px;
  border: none;
  color: #003300;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

/* Mesmo estilo, sem hover extra */
.btn-orcamento:hover {
  background-color: #4ef037;
}

.btn-knowmore {
  background-color: darkred;
  margin-top: 25px;
  border: none;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

/* Mesmo estilo, sem hover extra */
.btn-knowmore:hover {
  background-color: crimson;
}

/* Coluna direita (imagem do app) */
.app-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.app-image img {
  max-width: 800px;
}

/* Sobre */
.about{padding:2rem 1rem;background:linear-gradient(180deg,#ffffff, #fbffff)}
.features{display:flex;gap:1rem;flex-wrap:wrap;margin-top:1rem}
.feature{flex:1 1 180px;background:linear-gradient(180deg,#fff,#fbffff);padding:0.75rem;border-radius:10px;border:1px solid #eef6f3}
.feature strong{display:block}

/* Contato */
.contact{padding:2rem 1rem}
.contact-form{display:grid;gap:0.75rem;grid-template-columns:1fr 1fr;align-items:start}
.contact-form input,.contact-form textarea{width:100%;padding:0.6rem;border-radius:8px;border:1px solid #e6eef2;background:#fff}
.contact-form textarea{grid-column:1/3;min-height:120px;resize:vertical}
.form-actions{grid-column:1/3;display:flex;gap:0.75rem;align-items:center}
.btn.whatsapp{background:var(--accent);color:#fff;text-decoration:none;padding:0.6rem 1rem;border-radius:8px;font-weight:600}

/* Footer */
.site-footer{padding:1rem 0;background:#0f1724;color:#fff;margin-top:2rem}
.footer-inner{display:flex;gap:1rem;justify-content:space-between;align-items:center}
.dev-id {
  color:var(--muted);
  font-size: 12px;
  letter-spacing: 2px;
  text-decoration: none;
}
.dev-id-wapp {
  text-decoration: none;
  color: var(--muted);
}

/* Responsividade */
@media (max-width:800px){
  .header-inner{padding:0.5rem 0.75rem}
  .hero-inner{flex-direction:column-reverse;align-items:flex-start}
  .hero-image{text-align:left;order:-1}
  .contact-form{grid-template-columns:1fr}
  .form-actions{flex-direction:column;align-items:stretch}
  .site-header .nav a {color: transparent;}
  .app-container {flex-direction: column;text-align: center;}
  .app-image {margin-top: 40px;}
}

/* =======================
   PARTNERS / LOGOS
======================= */
/* =============================
   PARTNER SLIDER HORIZONTAL
============================= */

.partners-section {
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
  background: transparent;
}

.partners-slider {
  overflow: hidden;
  width: 100%;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 50px;
  animation: scrollSlide 20s linear infinite;
  /* Duplicamos o conteúdo via CSS */
}

.partners-track img {
  height: 90px;
  transition: transform .3s ease;
  cursor: pointer;
}

.partners-track img:hover {
  transform: scale(1.9);
}

/* Animação infinita */
@keyframes scrollSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* DUPLICAÇÃO AUTOMÁTICA DO CONTEÚDO */
.partners-track::after {
  content: "";
  display: flex;
  gap: 50px;
  padding-left: 50px;
  background-repeat: repeat-x;
  width: 100%;
}

/* Para mobile */
@media (max-width: 600px) {
  .partners-track img {
    height: 60px;
  }
}

/* ========= Botão de Vídeo ========= */

.btn-video {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FF0000; /* Cor YouTube */
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .25s ease, 
              box-shadow .25s ease,
              background-color .25s ease;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.25);
}

.btn-video:hover {
  transform: translateY(-3px);
  background: #cc0000;
  box-shadow: 0 6px 16px rgba(255, 0, 0, 0.35);
}

.play-icon {
  font-size: 1.2rem;
  background: #fff;
  color: #FF0000;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 900;
  transition: background .25s ease, 
              color .25s ease;
}

.btn-video:hover .play-icon {
  background: #fff;
  color: #cc0000;
}
