* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #07111f;
  color: #f8fafc;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px 10%;
  background:
    linear-gradient(90deg, rgba(3, 7, 18, 0.94), rgba(3, 7, 18, 0.76)),
    url("imagens/textura-smartreach.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(59,130,246,0.22), transparent 35%);
  pointer-events: none;
}

.content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  animation: fadeUp 0.9s ease forwards;
}

.empresa-nome {
    display: inline-block;
    color: #60a5fa;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 8px;
    text-transform: uppercase;

    padding: 12px 22px;

    border: 1px solid rgba(96,165,250,0.45);
    background: rgba(59,130,246,0.10);

    border-radius: 999px;

    margin-bottom: 24px;
}

h1 {
  font-size: clamp(42px, 5vw, 52px);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.subtitle {
  font-size: 20px;
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 680px;
}

.buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 50px;
  padding: 0 24px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.28);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.38);
}

.btn.secondary {
  background: rgba(15, 23, 42, 0.65);
  color: #ffffff;
  border: 1px solid rgba(96, 165, 250, 0.45);
}

.btn.secondary:hover {
  transform: translateY(-2px);
  border-color: #3b82f6;
  background: rgba(37, 99, 235, 0.16);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
  animation: floatDown 1.8s ease-in-out infinite;
}

.scroll-indicator strong {
  color: #60a5fa;
  font-size: 26px;
}

.solutions {
  padding: 90px 10%;
  background: linear-gradient(180deg, #07111f, #0f172a);
}

.solutions h2 {
  font-size: clamp(32px, 5vw, 54px);
  margin-bottom: 16px;
}

.descricao-secao {
  color: #cbd5e1;
  font-size: 18px;
  max-width: 760px;
  line-height: 1.6;
  margin-bottom: 38px;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: block;
  text-decoration: none;
  color: white;
  padding: 30px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.18);
  transition: 0.3s ease;
  min-height: 190px;
}

.card.destaque {
  background: linear-gradient(145deg, rgba(37,99,235,0.25), rgba(15,23,42,0.9));
  border-color: rgba(96,165,250,0.55);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.icone {
  font-size: 30px;
}

.card-header h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
}

.card p {
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 17px;
  max-width: 900px;
}

.card-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 16px;
  color: #60a5fa;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(96, 165, 250, 0.7);
  box-shadow: 0 24px 50px rgba(0,0,0,0.32);
}

.card:hover .card-link {
  color: #93c5fd;
  transform: translateX(4px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatDown {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
section {
    padding: 60px 8%;
}

.card h3 {
    margin-top: 0;
    color: #22c55e;
}

.download {
    text-align: center;
}
p {
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.6;
    max-width: 760px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #22c55e;
}

.tag {
    color: #22c55e;
    font-weight: bold;
    margin-bottom: 14px;
}
header {
    padding: 28px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1e293b;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #020617;
    color: #fff;
}
.smartreach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 28px;
}
.download p {
    margin-left: auto;
    margin-right: auto;
}
.download .buttons {
    justify-content: center;
}
.download h2 {
    font-size: 42px;
    margin-bottom: 12px;
}
.app-showcase {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.app-card img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin-top: 18px;
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.app-voltar {
    justify-content: center;
    margin-top: 46px;
}
.solutions {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(7, 17, 31, 0.94), rgba(15, 23, 42, 0.96)),
        url("imagens/textura-smartreach.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
body > section {
    background:
        linear-gradient(180deg, rgba(7, 17, 31, 0.94), rgba(15, 23, 42, 0.96)),
        url("imagens/textura-smartreach.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
/* Esconde a seta "Role para conhecer as soluções" no celular */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}
.como-funciona {
  padding: 90px 8%;
  text-align: center;
}

.como-funciona h2 {
  font-size: 42px;
  margin-bottom: 16px;
}

.secao-subtitulo {
  max-width: 720px;
  margin: 0 auto 45px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.6;
}

.passos-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:50px;
}

.passo-card {
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: left;
}

.passo-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: #22c55e;
  color: #020617;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 18px;
}

.passo-card h3 {
  color: #22c55e;
  font-size: 20px;
  margin-bottom: 10px;
}

.passo-card p {
  color: #e5e7eb;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .passos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .passos-grid {
    grid-template-columns: 1fr;
  }

  .como-funciona h2 {
    font-size: 32px;
  }
}
.plans-page {
  min-height: 100vh;
  padding: 100px 8%;
  text-align: center;
}

.plans-page h1 {
  font-size: 48px;
  margin-bottom: 18px;
}

.plans-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.plan-card {
  position: relative;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 22px;
  padding: 42px 32px;
  text-align: left;
}

.plan-card.destaque {
  border-color: #22c55e;
  transform: translateY(-18px);
}

.plan-card h3 {
  font-size: 24px;
  margin-bottom: 18px;
}

.plan-card strong {
  display: block;
  font-size: 38px;
  margin-bottom: 12px;
}

.plan-card p {
  color: #cbd5e1;
  margin-bottom: 28px;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.plan-card li {
  margin-bottom: 14px;
  color: #e5e7eb;
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #22c55e;
  color: #020617;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card.destaque {
    transform: none;
  }
}
/* ==========================
   TESTE SEM RISCO
========================== */

.garantia-section{
    padding:60px 8% 0;
}

.garantia-box{

    max-width:900px;
    margin:auto;

    background:rgba(15,23,42,.78);

    border:1px solid rgba(59,130,246,.25);

    border-radius:22px;

    padding:60px;

    text-align:center;

}

.garantia-badge{

    display:inline-block;

    background:#22c55e;

    color:#06131f;

    font-weight:700;

    padding:10px 22px;

    border-radius:999px;

    margin-bottom:25px;

}

.garantia-box h2{

    font-size:40px;

    margin-bottom:20px;

}

.garantia-box p{

    font-size:18px;

    color:#cbd5e1;

    line-height:1.8;

    margin-bottom:20px;

}

.garantia-texto{

    color:#94a3b8;

    margin-bottom:35px;

}
.faq-page {
  min-height: 100vh;
  padding: 100px 8%;
  text-align: center;
}

.faq-page h1 {
  font-size: 48px;
  margin-bottom: 18px;
}

.faq-lista {
  max-width: 900px;
  margin: 60px auto 0;
  display: grid;
  gap: 20px;
  text-align: left;
}

.faq-item {
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 18px;
  padding: 28px;
}

.faq-item h3 {
  color: #22c55e;
  margin-bottom: 12px;
  font-size: 20px;
}

.faq-item p {
  color: #cbd5e1;
  line-height: 1.7;
}

.faq-cta {
  margin: 70px auto 0;
  max-width: 760px;
  padding: 45px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(34, 197, 94, 0.28);
}

.faq-cta h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.faq-cta p {
  color: #cbd5e1;
  margin-bottom: 28px;
}
/* ===========================
   BOTÃO WHATSAPP
=========================== */

.whatsapp-float{

    position:fixed;

    right:28px;

    bottom:28px;

    width:64px;

    height:64px;

    border-radius:50%;

    background:linear-gradient(135deg,#25D366,#1EBE57);

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:
        0 10px 30px rgba(0,0,0,.35),
        0 0 0 6px rgba(37,211,102,.10);

    transition:.25s ease;

    z-index:9999;

}

.whatsapp-float img{

    width:34px;

    height:34px;

}

.whatsapp-float:hover{

    transform:translateY(-4px) scale(1.05);

    box-shadow:
        0 18px 45px rgba(0,0,0,.45),
        0 0 0 8px rgba(37,211,102,.18);

}
/*=========================
      FOOTER
=========================*/

.site-footer{
    padding:25px 8% 40px;
    text-align:center;

    background:
        linear-gradient(180deg, rgba(7,17,31,.94), rgba(15,23,42,.96)),
        url("imagens/textura-smartreach.jpg");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.site-footer .container{
    max-width: 900px;
    margin: 0 auto;
}

.footer-logo p{

    margin:12px auto 0;

    max-width:520px;

    color:#94a3b8;

}

.footer-links{

    margin:25px 0 18px;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:28px;

}

.footer-links a{

    color:#ffffff;

    text-decoration:none;

    font-weight:600;

    transition:.25s;

}

.footer-links a:hover{

    color:#3b82f6;

}

.footer-copy{

    color:#64748b;

    font-size:14px;

}