:root {
  --bg1:#5d3fd3;
  --bg2:#9b7bff;
  --accent:#ff6bb0;
  --muted:#8f8fa3;
  --card:#ffffff;
  --shadow:0 14px 40px rgba(11,9,40,0.22);
  --radius:18px;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;
}
*{box-sizing:border-box}
html,body{margin:0;background:linear-gradient(160deg,var(--bg1),var(--bg2));color:#111}
a{color:inherit;text-decoration:none}


   #inicio{
       margin-top: 5px;
   }
/* =================== NAV =================== */
header {
  position:sticky;
  top:0;
  background:rgba(255,255,255,0.03);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(255,255,255,0.04);
  z-index:1200;
}
.nav-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:12px 0;
}
.brand {
  display:flex;
  align-items:center;
  gap:12px;
}
.logo1 {
  width:100px;
}
.logo {
  width:48px;
  height:48px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-weight:800;
}
nav ul {
  display:flex;
  gap:18px;
  list-style:none;
  margin:0;
  padding:0;
}
nav a {
  color:rgba(255,255,255,0.95);
  font-weight:600;
}
.cta {
  background:#fff;
  color:var(--bg1);
  padding:10px 16px;
  border-radius:12px;
  font-weight:700;
}

/* Botão hambúrguer */
.menu-toggle {
  display:none;
  font-size:30px;
  color:white;
  cursor:pointer;
}

/* Menu responsivo */
@media (max-width: 768px) {
  .menu-toggle {
    display:block;
  }

  nav {
    display:none;
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(8px);
    border-radius:0 0 12px 12px;
    padding:20px 0;
    text-align:center;
  }

  nav.active {
    display:block;
  }

  nav ul {
    flex-direction:column;
    gap:12px;
  }

  .nav-actions {
    flex-direction:column;
    margin-top:12px;
  }
}

/* Container base */
.container {
    margin-top: 0px;
  max-width:1180px;
  margin:0 auto;
  padding:36px;
}

    /* HERO */
    .hero{margin-left: 2%;margin-right: 3%; display:grid;grid-template-columns:1fr 480px;gap:36px;align-items:center;padding:56px 0}
    .badge{display:inline-block;padding:6px 12px;border-radius:999px;background:linear-gradient(90deg,#fff,#f2f2ff);font-weight:700}
    .hero-left h1{font-size:44px;color:#fff;line-height:1.02;margin:12px 0}
    .hero-left p{color:rgba(255,255,255,0.95);margin:18px 0 26px;font-size:18px}
    .hero-actions{display:flex;gap:14px}
    .btn-primary{background:linear-gradient(90deg,var(--accent),#7b61ff);padding:12px 18px;border-radius:12px;color:white;font-weight:800;border:none;cursor:pointer;box-shadow:var(--shadow)}
    .btn-light{background:transparent;border:1px solid rgba(255,255,255,0.14);padding:12px 16px;border-radius:12px;color:white}

   /* floating images widget */
.floating-images {
  position: relative;
  width: 100%;
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.float-wrap {
  position: absolute;
  right: 40px;
  top: 20px;
  width: 360px;
  height: 360px;
  border-radius: 20px;
  background: linear-gradient(180deg,#fff,#fbfbff);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  transform: translateY(0);
  animation: boiar 6s ease-in-out infinite;
}

@keyframes boiar {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-18px); }
  100% { transform: translateY(0); }
}

.float-img {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(20,12,80,0.08);
  transition: transform 300ms;
}

.float-thumb {
  display: flex;
  gap: 8px;
}

.float-thumb img {
  width: 50%;
  border-radius: 8px;
  height: 80px;
  object-fit: cover;
  transition: transform 250ms;
}

.float-wrap:hover .float-img {
  transform: translateY(-6px);
}

.float-wrap:hover .float-thumb img {
  transform: translateY(-6px);
}

    section{margin:60px 0;padding:30px;border-radius:20px;background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));backdrop-filter: blur(6px)}
    h2{color:#fff;margin-bottom:18px}
    .card p{color: #000; font-size: 15px;}
    .cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
    .card{background:var(--card);border-radius:14px;padding:18px;box-shadow:var(--shadow)}

    .chat-sample{background:#f5f7ff;border-radius:12px;padding:14px;height:220px;overflow:auto}
    .msg.user{align-self:flex-end;background:linear-gradient(90deg,#7b61ff,#a29bff);color:white;padding:8px 12px;border-radius:12px;margin:6px 0;max-width:70%}
    .msg.bot{align-self:flex-start;background:#fff;padding:8px 12px;border-radius:12px;margin:6px 0;max-width:75%}

    .queue-wrap{display:flex;gap:12px;flex-wrap:wrap}
    .queue-item{width:120px;height:80px;background:linear-gradient(90deg,#fff,#f6f7ff);border-radius:12px;display:flex;flex-direction:column;align-items:center;justify-content:center;box-shadow:var(--shadow)}

    .monitor{display:flex;gap:18px;align-items:flex-start}
    .monitor .panel{background:#fff;padding:18px;border-radius:12px;box-shadow:var(--shadow);flex:1}

    /* plans floating + pulse */
    .plans{display:grid;grid-template-columns:repeat(5,1fr);gap:18px;align-items:start}
    .plan{background:linear-gradient(180deg,#fff,#fbfbff);padding:18px;border-radius:12px;box-shadow:var(--shadow);text-align:left;position:relative;overflow:hidden;transition:transform 300ms}
    .plan:hover{transform:translateY(-10px)}
    .plan.floaty{animation:floaty 5s ease-in-out infinite}
    @keyframes floaty{0%{transform:translateY(0)}50%{transform:translateY(-10px)}100%{transform:translateY(0)}}
    .plan.pulse::after{content:'';position:absolute;left:0;top:0;width:100%;height:100%;background:linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0));opacity:0;pointer-events:none;animation:blink 2.6s infinite}
    @keyframes blink{0%{opacity:0}50%{opacity:0.12}100%{opacity:0}}
    .plan h3{margin:6px 0}
    .plan .price{font-size:20px;font-weight:800;color:var(--bg1);margin:10px 0}
    .more{color:var(--muted);cursor:pointer;margin-top:8px}
    .features-list{display:none;margin-top:8px}
    .features-list.open{display:block}
      .plan-list {list-style:none; padding-left:0; margin:0 0 10px 0; }
.plan-list li { margin-bottom:4px; color:#222; }
.plan-list .extra { display:none; }
.show-more {
  background: linear-gradient(90deg, #6a00ff, #ff0077);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 6px 10px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 10px;
  transition: background .3s;
}
.show-more:hover { background: linear-gradient(90deg, #ff0077, #6a00ff); }
.price-box {
  background: linear-gradient(90deg, #7b2ff7, #f107a3);
  color: white;
  text-align:center;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
    
    .hero {
  /* REMOVIDO: margin-left / margin-right */
  display: grid;
  /* 1fr para o conteúdo principal, e o lado direito ocupa no máximo 480px ou 40% */
  grid-template-columns: 1fr minmax(280px, 480px);
  gap: 28px;
  align-items: center;
  padding: 48px 0;
}

/* texto responsivo do h1 */
.hero-left h1 {
  font-size: clamp(28px, 5.2vw, 44px); /* escala entre mobile e desktop */
  color: #fff;
  line-height: 1.02;
  margin: 12px 0;
}

/* se houver overflow ainda, esconder barra horizontal (provisório seguro) */
html, body {
  overflow-x: hidden;
}

/* CARDS: usar grid responsivo que quebra em colunas automaticamente */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

/* PLANS responsivo também */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

/* ajustes extra para elementos com largura fixa (ex.: queue-item) */
.queue-item { max-width: 100%; }

/* REDUÇÕES E BREAKPOINTS */
/* tablet */@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 36px 0;
  }

  /* CORREÇÃO FUNDAMENTAL */
  .floating-images {
    height: auto !important;
  }

  .float-wrap {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 18px;
  }

  .plans {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

/* CORREÇÃO FINAL DA FLOAT NO MOBILE */
@media (max-width: 768px) {

  .floating-images {
    position: relative !important;
    height: auto !important;
    margin-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .float-wrap {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    top: auto !important;
    right: auto !important;
    margin-top: 20px !important;  /* <-- substitui o margin-top antigo */
    animation: none !important;
    transform: none !important;
  }

}

/* Ajuste geral para evitar scroll horizontal */
.card, .queue-item, .plan, .testimonial, .panel, .monitor .panel * {
  min-width: 0;
}


/* pequeno ajuste para evitar que ícones/boxes causem overflow */
* { -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }

    .testimonials{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
    .testimonial{background:#fff;padding:16px;border-radius:12px;box-shadow:var(--shadow)}

    .faq{display:flex;flex-direction:column;gap:12px}
    .faq-item{background:var(--card);padding:14px;border-radius:12px;cursor:pointer;box-shadow:0 8px 30px rgba(11,9,40,0.06)}
    .faq-item p{display:none;margin-top:6px;color:#444}

    footer{color:rgba(255,255,255,0.95);padding:36px 0}

    @media (max-width:1100px){.plans{grid-template-columns:repeat(2,1fr)}.hero{grid-template-columns:1fr}}
    @media (max-width:600px){.plans{grid-template-columns:1fr}.hero{grid-template-columns:1fr}.float-wrap{position:static;width:100%;height:auto;margin-top:18px}}
    /* depoimentos*/

     /* ===== DEPOIMENTOS ===== */
  .testimonials-section{
    width:100%;
    margin: 3rem 0 2rem;
  }
  .testimonials-section .section-title{ margin-bottom: 1.4rem; }
  .testimonials-wrap{
    background: rgba(255,255,255,0.10); /* cor clara sobre o fundo escuro */
    border-radius: 16px;
    padding: 1.6rem;
    box-shadow: 0 0 18px rgba(0,0,0,0.25);
  }
  .testimonials{
    display:flex; flex-wrap:wrap; gap:1.2rem; justify-content:center;
  }
  .testimonial{
    background:#f7fafb;  /* cartão claro */
    color:#102a33;
    border-radius: 14px;
    padding: 1rem 1rem 1.2rem;
    width: 310px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    position: relative;
  }
  .testimonial .quote-icon{
    position:absolute; right:10px; top:10px; color:#9bbcc6;
  }
  .testimonial .header{
    display:flex; align-items:center; gap:.8rem; margin-bottom:.6rem;
  }
  .testimonial img{
    width:64px; height:64px; border-radius:50%; object-fit:cover;
    border: 3px solid #e8f1f4;
  }
  .testimonial .name{
    font-weight:800; color:#0d343f; display:flex; align-items:center; gap:.3rem;
  }
  .testimonial .name .material-symbols-rounded{ font-size:18px; color:#1e88e5; }
  .testimonial .role{ font-size:.9rem; color:#3a6b78; }
  .stars{
    display:flex; gap:2px; margin:.35rem 0 .5rem;
  }
  .stars .material-symbols-rounded{ font-size:20px; color: var(--gold); }
  .testimonial p{ font-style: italic; color:#1e3d46; }

/* ======== CARROSSEL EM TODAS AS TELAS ======== */
/* ======== CONTAINER DO CARROSSEL ======== */
.carousel-wrapper {
    position: relative;
    width: 100%;
}

.plans-container {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    scroll-behavior: smooth;
}

.plan {
    scroll-snap-align: center;
    min-width: 85%;
    flex: 0 0 auto;
}

/* Ocultar a barra de scroll */
.plans-container::-webkit-scrollbar {
    display: none;
}

/* ======== SETAS ======== */
.arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffffaa;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    z-index: 10;
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}

/* ======== DESKTOP AJUSTE ======== */
@media (min-width: 769px) {
    .plan {
        min-width: 350px;
    }
}




/* ======== SESSÃO DO CELULAR ======== */

.app-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 80px auto;
    padding: 40px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(6px);
}

.app-left h2 {
    color: #fff;
    font-size: 38px;
    margin-bottom: 20px;
}

.app-left p {
    color: #f0f0f0;
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.app-benefits {
    list-style: none;
    padding: 0;
}

.app-benefits li {
    color: #fff;
    margin-bottom: 10px;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ======== CELULAR ANIMADO ======== */
.phone-floating {
    width: 260px;
    height: 520px;
    margin: auto;
    animation: flutuar 5s ease-in-out infinite;
}

@keyframes flutuar {
    0% { transform: translateX(0px) translateY(0px); }
    50% { transform: translateX(40px) translateY(-20px); }
    100% { transform: translateX(0px) translateY(0px); }
}

/* MOLDURA DO CELULAR */
.phone-frame {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 40px;
    border: 10px solid #111;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* IMAGEM DENTRO DA TELA DO CELULAR */
.phone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ======== RESPONSIVO ======== */
@media (max-width: 768px) {
    .app-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .phone-floating { margin-top: 20px; }
}


/* ===== LOGO FLUTUANTE NA PÁGINA ===== */
.floating-logo {
    position: fixed;
    top: 20%;
    left: 10%;
    width: 180px;                /* tamanho da logo */
    opacity: 0.5561994457360;               /* quase transparente */
    pointer-events: none;        /* não atrapalha cliques */
    animation: moveLogo 18s infinite ease-in-out;
    z-index: 1;                   /* por trás do conteúdo */
}

/* Animação de movimento suave pela tela */
@keyframes moveLogo {
    0%   { transform: translate(0, 0) scale(1); }
    25%  { transform: translate(40vw, -5vh) scale(1.05); }
    50%  { transform: translate(20vw, 20vh) scale(0.95); }
    75%  { transform: translate(-10vw, 10vh) scale(1.1); }
    100% { transform: translate(0, 0) scale(1); }
}

/* CORRIGE O BLOCO DAS IMAGENS QUE ESTÁ PASSANDO POR CIMA */
/* Força o carrossel a não ultrapassar 100% no mobile */
@media (max-width: 768px) {

  .carousel-wrapper,
  .plans-container,
  .plan {
    max-width: 100% !important;
    width: 100% !important;
  }

  .plans-container {
    overflow-x: hidden !important; /* impede sair para o lado */
    padding: 0 !important;
    gap: 12px !important;
  }

  .plan {
    min-width: 100% !important; /* impede de criar barra lateral */
  }
}
/* bloqueia qualquer imagem maior que a tela */
img {
  max-width: 100% !important;
  height: auto !important;
}
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00c853, #009624);
    color: #fff;
    padding: 14px 22px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 150, 70, 0.35);
    transition: transform 0.25s, box-shadow 0.25s;
}

.btn-whatsapp img {
    width: 26px;
    height: 26px;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 140, 60, 0.45);
}

