/* =======================================================
   Sully — Bootstrap 5.3 + Custom CSS
   Focus: faithful structure + Avatar-inspired neon/bioluminescent mood
   ======================================================= */

:root {
  /* Core */
  --bg: #0a0f0b;
  --bg2: #070b08;
  --text: #eef3ef;
  --text-primary: #BCF244;
  --text-orange: #F27243;
  --muted: rgba(238,243,239,.68);

  /* Typography */
  --font-sans: "Poppins", sans-serif;
  font-size: calc(1rem + ((1vw - 7.68px) * 0.6944));
  min-height: 0vw;

  /* Avatar-inspired accents */
  --lime: #b7ff2a;
  --aqua: #36ffd1;
  --acid: #6bff2a;

  /* Surfaces */
  --panel: rgba(255,255,255,.04);
  --panel2: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.08);

  /* Radius */
  --r-xl: 28px;
  --r-lg: 22px;
  --r-md: 16px;
  --r-sm: 12px;

  /* Shadows */
  --shadow: 0 18px 70px rgba(0,0,0,.55);

  /* Layout */
  --maxw: 1200px;
  --mediumw: 960px;
  --fullw: 76%;
  --pad-x: 32px;


  /* seleção padrão */
  ::selection{
    background: #01F635;
    color: #1A1B18; /* ajuste se seu fundo for escuro */
  }
  ::-moz-selection{
    background: #01F635;
    color: #1A1B18;
  }


} /* /:root */


/***
 ------- Base
 ***/
html, body{
  height: 100%;
}

body.sully {
  font-size: 16px;
  color: var(--text);
  font-family: var(--font-sans);
  overflow-x: hidden;
  background: #1A1B18;
}

.text-secondary {
  color: #b7bdb9 !important;
}

i.bi {
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
}

a { color: inherit; }
a:hover { color: inherit; }
.lime {
  color: var(--text-primary);
}

.container-custom {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.container-medium {
  max-width: var(--mediumw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.container-fullw {
  max-width: var(--fullw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}


/***
 ------- Header
 ***/
.site-header {
  padding-top: 24px;
  pointer-events: none;
}
.site-header .nav-pill {
  pointer-events: auto;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(26,27,24,.50);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 6px 24px;
}

.brand-name {
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: .2px;
}
.brand-name:hover {
  color: #e7ffb1;
}

.nav-link-pill {
  position: relative;
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  opacity: .9;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background .2s ease, opacity .2s ease;
}
.nav-link-pill:hover {
  background: rgba(255,255,255,.06);
  opacity: 1;
}

.nav-link-pill.cases-nav span {
  position: absolute;
  top: -1px;
  margin-left: -10px;
  display: inline-block;
  font-size: 11px;
  font-weight: 100;
  color: #d4d4d4;
}
.nav-link-pill.adota-nav:after {
  content: "®";
  position: absolute;
  top: 4px;
  margin-left: 0px;
  display: inline-block;
  font-size: 13px;
  font-weight: 100;
}

/***
 ------- SECTIONS: Hhero
 ***/
.hero {
  position: relative;
  padding-top: 110px;
  padding-bottom: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 600px at 20% 20%, rgba(54,255,209,.50), transparent 60%),
    radial-gradient(1200px 650px at 80% 0%, rgba(183,255,42,.60), transparent 55%),
    linear-gradient(90deg, rgba(0,0,0,.30), rgba(0,0,0,.05));
  filter: saturate(1.12) contrast(1.05);
}

.hero-inner {
  padding-top: 30px;
  padding-bottom: 18px;
}

.kicker {
  font-size: 12px;
  letter-spacing: .22em;
  color: rgba(238,243,239,.85);
}

.hero-title {
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.02em;
  font-size: clamp(54px, 7.4vw, 132px);
  color: rgba(0,0,0,.0);
  -webkit-text-stroke: 2px rgba(0,0,0,.0);
  background: linear-gradient(90deg, rgba(10,15,11,.10), rgba(10,15,11,.10));
  text-shadow: 0 0 0 rgba(0,0,0,0);
  mix-blend-mode: overlay;
  position: relative;
}

/* A more faithful "big type" feel using gradient fill */
.hero-title {
  background: linear-gradient(90deg, rgba(12,15,12,.38), rgba(12,15,12,.06));
  -webkit-background-clip: text;
  background-clip: text;
  color: rgba(12,15,12,.28);
}

.hero-sub {
  font-size: 18px;
  color: rgba(12,15,12,.75);
  font-weight: 600;
  mix-blend-mode: multiply;
}

.hero-copy .lead-copy {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(238,243,239,.88);
  max-width: 52ch;
}

.availability-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(8,10,9,.35);
  backdrop-filter: blur(10px);
  font-size: 13px;
}
.pulse-dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(183,255,42,.45);
}

.hero-portrait-wrap{
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.18);
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
  transform: translateZ(0);
}
.hero-portrait{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0) contrast(1.1) brightness(.95);
  transform: scale(1.03);
}
.hero-portrait-glow{
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 30% 30%, rgba(54,255,209,.28), transparent 45%),
              radial-gradient(circle at 70% 10%, rgba(183,255,42,.22), transparent 50%);
  mix-blend-mode: screen;
  pointer-events: none;
}


/* SPLINE Section */
.section-spline {
  padding: 0 !important;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* altura real do embed */
.section-spline .spline-wrap {
  width: 100%;
  height: 100svh !important;   /* mobile correto */
  height: 100vh !important;    /* fallback */
  min-height: 320px;
}

/* iframe ocupa o wrap e sem interação */
.section-spline iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0 !important;
  pointer-events: none;
  touch-action: none;
}
.section-spline .spline-wrap h2 {
  color: var(--text-primary);
  font-size: clamp(48px, 6vw, 72px);
  position: relative;
  top: 2.4em;
  margin-bottom: 1em;
}
.section-spline .spline-wrap h6 {
  font-size: 16px;
}

/* carousel gsap logos */

.logo-scroller {
  position: relative;
  display: block;
  width:100%;  /* Will fit parent container at 100% */
  margin:0 auto;
  margin-top: -10em;
}

.logo-scroller-content {
  padding: 200px 0;
}

.logo-scroller-items {
  margin: -58px 0;
  overflow: hidden;
  cursor: default;
}

.logo-scroller-row {
  display: flex;
  position: relative;
  white-space: nowrap;
  justify-content: space-around; /* Ensures logos have space around them */
  gap: 8em; /* Adds consistent space between logos */
}
.logo-scroller-row,
.logo-scroller-row * {
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.logo-scroller-item {
  position: relative;
  flex: 1 1 auto; /* Flexible sizing */
  min-width: 240px; /* Prevent logos from getting too small */
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-scroller-item span {
  position: relative;
  display: inline-block;
  z-index: 1;
}

/* Default logo size */
.logo-scroller-item span img {
  max-width: 100%;  /* Ensure the logo doesn't overflow horizontally */
  max-height: 100px;  /* Set consistent max height for logos */
  object-fit: contain;  /* Ensure logos maintain aspect ratio */
  display: block;  /* Remove inline spacing issues */
  filter: brightness(0) invert(1);
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}
.logo-scroller-item span img:hover {
  filter: none;
}
.logo-scroller-item span img:focus-visible{
  filter: grayscale(0%);
  outline: 2px solid currentColor;
  outline-offset: 4px;
}



/***
 ------- SECTIONS: Para todas as seções
 ***/
.section{
  padding: 216px 0;
}
.btn-avatar {
  background-color: #BCF244;
  color: #1C1D18;
  font-size: 16px;
  padding: 18px 32px;
  border: 0;
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.55),
    inset 0 -6px 0 rgba(0,0,0,.18),
    0 10px 22px rgba(0,0,0,.45);
  transition: all 0.4s ease;
}
.btn-avatar:hover {
  background-color: #8bbc1f;
  color: #697f38;
  box-shadow:
    inset 0 4px 6px rgba(0, 0, 0, 0.30), 
    inset 0 0 0 rgba(0, 0, 0, 0), 
    0 10px 30px rgba(0, 0, 0, .45);
}

.btn-avatar:active {
  background-color: #BCF244 !important;
  color: #557314 !important;
  box-shadow: none;
}


/***
 ------- section ABOUT
 ***/
.section-about .about-photo {
  position: relative;
  background: rgba(0,0,0,.18);
}

.section-about .about-content {
  padding: 26px 28px 22px;
}

.about-copy {
  vertical-align: bottom;
}

.section-about .about-lead {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
  color: rgba(238,243,239,.92);
  max-width: 52ch;
}

.section-about .about-text {
  line-height: 1.8;
  color: rgba(238,243,239,.70);
  max-width: 64ch;
  font-size: 18px;
}

.section-about .about-sep {
  margin: 22px 0;
  border-color: rgba(255,255,255,.08);
  opacity: 1;
}

.section-about .stat-label {
  font-size: 16px;
  letter-spacing: .02em;
  color: rgba(238,243,239,.55);
  margin-bottom: 10px;
}

.section-about .stat-value {
  font-weight: 400;
  letter-spacing: -.02em;
  font-size: clamp(56px, 6vw, 86px);
  color: var(--lime);
}

/* Verificações */
.section-about .verify-label {
  color: rgba(238,243,239,.86);
}

.section-about .verify-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(183,255,42,.55);
  background: radial-gradient(circle at 35% 35%, rgba(183,255,42,.20), rgba(0,0,0,0) 60%);
  box-shadow: 0 0 0 6px rgba(183,255,42,.06);
  flex: 0 0 auto;
}

.section-about .verify-top{
  font-size: 11px;
  color: rgba(238,243,239,.75);
}

.section-about .verify-bottom{
  font-size: 12px;
  font-weight: 600;
  color: rgba(238,243,239,.92);
}

.section-about .verify-badges{
  align-items: center;
}

.section-about .verify-badge{
  height: 82px;
  width: auto;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.35));
}

/* Responsivo */
@media (max-width: 575.98px){
  .section-about .about-content{ padding: 20px 18px 18px; }
  .section-about .verify-badge{ height: 72px; }
}

/* Stats */
.stat-value{
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -.02em;
  background: linear-gradient(90deg, var(--text), rgba(238,243,239,.75));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label{
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}


/***
 ------- section CASES 
 ***/
.section-cases {
  background-image: url(../img/case-vector.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: auto;
  height: 100%;
  /*position: relative;*/
  z-index: 0;
  padding-top: 200px;
  padding-bottom: 400px;
}
.section-cases-content {
  position: relative;
  z-index: 1;
}
.section-cases h2 {
  color: var(--text-primary);
}

/* CARD cases */
.case-card {
  display: block;
  border-radius: 24px;
  /*border: 1px solid rgba(255,255,255,.10);*/
  background: #2C2E28;
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
  position: relative;
  overflow: hidden;
  min-height: 220px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.case-card::before {
  content: "";
  position: absolute;
  background-color: rgb(26 27 24 / 16%);
  width: 100%;
  height: 100%;
  display: block;
}
.case-card:hover::before {
  background-color: initial;
}
.case-card:hover {
  transform: translateY(-8px);
  border-color: rgba(54,255,209,.25);
  /*background: rgba(255,255,255,.05);*/
}

/* card body */
.case-card-body .case-title {
  text-shadow: 2px 2px 4px rgba(66, 68, 90, 1);
}



/* cards */
.case-card--lg {
  background-image: url(../img/cases/diario-oficial-reduzindo-ruidos/dom-home.webp);
  background-size: cover;
  width: auto;
  height: 100%;
  min-height: 640px;
}
.case-card--md {
  background-image: url(../img/cases/viesmente/viesmente-home.webp);
  background-size: cover;
  width: auto;
  height: 100%;  
  min-height: 380px; 
}
.case-card--sm.one { 
  background-image: url(../img/cases/ciga-comercial/ciga-processo-comercial-office-2.webp);
  background-size: cover;
  width: auto;
  height: 100%;  
  min-height: 236px; 
}
.case-card--sm.two { 
  background-image: url(../img/cases/porto-seguro/porto-emprestimo-garantia-veiculo-mobile.webp);
  background-size: cover;
  width: auto;
  height: 100%;  
  min-height: 236px; 
}


.case-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
}
.case-chip {
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.12);
  color: rgba(238,243,239,.82);
}
.case-arrow {
  width: 34px; 
  height: 34px;
  font-size: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.08);
}
.case-card-body {
  padding: 0 16px 16px;
  position: relative;
  z-index: 1;
}
.case-title {
  font-weight: 800;
  font-size: 24px;
}
.case-meta {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}


/***
 ------- section EXPERTISE 
 ***/
.section-expertise {
  /*height: 100vh;*/
  /*padding-top: 92px;*/
}

/* title section EXPERTISE */
.expertise-kicker {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(238,243,239,.65);
  margin-bottom: 16px;
}

/* accordion section EXPERTISE */
.expertise-words .accordion-item,
.expertise-words .accordion-button {
  background: none !important;
  border: none !important;
}
.expertise-words .accordion-button {
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: .86;
  font-size: clamp(46px, 7vw, 96px);
  padding: 0;
  transition: color 0.5s;

}
.expertise-words .accordion-button:hover {
  color: var(--text-primary);
}
.expertise-words .accordion-button:focus {
  box-shadow: none;
}
.expertise-words .accordion-button::after {
  display: none;
}
.expertise-words .accordion-button:not(.collapsed) {
  color: var(--text-primary);
  box-shadow: none;
}


/* accordion-body */
.expertise-words .accordion-body {
  font-size: 1em;
  color: #B5B5AC;
}
.expertise-words .accordion-body li {
  padding: 2px 0;
  font-size: 16px;
  font-weight: 100;
}


/* Manifesto */
.section-manifesto { 
  padding-top: 40px;
  margin: 0 auto;
  text-align: center;  
}
.section-manifesto .manifesto-text {
  font-size: clamp(40px, 4vw, 40px);
  line-height: 1.4;
}
.section-manifesto .hl {
  color: var(--lime);
  text-shadow: 0 0 18px rgba(183,255,42,.12);
}

/* badge */
.section-manifesto .badge {
  background: #2C2E28 !important;
  border: 1px #565952 solid;
  font-weight: 400;
  font-size: 14px;
  padding: 0.6em 1.6em;
  letter-spacing: 0.1em;
  line-height: 1.4;
}


/* blink circle */
.section-manifesto .badge > span {
  position: relative;
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 12px;
  bottom: -1px;
  border-radius: 50%;
  background: #01F635;
}
.section-manifesto .badge > span::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px solid rgba(1, 246, 53, 0.55);
  transform: scale(1);
  opacity: 1;
  animation: ringPulse 1.4s cubic-bezier(.2,.9,.2,1) infinite;
}
.section-manifesto .badge > span::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(1, 246, 53, 0.25);
  pointer-events: none;
}

@keyframes ringPulse {
  0%   { transform: scale(1);   opacity: .75; }
  100% { transform: scale(4); opacity: 0; }
}

/* respeita usuários com redução de movimento */
@media (prefers-reduced-motion: reduce){
  html { scroll-behavior: auto !important; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .section-manifesto .badge > span::before{ animation: none; opacity: .75; }
}




/***
 ------- section Testimonials 
 ***/
.section-testimonials .carousel-shell { 
  padding: 0 32px;
}

/* Viewport + track */
.section-testimonials .carousel-viewport { 
  width: 100%; 
  overflow-x: auto;
}
.section-testimonials .carousel-track {
  justify-content: flex-start;
  gap: 24px; 
  will-change: transform; 
}

/* Card size (desktop) */
.section-testimonials .carousel-card {
  position: relative;
  flex: 0 0 auto;
  width: 352px;
  height: 440px;
  border-radius: 20px;
  overflow: hidden;
}
.section-testimonials .carousel-card .card-img {
  display:block;
  width:100%;
  height:100%;
  object-fit:cover; 
}

/* Overlay + footer always visible */
.section-testimonials .carousel-card .card-img-overlay {
  position: absolute !important;
  inset: 0;
  z-index: 2;
}
.section-testimonials .overlay-scrim {
  position:absolute; 
  inset:0 ;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.22) 55%, rgba(0,0,0,0) 75%);
  z-index: 1; 
  pointer-events:none;
}
.section-testimonials .carousel-footer { 
  position: relative; 
  z-index: 2;
  margin-bottom: 16px;
  font-size: 16px;
}
.section-testimonials .carousel-footer .card-subtitle {
  color: var(--muted);
}
.section-testimonials .carousel-footer hr {
  margin: 0.6rem 0 !important; 
}
.section-testimonials .carousel-footer .card-text {
  letter-spacing: 0.03em;
}

/* Arrows 48px green circle */
.section-testimonials .carousel-arrow {
  position: absolute; 
  top: 44%; 
  transform: translateY(-50%);
  width: 48px; 
  height: 48px; 
  border-radius: 999px;
  border: 2px rgba(255, 255, 255, 0.4);
  background: #BCF244; 
  display: grid; 
  place-items: center; 
  z-index: 10;
  box-shadow: 0px 6px 24px 6px rgba(0, 0, 0, .65);
  cursor: pointer;
  transform: scale(1.0);
  transition: transform .2s;
}
.section-testimonials .carousel-arrow:hover {
  transform: scale(1.2);
  background: #c3ff00;
}
.section-testimonials .carousel-arrow span i {
  color: #111;
  font-size: 32px;
  vertical-align: middle;  
}
.section-testimonials .carousel-shell .js-carousel-prev { 
  left: 40px;
}
.section-testimonials .carousel-shell .js-carousel-next { 
  right: 40px;
}

/* Mobile responsive */
@media (max-width: 575.98px){
  .section-testimonials .carousel-shell { 
    padding: 0 16px; 
  }
  .section-testimonials .carousel-card {
    width: min(320px, 85vw);
    height: calc(min(320px, 85vw) * 1.25);
  }
  .section-testimonials .carousel-arrow { 
    width:44px; 
    height:44px; 
  }
  .section-testimonials .carousel-arrow span { 
    font-size:26px; 
  }
}






/***
 ------- section CTA 
 ***/
.section-cta {
  /*padding-top: 64px;*/
  padding-bottom: 84px;
}


/*** btn ***/
.btn-cta {
    font-size: 3rem;
    all: unset;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    position: relative;
    border-radius: 999vw;
    background-color: rgba(0, 0, 0, 0.75);
    box-shadow: -0.15em -0.15em 0.15em -0.075em rgba(5, 5, 5, 0.25),
        0.0375em 0.0375em 0.0675em 0 rgba(5, 5, 5, 0.1);
}

.btn-cta::after {
    content: "";
    position: absolute;
    z-index: 0;
    width: calc(100% + 0.3em);
    height: calc(100% + 0.3em);
    top: -0.15em;
    left: -0.15em;
    border-radius: inherit;
    background: linear-gradient(-135deg,
            rgba(5, 5, 5, 0.5),
            transparent 20%,
            transparent 100%);
    filter: blur(0.0125em);
    opacity: 0.25;
    mix-blend-mode: multiply;
}

.btn-cta .button-outer {
    position: relative;
    z-index: 1;
    border-radius: inherit;
    transition: box-shadow 300ms ease;
    will-change: box-shadow;
    box-shadow: 0 0.05em 0.05em -0.01em rgba(5, 5, 5, 1),
        0 0.01em 0.01em -0.01em rgba(5, 5, 5, 0.5),
        0.15em 0.3em 0.1em -0.01em rgba(5, 5, 5, 0.25);
}

.btn-cta:hover .button-outer {
    box-shadow: inset 0 0 0 0 rgba(5, 5, 5, 1), 0 0 0 0 rgba(5, 5, 5, 0.5),
        0 0 0 0 rgba(5, 5, 5, 0.25);
    box-shadow: 0 0 100px 1px #BCF244;
}

.button-inner {
    --inset: 0.035em;
    position: relative;
    z-index: 1;
    border-radius: inherit;
    padding: 1.6em 2.8em;
    background-image: linear-gradient(135deg,
            rgba(230, 230, 230, 1),
            rgba(180, 180, 180, 1));
    transition: box-shadow 300ms ease, clip-path 250ms ease,
        background-image 250ms ease, transform 250ms ease;
    will-change: box-shadow, clip-path, background-image, transform;
    overflow: clip;
    clip-path: inset(0 0 0 0 round 999vw);
    box-shadow:
        /* 1 */
        0 0 0 0 inset rgba(5, 5, 5, 0.1),
        /* 2 */
        -0.05em -0.05em 0.05em 0 inset rgba(5, 5, 5, 0.25),
        /* 3 */
        0 0 0 0 inset rgba(5, 5, 5, 0.1),
        /* 4 */
        0 0 0.05em 0.2em inset rgba(255, 255, 255, 0.25),
        /* 5 */
        0.025em 0.05em 0.1em 0 inset rgba(255, 255, 255, 1),
        /* 6 */
        0.12em 0.12em 0.12em inset rgba(255, 255, 255, 0.25),
        /* 7 */
        -0.075em -0.25em 0.25em 0.1em inset rgba(5, 5, 5, 0.25);
}

.btn-cta:hover .button-inner {
  background: #1a1c17;
    /*clip-path: inset(clamp(1px, 0.0625em, 2px) clamp(1px, 0.0625em, 2px) clamp(1px, 0.0625em, 2px) clamp(1px, 0.0625em, 2px) round 999vw);*/
    box-shadow: inset 6px 6px 10px 6px rgb(93 106 67 / 50%);
}

.btn-cta .button-inner span {
    text-align: center;
    font-size: clamp(72px, 7.4vw, 72px);
    position: relative;
    z-index: 4;
    letter-spacing: -0.05em;
    font-weight: 500;
    color: rgba(0, 0, 0, 0);
    background-image: linear-gradient(135deg,
            rgba(25, 25, 25, 1),
            rgba(75, 75, 75, 1));
    -webkit-background-clip: text;
    background-clip: text;
    transition: transform 250ms ease;
    display: block;
    will-change: transform;
    text-shadow: rgba(0, 0, 0, 0.1) 0 0 0.1em;
    -webkit-user-select: none; 
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn-cta:hover .button-inner span {
    transform: scale(0.915);
    color: #BCF244;
}
.btn-cta:hover .button-inner span:before {
  content: "";
  width: 72px;
  height: 72px;
  margin: 0 16px -12px 0;
  display: inline-block;
  color: #BCF244;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.5%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%2022C17.5228%2022%2022%2017.5228%2022%2012C22%206.47715%2017.5228%202%2012%202C6.47715%202%202%206.47715%202%2012C2%2013.3789%202.27907%2014.6926%202.78382%2015.8877C3.06278%2016.5481%203.20226%2016.8784%203.21953%2017.128C3.2368%2017.3776%203.16334%2017.6521%203.01642%2018.2012L2%2022L5.79877%2020.9836C6.34788%2020.8367%206.62244%2020.7632%206.87202%2020.7805C7.12161%2020.7977%207.45185%2020.9372%208.11235%2021.2162C9.30745%2021.7209%2010.6211%2022%2012%2022Z%22/%3E%3Cpath%20d%3D%22M8.58815%2012.3773L9.45909%2011.2956C9.82616%2010.8397%2010.2799%2010.4153%2010.3155%209.80826C10.3244%209.65494%2010.2166%208.96657%2010.0008%207.58986C9.91601%207.04881%209.41086%207%208.97332%207C8.40314%207%208.11805%207%207.83495%207.12931C7.47714%207.29275%207.10979%207.75231%207.02917%208.13733C6.96539%208.44196%207.01279%208.65187%207.10759%209.07169C7.51023%2010.8548%208.45481%2012.6158%209.91948%2014.0805C11.3842%2015.5452%2013.1452%2016.4898%2014.9283%2016.8924C15.3481%2016.9872%2015.558%2017.0346%2015.8627%2016.9708C16.2477%2016.8902%2016.7072%2016.5229%2016.8707%2016.165C17%2015.8819%2017%2015.5969%2017%2015.0267C17%2014.5891%2016.9512%2014.084%2016.4101%2013.9992C15.0334%2013.7834%2014.3451%2013.6756%2014.1917%2013.6845C13.5847%2013.7201%2013.1603%2014.1738%2012.7044%2014.5409L11.6227%2015.4118%22/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.5%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%2022C17.5228%2022%2022%2017.5228%2022%2012C22%206.47715%2017.5228%202%2012%202C6.47715%202%202%206.47715%202%2012C2%2013.3789%202.27907%2014.6926%202.78382%2015.8877C3.06278%2016.5481%203.20226%2016.8784%203.21953%2017.128C3.2368%2017.3776%203.16334%2017.6521%203.01642%2018.2012L2%2022L5.79877%2020.9836C6.34788%2020.8367%206.62244%2020.7632%206.87202%2020.7805C7.12161%2020.7977%207.45185%2020.9372%208.11235%2021.2162C9.30745%2021.7209%2010.6211%2022%2012%2022Z%22/%3E%3Cpath%20d%3D%22M8.58815%2012.3773L9.45909%2011.2956C9.82616%2010.8397%2010.2799%2010.4153%2010.3155%209.80826C10.3244%209.65494%2010.2166%208.96657%2010.0008%207.58986C9.91601%207.04881%209.41086%207%208.97332%207C8.40314%207%208.11805%207%207.83495%207.12931C7.47714%207.29275%207.10979%207.75231%207.02917%208.13733C6.96539%208.44196%207.01279%208.65187%207.10759%209.07169C7.51023%2010.8548%208.45481%2012.6158%209.91948%2014.0805C11.3842%2015.5452%2013.1452%2016.4898%2014.9283%2016.8924C15.3481%2016.9872%2015.558%2017.0346%2015.8627%2016.9708C16.2477%2016.8902%2016.7072%2016.5229%2016.8707%2016.165C17%2015.8819%2017%2015.5969%2017%2015.0267C17%2014.5891%2016.9512%2014.084%2016.4101%2013.9992C15.0334%2013.7834%2014.3451%2013.6756%2014.1917%2013.6845C13.5847%2013.7201%2013.1603%2014.1738%2012.7044%2014.5409L11.6227%2015.4118%22/%3E%3C/svg%3E") no-repeat center / contain;
}

.btn-cta:active .button-inner {
    transform: scale(0.915);
}





/***
 ------- section footer 
 ***/
.site-footer {
  padding: 300px 0 40px;
}
.site-footer .footer-mark .footer-line {
  color: var(--text-orange);
  letter-spacing: 0.1em;
  font-size: 16px;
}
.site-footer .footer-mark .small {
  font-size: 12px;
}
.site-footer .footer-mark .footer-brand {
  padding-bottom: 130px;
}
.site-footer .footer-mark .footer-nav {
  padding-bottom: 60px;
  font-size: 16px;
}
.site-footer .footer-mark .footer-nav .watezape-me .circle-zap {
  background-color: #25d366; 
  width: 40px;
  height: 40px;
  border-radius: 50%; 
  color: #111
}
.site-footer .footer-mark .footer-nav .watezape-me .circle-zap i {
  font-size:24px;
}

/* icons */
.site-footer .footer-mark .footer-nav .icons-social {
  font-size: 16px;
}
.site-footer .footer-mark .footer-nav .icons-social a {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #515746;
  border: 1px solid rgba(255,255,255,.10);
  color: var(--text-primary);
  font-size: 24px;
  transition: all 0.6s;
}
.site-footer .footer-mark .footer-nav .icons-social a:hover {
  background-color: var(--text-primary);
  color: #515746;
  border-radius: 99px;
}


/* Reveal helpers (GSAP will animate these) */
[data-reveal]{ opacity: 0; transform: translateY(14px); }
.split-char{ display: inline-block; opacity: 0; transform: translateY(18px); }

/* Responsive adjustments */
@media (max-width: 991.98px){
  :root{ --pad-x: 20px; }
  .site-header{ padding-top: 12px; }
  .hero-title{ mix-blend-mode: normal; color: rgba(12,15,12,.22); }
  .hero-sub{ color: rgba(12,15,12,.85); }
  .blob-svg{ height: 520px; transform: translateY(90px); }
}






/********
 ------- page Cases/index.html
 ********/
.cases-list {
  padding: 4em 0;
}
.cases-list h1 {
  margin-top: 2em;
  /*font-size: 48px;*/
  font-size: clamp(40px, 4vw, 40px);
}


/* main - content tabs */
.cases-list .nav-tabs {
  border: none;
}
.cases-list .nav-tabs li {
  margin: 0 16px;
}
.cases-list .nav-tabs li.nav-item .nav-link {
  font-size: 16px;
  padding: 16px 40px;
  color: #B5B5AC;
  font-weight: 500;
  border-radius: 99px;
  box-shadow: inset -2px 1px 3px -2px #BCF244;
}
.cases-list .nav-tabs li.nav-item .nav-link.active {
  background-color: #BCF244;
  color: #1C1D18;
  border: 0;
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.55),
    inset 0 -6px 0 rgba(0,0,0,.18),
    0 10px 22px rgba(0,0,0,.45);
  transition: all 0.4s ease;
}
.cases-list .nav-tabs li.nav-item .nav-link.active:hover {
  background-color: #8bbc1f;
  color: #697f38;
  box-shadow:
    inset 0 4px 6px rgba(0, 0, 0, 0.30), 
    inset 0 0 0 rgba(0, 0, 0, 0), 
    0 10px 30px rgba(0, 0, 0, .45);
}



/*** CASE item ***/
.case-list a.case-item img.cliente-portfolio {
  filter: brightness(0) invert(1);
}
.case-list a.case-item {
  border-bottom: 1px #30312D solid;
  display: block;
  text-decoration: none;
}
.case-list a.case-item:hover {
  background: #262922 !important;
  display: block;
}
.case-list a.case-item ,
.case-list a.case-item h2,
.case-list a.case-item p,
.case-list a.case-item img.img-fluid.shadow {
  transition: all 0.6s;
}

.case-list a.case-item:hover h2 {
  color: var(--text-primary);
}
.case-list a.case-item:hover p {
  color: white !important;
}
.case-list a.case-item:hover img.img-fluid.shadow {
  transform: scale(1.06);
}
.case-list a.case-item:hover .badge {
  background-color: rgba(255, 255, 255, 0.1);
}
.case-list a.case-item:hover img.cliente-portfolio {
  filter: none;
}
.case-list h2 {
  font-size: 24px;
}


/*** CASE single ***/
.case-single {
  margin-top: 88px;
}
.case-single a.small.text-white-50:hover {
  color: var(--text-primary) !important;
}
.case-single h1 {
  font-size: 40px;
}



.page-caseslist .section-cta:after {
  content: "Quer uma apresentação desse case na sua empresa?";
  display: block;
}


/********
 ------- page Cases/Branding
 ********/
.case-list-brand .modal .modal-dialog {
  width: 96vw;
  max-width: 96vw;
}
.case-list-brand .modal .modal-content {
  background: transparent !important;
  border: none !important;
}
.case-list-brand .modal .modal-header {
  border: none !important;
}
.case-list-brand .modal .modal-header a.close {
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  border-radius: 999px;
  border: 1px solid #fff;
  padding: 8px 16px;
  margin-top: 10px;
}
.case-list-brand .modal .modal-header a.close:hover {
  background: #BCF244;
  border-color: #BCF244;
  color: #1A1B18;
}
.case-list-brand .modal .modal-body img {
  box-shadow: 0 0 24px 0px rgb(0 0 0 / 40%);
  border-radius: 24px;
  transition: all 0.6s;
}

.modal-backdrop {
  background: rgba(26, 27, 24, 0.8) !important;
  opacity: 1 !important;
  backdrop-filter: blur(16px);
}


/*** case list image ***/
.case-list-brand .col-12.col-md-6.col-lg-4 a {
  transition: all 0.6s;
}
.case-list-brand .rounded-4 a:hover {
  transform: scale(1.06);
}
  




/********
 ------- page Cases/*
 ********/

.list-group-flush .list-group-item {
  background: none;
}
