.elementor-kit-8{--e-global-color-primary:#051038;--e-global-color-secondary:#5DBBF5;--e-global-color-text:#FFFFFF;--e-global-color-accent:#0C2786;--e-global-color-58b6c7d:#000000;--e-global-typography-primary-font-family:"Montserrat";--e-global-typography-primary-font-weight:700;--e-global-typography-secondary-font-family:"Montserrat";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Montserrat";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Montserrat";--e-global-typography-accent-font-weight:500;--e-global-typography-6494d29-font-family:"Montserrat";--e-global-typography-6494d29-font-size:1.3rem;--e-global-typography-6494d29-font-weight:600;--e-global-typography-ecbbac1-font-family:"Montserrat";--e-global-typography-ecbbac1-font-size:0.9rem;--e-global-typography-ecbbac1-font-weight:400;--e-global-typography-ecbbac1-line-height:1.4rem;background-color:transparent;font-family:"Montserrat", Sans-serif;background-image:linear-gradient(180deg, #051038 20%, #000000 80%);overscroll-behavior:none;}.elementor-kit-8 e-page-transition{background-color:#FFBC7D;}.elementor-kit-8 h1{font-family:"Montserrat", Sans-serif;}.elementor-kit-8 h2{font-family:"Montserrat", Sans-serif;}.elementor-kit-8 h3{font-family:"Montserrat", Sans-serif;}.elementor-kit-8 h4{font-family:"Montserrat", Sans-serif;}.elementor-kit-8 h5{font-family:"Montserrat", Sans-serif;}.elementor-kit-8 h6{font-family:"Montserrat", Sans-serif;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:80%;}.e-con{--container-max-width:80%;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:767px){.elementor-kit-8{background-color:transparent;background-image:linear-gradient(180deg, #051038 50%, #000000 100%);}.elementor-section.elementor-section-boxed > .elementor-container{max-width:90%;}.e-con{--container-max-width:90%;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}}/* Start custom CSS */:root{
  --primary: #2563eb;
  --primary-strong: #3b78ff;
  --accent: #0088ff;
  --bg-card: rgba(255,255,255,0.03);
  --glass-border: rgba(93,187,245,0.65);
  --white-faint: rgba(255,255,255,0.25);
  --card-shadow: rgba(0,0,0,0.25);
}

/* =========================
   VALORES / TIMELINE
   ========================= */

.valores-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  box-sizing: border-box;
  height: 100%;
}

.valores {
    display: flex ;
    flex-direction: row;
    gap: 100px;
}

/* BOTÃO "VALORES" */
.label-valores {
  background-color: var(--primary);
  color: #000;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: bold;
  margin-right: 20px;
  margin-bottom: 20px;
  font-size: 16px;
  flex: 0 0 auto;
  z-index: 3;
  cursor: pointer;
  transition: background-color 0.28s ease, color 0.28s ease;
}
.label-valores:hover {
  background-color: #3a3a3a;
  color: #fff;
}

/* ===== TIMELINE DESKTOP ===== */
.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
  max-width: 100%;
  flex-direction: row;
  flex-grow: 1;
  width: 100%;
  
}
.timeline::before {
  content: "";
  position: absolute;
  top: calc(50%-2px);
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 1;
  opacity: 0;
  transition: transform 1.6s ease-in-out, opacity 0.6s ease-in-out;
}
.timeline.in-view::before {
  transform: scaleX(1);
  opacity: 1;
}

/* STEP ITEM */
.step {
  position: relative;
  text-align: center;
  z-index: 2;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.circle {
  width: 26px;
  height: 26px;
  border: 4px solid var(--primary);
  border-radius: 50%;
  background-color: #ffffff;
  position: relative;
  transition: background-color 0.25s ease, border-color 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle.done {
  background-color: var(--primary);
  border-color: var(--primary);
}
.circle.done::before {
  content: "✓";
  color: #000;
  font-size: 15px;
  font-weight: bold;
}
.step:hover .circle {
  background-color: #3a3a3a;
  border-color: #3a3a3a;
}
.step-text {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  position: absolute;
  top: -100%;
  width: max-content;
  
}

/* ======== MOBILE TIMELINE ======== */
@media (max-width: 767px) {

  .valores{
      flex-direction: column;
      gap: 20px;
  }
  .timeline{
    display: flex;
    flex-direction: column;
    height: 250px;
    align-items: flex-start;
    width:26px;

  }
  .timeline::before {
    top: 0;
    bottom: 0;
    left: calc(50% - 2px) ;
    width: 4px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top center;
  }
  .timeline.in-view::before {
    transform: scaleY(1);
  }
  .step {
    /*align-items: flex-start;*/
  }
  
  .step-text{
      left: 38px;
      transform: translateY(25%);
  }
  
  .circle {
    position: absolute;
    left: 0;
    top: 0;
  }
  
}


/* =========================
   CELULAR / ANIMAÇÕES
   ========================= */

/* CONTAINER */
.animacao-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CELULAR */
.animar-celular {
  position: relative;
  transform: rotate(-4deg);
  opacity: 0;
  animation: celularBounce 1.3s ease-out forwards;
  z-index: 3;
}

/* CONTROLE SUAS VENDAS */
.caixa-controle {
  position: absolute;
  top: 30%;
  left: 52%;
  font-size: 1.3rem;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(59, 120, 255, 0.9);
  color: var(--primary-strong);
  padding: 4px 20px 4px 100px;
  border-radius: 14px;
  white-space: nowrap;
  z-index:1;
  opacity: 0;
  animation: entrarDireita 1.2s ease-out forwards, floatSoft 6s ease-in-out infinite;
  animation-delay: 0.8s;
  transition: all .3s ease-in-out;
  line-height: 1.5rem;
}
.caixa-controle:hover {
  box-shadow: 0 0 15px rgba(59,120,255,0.55);
  border-color: rgba(59,120,255,1);
}

/* CAIXA DE VALOR */
.area-valor {
  position: absolute;
  bottom: 10%;
  left: 48%;
  transform: translateX(-50%);
  z-index: 6;
}
.caixa-valor {
  background: var(--accent);
  color: white;
  font-size: 2.2rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 10px;
  box-shadow: 0px 18px 45px rgba(0, 119, 255, 0.45);
  opacity: 0;
  transform: translateY(60px) scale(0.3);
  animation: subirCrescendo 1.8s ease-out forwards;
  animation-delay: 1.3s;
}

/* ANIMAÇÃO COM CRESCIMENTO */
@keyframes subirCrescendo {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.3);
  }
  70% {
    opacity: 1;
    transform: translateY(-8px) scale(1.08);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* RESPONSIVIDADE GERAL */
@media (max-width: 1366px){
  .animacao-container {
    width: 80%;
  }
}
/* Tablet adjustments */
@media (max-width: 1024px) {
  .caixa-controle {
    left: 55%;
    font-size: 1rem;
    top: 45%;
  }
  .caixa-valor{
        width: max-content;
  }
}
/* Mobile adjustments */
@media (max-width: 768px) {
  .animacao-container { height: 380px; }

  .animar-celular { 
    transform: translateX(-50%) rotate(-2deg);
  }

  .caixa-controle { 
    top: 32%;
    left: 48%;
    padding-left: 50px;
    font-size: .9rem;
    line-height: 1.2rem;
    transform: translateX(-50%);
  }

  .caixa-valor {
    font-size: 0.8rem;
    animation: subirCrescendo 1.6s ease-out forwards;
  
  }
  .area-valor{
    left: 10% !important;
    bottom: 25%;
      
  }
}

/* Small screens */
@media (max-width: 480px) {
  .caixa-valor {
    font-size: 1.4rem;
  }
}

/* ANIMAÇÕES */
@keyframes celularBounce {
  0% {opacity:0; transform:translateY(-260px) scale(.9) rotate(-6deg);}
  70% {opacity:1; transform:translateY(20px) scale(1.04) rotate(-2deg);}
  100% {opacity:1; transform:translateY(0) scale(1) rotate(-2deg);}
}
@keyframes entrarDireita {
  0% {opacity:0; transform:translateX(120px);}
  80% {opacity:1; transform:translateX(-10px);}
  100% {opacity:1; transform:translateX(0);}
}
@keyframes floatSoft {
  0% { transform: translateY(-50%) }
  50% { transform: translateY(-56%) }
  100% { transform: translateY(-50%) }
}

@media (max-width: 1024px) {
  .animacao-container {
  position: relative;
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
}
}
/* =========================
   BUTTON (única definição)
   ========================= */
.btn-responsivo {
  display: block;
  margin: 20px auto 0;
  padding: 10px 24px;
  background: rgba(38, 60, 90, 0.55);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 16px;
  border-radius: 40px;
  text-align: center;
  border: 1.5px solid var(--white-faint);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.35s ease;
  width: max-content;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  box-sizing: border-box;
}
.btn-responsivo:hover {
  background: rgba(70, 110, 150, 0.75);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 14px rgba(37, 99, 235, 0.45);
  transform: translateY(-2px);
  color: #fff;
}
/* Button responsive variants */
@media (max-width: 767px) {
  .btn-responsivo {
    display: inline-block;
    padding: 8px 14px;
    font-size: 14px;
    line-height: 1.3;
    border-radius: 22px;
    width: auto;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .btn-responsivo {
    padding: 6px 14px;
    font-size: 14px;
    border-radius: 26px;
  }
}
@media (min-width: 1025px) and (max-width: 1366px) {
  .btn-responsivo {
    padding: 10px 16px;
    font-size: 15px;
    border-radius: 28px;
  }
}
@media (min-width: 1440px) {
  .btn-responsivo {
    padding: 10px 24px;
    font-size: 16px;
    border-radius: 32px;
  }
}

/* =========================
   TEXTOS / TITULOS
   ========================= */
/* Só aplica quando NÃO estiver no editor do Elementor */
.titulo-azul {
  color: #0059ff;
}


/* =========================
   CARD INVESTIMENTO
   ========================= */
   
.box-investimento {
  width: 100%;
  max-width: 480px; /* ajuste aqui para deixar mais estreito ou mais largo */
  height: auto;

  padding: 18px 20px;
  margin: 0; /* centraliza */

  border: 1.5px solid var(--glass-border);
  border-radius: 24px;
  background: var(--bg-card);
  box-shadow: 0 4px 14px var(--card-shadow);
  backdrop-filter: blur(4px);

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;

  transition: 0.6s ease-out;
}


 

/* ---------------- responsive ---------------- */
@media (max-width: 980px){
  .case-grid { grid-template-columns: 1fr; gap: 18px; }
  .left-media .video-thumb { height: 560px; }
  .stat-card { order: 2; }
  .screenshot-card { order: 3; }
  .left-media { order: 1; }
}

  
  
  
  
  
  
  
  
/* opcional: em telas menores, volta a ocupar 1 coluna só */
@media (max-width: 768px) {
  .box-investimento {
    grid-column: span 1;
  }
}

.box-investimento.active {
  opacity: 1 !important;
  transform: scale(1);
}


/* Se quiser que o card ocupe mais colunas no grid */
.box-investimento {
  grid-column: span 2; /* Ocupa DUAS colunas do grid */
  grid-row: span 2;    /* Ocupa DUAS linhas do grid */
}

.box-investimento.active {
  opacity: 1 !important;
  transform: scale(1);
}


/* Títulos e fontes */
.titulo-principal {
  font-family: 'Montserrat', sans-serif;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 24px;
  margin: 0;
  line-height: 1.3;
}

.titulo-principal span {
  font-weight: 400;
  font-size: 20px;
  display: block;
  margin-top: 4px;
}

.valor-animado {
  font-family: 'Montserrat', sans-serif;
  color: #5DBBF5;
  font-weight: 800;
  font-size: 38px; /* Aumentado para acompanhar o card maior */
  margin-top: 12px;
  line-height: 1.1;
}


/* Card responsiveness */
@media (max-width: 1024px) {
  .box-investimento {
    max-width: 460px;
    padding: 22px 20px;
  }
  .titulo-principal { font-size: 15px; }
  .titulo-principal span { font-size: 15px; }
  .valor-animado { font-size: 25px; }
}
@media (max-width: 1366px) {
  .box-investimento {
    max-width: 360px;
    padding: 22px 24px;
  }
  .titulo-principal { font-size: 17px; }
  .titulo-principal span { font-size: 15px; }
  .valor-animado { font-size: 25px; }
}

/* =========================
   GENERIC CARD (UI)
   ========================= */
.card {
  position: relative;
  border-radius: 16px;
  z-index: 1;
  background: linear-gradient(135deg, rgba(59,120,255,0.05) 0%, rgba(59,120,255,0.02) 100%) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
  overflow: visible !important;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  border-radius: 14px;
  z-index: -1;
  pointer-events: none;
}
.card::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 18px;
  z-index: -2;
  pointer-events: none;
  opacity: 1;
  background: conic-gradient(from 0deg at 50% 50%, #1e3a8a 0deg, #3b82f6 90deg, #60a5fa 180deg, #3b82f6 270deg, #1e3a8a 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 3px;
}
.card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 32px rgba(59, 120, 255, 0.3), 0 4px 16px rgba(139, 92, 246, 0.2) !important;
}
.card:active { transform: translateY(-2px) !important; transition-duration: 0.1s; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes gradientShift {
  0%,100% { background: linear-gradient(135deg, rgba(30,58,138,0.08) 0%, rgba(30,58,138,0.03) 100%); }
  50%   { background: linear-gradient(135deg, rgba(59,130,246,0.12) 0%, rgba(96,165,250,0.06) 100%); }
}
.card.no-entrance { opacity: 1 !important; transform: none !important; animation: gradientShift 4s ease-in-out infinite; }

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .card { animation: none !important; opacity: 1; transform: none !important; }
  .card:hover { transform: none !important; }
}

/* Card responsive paddings */
@media (max-width: 767px) { .card { padding: 16px 18px; border-radius: 14px; } .card::after { border-radius: 16px; } }
@media (min-width: 768px) and (max-width: 1024px) { .card { padding: 22px 28px; border-radius: 15px; } }
@media (min-width: 992px) and (max-width: 1366px) { .card { padding: 28px 34px; max-width: 650px; margin: auto; } }
@media (min-width: 1200px) { .card { max-width: 900px; margin: auto; padding: 36px 48px; } }

/* =========================
   LOGO STACK / INSTAGRAM / IFOOD
   ========================= */
.logo-stack-container {
  position: relative;
  overflow: visible;
  min-height: 240px;
  margin-top: 0;
  padding-top: clamp(30px, 6vh, 90px);
}
.logo-item {
  position: absolute;
  top: calc(50% + clamp(-40px, -4vh, -10px));
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 2s ease-in-out, opacity 2s ease-in-out, filter 2s ease-in-out;
  will-change: transform, opacity;
}
.logo-stack-container img {
  display: block;
  max-width: none !important;
  height: auto !important;
  user-select: none;
  pointer-events: none;
}
.logo-phone { z-index: 50; }
.logo-instagram { z-index: 60; left: 25%; transform: translate(-50%, -50%) rotate(-8deg); }
.logo-ifood { z-index: 55; left: 75%; transform: translate(-50%, -50%) rotate(6deg); }

.img-phone { width: clamp(320px, 45vw, 680px); position: relative; z-index: 50; }
.phone-shadow {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translateX(-50%);
  width: clamp(240px, 28vw, 500px);
  height: clamp(30px, 5vw, 90px);
  background: radial-gradient(closest-side, rgba(6,10,30,0.55), rgba(6,10,30,0.18) 40%, rgba(6,10,30,0.03) 70%, transparent 100%);
  border-radius: 50%;
  filter: blur(18px);
  opacity: .95;
  z-index: 18;
}
.img-instagram { width: clamp(100px, 10vw, 160px); border-radius: 16px; filter: drop-shadow(0 14px 28px rgba(0,0,0,0.38)); }
.img-ifood { width: clamp(140px, 16vw, 240px); border-radius: 14px; filter: drop-shadow(0 14px 26px rgba(0,0,0,0.28)); }

/* Swap states */
.logo-stack-container.swap-1 .logo-instagram {
  transform: translate(-50%, -50%) translateX(85px) rotate(3deg) scale(1.05);
  z-index: 70;
  opacity: 1;
}
.logo-stack-container.swap-1 .logo-ifood {
  transform: translate(-50%, -50%) translateX(-85px) rotate(-3deg) scale(0.88);
  opacity: .55;
  z-index: 30;
}
.logo-stack-container.swap-2 .logo-instagram {
  transform: translate(-50%, -50%) rotate(-6deg) scale(0.80);
  opacity: .55;
  z-index: 30;
}
.logo-stack-container.swap-2 .logo-ifood {
  transform: translate(-50%, -50%) rotate(6deg) scale(1.12);
  opacity: 1;
  z-index: 70;
}

/* Responsiveness for logo stack */
@media (max-width: 900px) {
  .logo-stack-container { min-height: 200px; }
  .logo-item { top: calc(50% + clamp(-30px, -3vh, -8px)); }
  .img-phone { width: clamp(260px, 70vw, 480px); }
}
@media (max-width: 700px) {
  .logo-stack-container { min-height: 160px; }
  .logo-item { top: calc(50% + clamp(-25px, -2.5vh, -6px)); }
  .img-phone { width: clamp(240px, 75vw, 420px); }
  .img-instagram { width: 90px; }
  .img-ifood { width: 120px; }
}/* End custom CSS */