/* 
'Website By Criative Inside https://criativeinside.com.br'
'Autor: Criative Inside'
'Contato: suporte@criativeinside.com.br'
'Cliente: Criative Inside'
'Arquivo: styles.css'
'Ano: 2026'
'Inicio do Codigo CSS'
*/

@font-face {
  font-family: "Tomato UI";
  src: url("./fonte/TomatoGrotesk-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tomato UI";
  src: url("./fonte/TomatoGrotesk-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter UI";
  src: url("./fonte/Inter18pt-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter UI";
  src: url("./fonte/Inter18pt-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue-strong: #0055FF;
  --blue-light: #0099FF;
  --black: #000000;
  --white: #FFFFFF;
  --text-soft: rgba(255, 255, 255, 0.75);
  --line: rgba(255, 255, 255, 0.16);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

html,
body {
  width: 100%;
  overflow-x: clip;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='60' viewBox='0 0 48 60'%3E%3Cpath d='M8 7l29 22-13 2 9 15-6 4-9-15-9 10z' fill='%230099FF' stroke='%230055FF' stroke-width='2.2' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E") 8 7, auto !important;
}

a,
button,
[role="button"],
.cta,
.pill-btn,
.link-btn {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='60' viewBox='0 0 48 60'%3E%3Cpath d='M8 7l29 22-13 2 9 15-6 4-9-15-9 10z' fill='%23b8e5ff' stroke='%230099FF' stroke-width='2.2' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E") 8 7, pointer !important;
}

input,
textarea {
  cursor: text;
}

body {
  min-height: 100vh;
  font-family: "Inter UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 70%, rgba(0, 85, 255, 0.3), transparent 35%),
    radial-gradient(circle at 75% 30%, rgba(0, 153, 255, 0.22), transparent 32%),
    linear-gradient(120deg, #020202, #000000 45%, #030810);
  overflow-x: clip;
}

.site-wrapper {
  position: relative;
  width: 100%;
  overflow-x: clip;
  min-height: 100vh;
}

html::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(at 20% 80%, #fff 1px, transparent 0px);
  background-size: 3px 3px;
  opacity: 0.065;
  mix-blend-mode: plus-lighter;
  user-select: none;
  pointer-events: none;
  z-index: 999;
}

html {
  scrollbar-width: auto;
  scrollbar-color: #0099FF #000000;
  overflow-x: clip;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(4, 16, 38, 0.95));
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #0055FF, #0099FF);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #0099FF, #0055FF);
}

::-webkit-scrollbar-corner {
  background: #000000;
}

html body {
  text-wrap: balance;
}

/* ── Page Transitions ────────────────────────── */

main {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

body.is-ready main {
  opacity: 1;
  transform: translateY(0);
}

body.is-exiting main {
  opacity: 0;
  transform: translateY(-12px) scale(0.995);
  transition: opacity 320ms ease, transform 320ms ease;
}

/* ── Section Reveal ──────────────────────────── */

section {
  position: relative;
}

.section-reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 640ms cubic-bezier(.22, .61, .36, 1),
    transform 640ms cubic-bezier(.22, .61, .36, 1),
    filter 640ms cubic-bezier(.22, .61, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.section-reveal::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: min(380px, 42vw);
  height: 1px;
  transform: translateX(-50%) scaleX(0.45);
  transform-origin: center;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 153, 255, 0.85), transparent);
  transition: transform 640ms ease, opacity 640ms ease;
  pointer-events: none;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.section-reveal.is-visible::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 0.68;
}

body.is-exiting .section-reveal.is-visible {
  opacity: 0;
  transform: translateY(-22px) scale(0.985);
  filter: blur(6px);
  transition-duration: 260ms;
}

/* Prevent reveal animations from messing with special wrapper sections */
.services-modern-section.section-reveal,
.zoom-impact-section.section-reveal {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

.services-modern-section.section-reveal::after,
.zoom-impact-section.section-reveal::after {
  display: none;
}

body.is-exiting .navbar {
  transform: translateX(-50%) translateY(-10px);
  opacity: 0;
  transition-duration: 260ms;
}

/* ── Layout ──────────────────────────────────── */

.hero-shell {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding-top: 112px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.hero-shell>* {
  min-width: 0;
}

/* ── Navbar ──────────────────────────────────── */

.navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 92vw);
  height: 64px;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--nav-border);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 0 24px;
  z-index: 9999;
  /* Absolute highest to prevent any overlaps */
  transition: background 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.navbar.scrolled {
  background: rgba(6, 16, 34, 0.45);
  border-color: rgba(0, 153, 255, 0.34);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(0, 153, 255, 0.12) inset;
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 160ms ease;
}

.brand:hover {
  opacity: 0.8;
}

.brand img {
  height: 28px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 26px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.95rem;
}

.nav-links a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.link-btn {
  font-family: "Tomato UI", sans-serif;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  padding: 10px 12px;
}

.pill-btn {
  font-family: "Tomato UI", sans-serif;
  color: var(--black);
  background: var(--white);
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.pill-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 153, 255, 0.25);
}

/* ── Hero ────────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 28px;
  padding-bottom: 60px;
  min-height: calc(100vh - 180px);
}

.hero>* {
  position: relative;
  z-index: 2;
}

.hero>.orbs {
  z-index: 1;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tag-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #7fd2ff, var(--blue-light));
  box-shadow: 0 0 10px rgba(0, 153, 255, 0.6);
  animation: tagPulse 2.2s ease-in-out infinite;
}

h1 {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.02em;
  font-family: "Tomato UI", sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5.2vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  white-space: normal;
  text-shadow: 0 16px 42px rgba(0, 85, 255, 0.35);
  animation: rise 700ms ease-out both;
}

@keyframes textShine {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

h1 .line {
  display: block;
  white-space: nowrap;
  text-align: center;
}

.subtitle {
  max-width: 780px;
  font-family: "Inter UI", sans-serif;
  font-weight: 300;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  animation: rise 950ms ease-out both;
  margin-top: 6px;
  margin-bottom: 24px;
}

/* ── CTA Button ──────────────────────────────── */

.cta {
  font-family: "Tomato UI", sans-serif;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-strong), var(--blue-light));
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.2px;
  padding: 18px 36px;
  box-shadow: 0 14px 34px rgba(0, 85, 255, 0.45);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  animation: rise 1200ms ease-out both, ctaPulse 2.3s ease-in-out infinite;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.28) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: ctaShine 2.8s linear infinite;
}

.cta>* {
  position: relative;
  z-index: 1;
}

.cta-icon {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  animation: iconFloat 1.9s ease-in-out infinite;
}

.cta-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  opacity: 0.25;
  animation: iconBlink 1.8s ease-in-out infinite;
}

.cta-icon svg {
  width: 12px;
  height: 12px;
  display: block;
}

.cta:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 18px 40px rgba(0, 153, 255, 0.5);
  filter: saturate(1.1);
}

/* ── Orbs ────────────────────────────────────── */

.orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  animation: orbsDrift 14s ease-in-out infinite;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(45px);
  opacity: 0.5;
  will-change: transform, opacity, filter;
}

.orb.one {
  width: 220px;
  height: 220px;
  background: var(--blue-strong);
  left: 12%;
  top: 48%;
  animation: orbOneMotion 10.5s ease-in-out infinite;
}

.orb.two {
  width: 190px;
  height: 190px;
  background: var(--blue-light);
  right: 16%;
  top: 28%;
  animation: orbTwoMotion 12.8s ease-in-out infinite;
  animation-delay: -1.2s;
}

/* ── Impact Section ──────────────────────────── */

.impact-section {
  width: 100%;
  margin: 0 auto;
  min-height: 50vh;
  padding: 100px 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact-title {
  position: relative;
  font-family: "Tomato UI", sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.impact-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(0, 110, 255, 0.4), transparent 70%);
  filter: blur(45px);
  z-index: -1;
  pointer-events: none;
}

.impact-line-wrap {
  display: block;
  overflow: hidden;
  padding-bottom: 0.15em;
  margin-bottom: -0.1em;
  line-height: 1.15;
}

.impact-line {
  display: block;
  transform: translateY(110%) rotate(4deg);
  opacity: 0;
  transform-origin: left bottom;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
  color: transparent;
  background: linear-gradient(135deg, #ffffff 40%, rgba(255, 255, 255, 0.7) 80%);
  -webkit-background-clip: text;
  background-clip: text;
}

.section-reveal.is-visible .impact-line-wrap:nth-child(1) .impact-line {
  transition-delay: 150ms;
}

.section-reveal.is-visible .impact-line-wrap:nth-child(2) .impact-line {
  transition-delay: 300ms;
}

.section-reveal.is-visible .impact-line-wrap:nth-child(3) .impact-line {
  transition-delay: 450ms;
}

.section-reveal.is-visible .impact-line {
  transform: translateY(0) rotate(0);
  opacity: 1;
}

/* ── Zoom Impact Section ──────────────────────────── */

.zoom-impact-section {
  position: relative;
  height: 380vh;
  /* Determines scroll duration */
  width: 100vw;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: #030810;
  /* Explicit stacking context isolation to prevent bleeding */
  contain: paint layout;
  clip-path: inset(0);
}

.zoom-sticky {
  position: sticky;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Base layer (white) */
.zoom-light {
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.zoom-content {
  text-align: center;
  color: #000000;
  max-width: 860px;
  padding: 0 32px;
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform;
}

.zoom-content h2 {
  font-family: 'Tomato UI', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.zoom-content p {
  font-family: 'Inter UI', sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: #222222;
  line-height: 1.6;
}

/* Top layer (dark) */
.zoom-dark {
  position: absolute;
  inset: 0;
  background-color: #050b14;
  /* Blends nicely */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  will-change: opacity, transform;
}

.zoom-text {
  font-family: 'Tomato UI', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.7rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  max-width: 1000px;
  padding: 0 40px;
  letter-spacing: -0.01em;
  will-change: transform, opacity;
  transform-origin: center center;
}

/* ── Portfolio Section ───────────────────────── */

.portfolio-section {
  width: 100vw;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 64px;
  margin-bottom: 80px;
  padding: 10px 0 20px;
  overflow: hidden;
}

.portfolio-head {
  display: none;
}

.portfolio-title {
  font-family: "Tomato UI", sans-serif;
  font-size: clamp(1.5rem, 3.1vw, 2.8rem);
  letter-spacing: -0.01em;
}

.portfolio-subtitle {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 1rem;
}

.portfolio-track-wrap {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  padding: 2px 0;
  width: 100%;
  max-width: 100%;
  contain: layout paint;
}

.portfolio-track-wrap::before,
.portfolio-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(56px, 9vw, 140px);
  z-index: 5;
  pointer-events: none;
}

.portfolio-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, rgba(2, 2, 2, 0.96) 8%, rgba(2, 2, 2, 0));
}

.portfolio-track-wrap::after {
  right: 0;
  background: linear-gradient(270deg, rgba(2, 2, 2, 0.96) 8%, rgba(2, 2, 2, 0));
}

.portfolio-track {
  width: max-content;
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  padding: 0 14px;
  animation: scrollLeft 32s linear infinite;
  will-change: transform;
}

.portfolio-track.reverse {
  animation-name: scrollRight;
  animation-duration: 36s;
}

.portfolio-card {
  position: relative;
  width: clamp(250px, 23vw, 420px);
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #040404;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.4);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.02);
  transition: transform 420ms ease, filter 420ms ease;
}

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, transparent 35%, rgba(255, 255, 255, 0.24) 49%, transparent 63%);
  transform: translateX(-140%);
  transition: transform 620ms ease;
  z-index: 2;
  pointer-events: none;
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 153, 255, 0.2), transparent 58%);
  opacity: 0;
  transition: opacity 300ms ease;
  z-index: 1;
  pointer-events: none;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 38px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 153, 255, 0.22) inset;
}

.portfolio-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.16) contrast(1.08) brightness(1.06);
}

.portfolio-card:hover::before {
  transform: translateX(140%);
}

.portfolio-card:hover::after {
  opacity: 1;
}

/* ── Keyframes ───────────────────────────────── */

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatGlow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.38;
    filter: blur(45px) brightness(0.92);
  }

  25% {
    transform: translate3d(12px, -10px, 0) scale(1.04);
    opacity: 0.52;
    filter: blur(47px) brightness(1.05);
  }

  50% {
    transform: translate3d(18px, -18px, 0) scale(1.08);
    opacity: 0.6;
    filter: blur(49px) brightness(1.18);
  }

  75% {
    transform: translate3d(8px, -8px, 0) scale(1.03);
    opacity: 0.5;
    filter: blur(46px) brightness(1.02);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.38;
    filter: blur(45px) brightness(0.92);
  }
}

@keyframes orbsDrift {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes orbOneMotion {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.4;
    filter: blur(46px) brightness(0.9);
  }

  50% {
    transform: translate3d(44px, -30px, 0) scale(1.14);
    opacity: 0.68;
    filter: blur(52px) brightness(1.25);
  }
}

@keyframes orbTwoMotion {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.36;
    filter: blur(44px) brightness(0.9);
  }

  50% {
    transform: translate3d(-56px, 26px, 0) scale(1.18);
    opacity: 0.64;
    filter: blur(50px) brightness(1.22);
  }
}

@keyframes ctaPulse {

  0%,
  100% {
    box-shadow: 0 14px 34px rgba(0, 85, 255, 0.45);
  }

  50% {
    box-shadow: 0 18px 40px rgba(0, 153, 255, 0.62);
  }
}

@keyframes ctaShine {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

@keyframes iconBlink {

  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.98);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.08);
  }
}

@keyframes tagPulse {

  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

/* ── Responsive ──────────────────────────────── */

@media (max-width: 1400px) and (min-width: 921px) {
  h1 {
    font-size: clamp(1.8rem, 3.5vw, 3.9rem);
  }
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero-shell {
    padding-top: 100px;
    gap: 36px;
  }

  h1 {
    font-size: clamp(1.9rem, 10vw, 3.3rem);
    line-height: 0.95;
    gap: 0.04em;
  }

  h1 .line {
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .navbar {
    top: 12px;
    width: min(1200px, 95vw);
    padding: 10px;
  }

  .link-btn {
    display: none;
  }

  .pill-btn {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .hero {
    padding-bottom: 42px;
  }

  h1 {
    font-size: clamp(1.6rem, 8.5vw, 2.6rem);
    line-height: 0.98;
  }

  .cta {
    width: 100%;
    max-width: 340px;
    font-size: 0.88rem;
    padding: 14px 20px;
    gap: 9px;
    justify-content: center;
  }

  .cta-icon {
    width: 21px;
    height: 21px;
  }

  .cta-icon svg {
    width: 10px;
    height: 10px;
  }

  .impact-section {
    margin: 6px auto 44px;
    padding: 22px 10px;
  }

  .impact-title {
    font-size: clamp(1.4rem, 6.5vw, 2.2rem);
  }

  .impact-title .line {
    white-space: nowrap;
  }

  .portfolio-section {
    margin-top: 36px;
    margin-bottom: 56px;
  }

  .portfolio-head {
    margin-bottom: 34px;
  }

  .portfolio-subtitle {
    font-size: 0.92rem;
  }

  .portfolio-card {
    width: clamp(220px, 62vw, 320px);
  }
}


/* ── Blur Inferior ───────────────────────────── */

.bottom-blur {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12vh;
  min-height: 80px;
  background: linear-gradient(to top, rgba(2, 5, 11, 0.95), rgba(2, 5, 11, 0) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  mask-image: linear-gradient(to top, black 30%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, black 30%, transparent 100%);
  pointer-events: none;
  z-index: 100;
}

/* ── Modern Services Section ──────────────────────────── */

.services-modern-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-color: #000000;
  padding: 100px 16px 140px;
  position: relative;
  z-index: 2;
  /* Needs to be above the zoom-impact section but below fixed elements like navbar */
  /* Remove overflow hidden to avoid clipping */
}

/* Subtle glow orb behind services to blend nicely */
.services-modern-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 800px;
  background: radial-gradient(ellipse at center, rgba(0, 110, 255, 0.08), transparent 65%);
  pointer-events: none;
  z-index: -1;
  /* Send it definitively to the back */
}

.services-container {
  width: min(1200px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.services-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 72px;
}

.services-title {
  font-family: "Tomato UI", sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--white);
  text-shadow: 0 10px 30px rgba(0, 85, 255, 0.2);
}

.services-subtitle {
  font-family: "Inter UI", sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-soft);
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 5;
  opacity: 1 !important;
  visibility: visible !important;
}

.service-card {
  background: linear-gradient(145deg, rgba(8, 14, 24, 0.8), rgba(4, 8, 16, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 42px 36px;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
    background 400ms ease,
    border-color 400ms ease,
    box-shadow 400ms ease;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(0, 153, 255, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(145deg, rgba(12, 20, 36, 0.9), rgba(6, 12, 22, 1));
  border-color: rgba(0, 153, 255, 0.35);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 153, 255, 0.1) inset;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card>* {
  position: relative;
  z-index: 1;
}

.service-icon-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-bg {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 85, 255, 0.15), rgba(0, 153, 255, 0.05));
  border: 1px solid rgba(0, 153, 255, 0.25);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1), background 400ms ease;
}

.service-icon {
  width: 28px;
  height: 28px;
  color: var(--blue-light);
  transform: translateZ(0);
  /* Hardware acceleration */
  transition: color 400ms ease, filter 400ms ease;
}

.service-card:hover .service-icon-bg {
  transform: scale(1.15) rotate(4deg);
  background: linear-gradient(135deg, rgba(0, 85, 255, 0.25), rgba(0, 153, 255, 0.1));
  border-color: rgba(0, 153, 255, 0.4);
}

.service-card:hover .service-icon {
  color: #a5e2ff;
  filter: drop-shadow(0 0 8px rgba(0, 153, 255, 0.6));
}

.service-name {
  font-family: "Tomato UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-top: auto;
  /* Push content naturally */
}

.service-desc {
  font-family: "Inter UI", sans-serif;
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.55;
  transition: color 300ms ease;
}

.service-card:hover .service-desc {
  color: rgba(255, 255, 255, 0.9);
}

/* ── Sweeping Light Border Effect ── */
.service-hover-glow {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events: none;
  z-index: 10;
  padding: 1px;
  /* border thickness */
  background: transparent;
  /* Invisible by default */
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.service-card:hover .service-hover-glow {
  /* Animate a light beam sweeping across the edges */
  background: linear-gradient(60deg,
      transparent 20%,
      transparent 40%,
      rgba(0, 153, 255, 1) 50%,
      rgba(0, 255, 255, 0.8) 55%,
      transparent 60%,
      transparent 80%);
  background-size: 300% 300%;
  animation: borderSweep 2.5s ease-in-out infinite;
}

@keyframes borderSweep {
  0% {
    background-position: 100% 100%;
  }

  100% {
    background-position: 0% 0%;
  }
}

/* ── Specific grid assignments and reveal delays ── */
.services-grid .service-card:nth-child(1) {
  transition-delay: 50ms;
}

.services-grid .service-card:nth-child(2) {
  transition-delay: 150ms;
}

.services-grid .service-card:nth-child(3) {
  transition-delay: 250ms;
}

.services-grid .service-card:nth-child(4) {
  transition-delay: 350ms;
}

.services-grid .service-card:nth-child(5) {
  transition-delay: 450ms;
}

.services-grid .service-card:nth-child(6) {
  transition-delay: 550ms;
}

.services-grid .service-card:nth-child(7) {
  transition-delay: 650ms;
}

/* ── SVG Internal Animations ── */
/* Some paths naturally animate infinitely for a premium feel */

.anim-float {
  animation: svgFloat 3s ease-in-out infinite;
  transform-origin: center;
}

.anim-pulse {
  animation: svgPulse 2s ease-in-out infinite;
  transform-origin: center;
}

.anim-spin-slow {
  animation: spin 8s linear infinite;
  transform-origin: center;
}

.anim-bounce {
  animation: svgBounce 2.5s ease-in-out infinite;
  transform-origin: bottom;
}

.anim-blink {
  animation: svgBlink 3s ease-in-out infinite;
}

.anim-draw {
  stroke-dasharray: 40;
  animation: svgDraw 4s linear infinite;
}

.anim-rotate {
  animation: spin 4s linear infinite;
  transform-origin: center;
}

@keyframes svgFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes svgPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes svgBounce {

  0%,
  100% {
    transform: translateY(0) scaleY(1);
  }

  50% {
    transform: translateY(-4px) scaleY(1.05);
  }
}

@keyframes svgBlink {

  0%,
  40%,
  100% {
    opacity: 1;
  }

  20% {
    opacity: 0.3;
  }
}

@keyframes svgDraw {

  0%,
  100% {
    stroke-dashoffset: 80;
  }

  50% {
    stroke-dashoffset: 0;
  }
}

/* ── Infinite Marquee Section ── */
.scrolling-marquee-wrapper {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-color: #050a14;
  border-top: 1px solid rgba(0, 153, 255, 0.1);
  border-bottom: 1px solid rgba(0, 153, 255, 0.1);
  padding: 30px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 10;
}

.marquee-fade-left,
.marquee-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15vw;
  max-width: 250px;
  z-index: 2;
  pointer-events: none;
}

.marquee-fade-left {
  left: 0;
  background: linear-gradient(to right, #050a14 0%, transparent 100%);
}

.marquee-fade-right {
  right: 0;
  background: linear-gradient(to left, #050a14 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 40s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 3vw;
  padding-right: 3vw;
}

.marquee-content span {
  font-family: "Tomato UI", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.marquee-content span.dot {
  color: var(--blue-light, #0099FF);
  font-size: 1.5rem;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── High Standard Section ── */
.high-standard-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-color: #000000;
  padding: 100px 16px;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.high-standard-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.high-standard-container.section-reveal::after {
  display: none;
}

.high-standard-title {
  font-family: "Tomato UI", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  max-width: 800px;
}

.high-standard-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
}

.high-standard-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  color: var(--text-light, #99A1C5);
  font-weight: 400;
}

.high-standard-action {
  margin-top: 20px;
}

/* Light Theme Transition */
.high-standard-section {
  transition: background-color 0.8s ease;
}

.high-standard-section.is-light {
  background-color: #ffffff;
}

.high-standard-section.is-light .high-standard-title {
  color: #050a14;
}

.high-standard-section.is-light .high-standard-content p {
  color: #4a5568;
}

/* ── Floating Phones Showcase ── */
.premium-device-section {
  position: relative;
  height: 250vh;
  /* space for scroll transition */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-color: #010308;
  border-top: 1px solid rgba(0, 153, 255, 0.1);
  overflow: clip;
  z-index: 5;
}

.device-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  overflow: hidden;
  perspective: 2000px;
}

.device-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(0, 153, 255, 0.25) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

.phones-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 500px;
  margin-bottom: 30px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  will-change: transform, opacity;
  opacity: 0;
  /* Fade in handled by JS */
  transform: translateY(60px);
}

.responsive-wrapper {
  position: relative;
  width: 100%;
  max-width: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: smoothHover 7s ease-in-out infinite;
  will-change: transform;
}

.responsive-mockup {
  width: 100%;
  height: auto;
  object-fit: contain;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 20px 40px rgba(0, 153, 255, 0.3));
  transition: filter 0.3s ease;
}

.responsive-wrapper:hover .responsive-mockup {
  filter: drop-shadow(0 20px 60px rgba(0, 255, 255, 0.5));
}

.responsive-shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.responsive-shine::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shineSweep 5s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}

@keyframes shineSweep {
  0% {
    left: -150%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  45% {
    left: 150%;
    opacity: 1;
  }

  55% {
    left: 150%;
    opacity: 0;
  }

  100% {
    left: 150%;
    opacity: 0;
  }
}

@keyframes smoothHover {

  0%,
  100% {
    transform: translateY(-12px);
  }

  50% {
    transform: translateY(12px);
  }
}

/* Base text properties mapped to scroll */
.device-text-area {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: 200px;
  z-index: 3;
}

.device-text-step {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform;
}

.device-text-step h3 {
  font-family: 'Tomato UI', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 30%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.device-text-step p {
  font-family: 'Inter UI', sans-serif;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--text-light, #99A1C5);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .phones-container {
    height: 400px;
  }

  .responsive-wrapper {
    max-width: 90%;
  }

  @keyframes smoothHover {

    0%,
    100% {
      transform: translateY(-8px);
    }

    50% {
      transform: translateY(8px);
    }
  }
}

/* ── Stacking Section ────────────────────────── */

.stacking-section {
  width: min(1200px, 92vw);
  margin: 140px auto;
  position: relative;
  z-index: 10;
}

.stacking-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: flex-start;
}

.stacking-left {
  position: relative;
  height: 100%;
}

.stacking-sticky {
  position: sticky;
  top: 140px;
  padding-bottom: 60px;
}

.stacking-sticky .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--blue-light);
  font-family: 'Tomato UI', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.stacking-sticky .badge-pill svg {
  width: 16px;
  height: 16px;
}

.stacking-title {
  font-family: 'Tomato UI', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
}

.stacking-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--blue-light);
}

.stacking-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding-bottom: 60px;
}

.stack-card {
  position: sticky;
  top: calc(140px + (var(--card-index) * 20px));
  background: rgba(14, 20, 32, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 48px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 -12px 34px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform-origin: top center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-bg-number {
  position: absolute;
  top: -30px;
  right: 20px;
  font-family: 'Tomato UI', sans-serif;
  font-size: 220px;
  font-weight: 700;
  font-style: italic;
  color: rgba(0, 153, 255, 0.06);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.stack-card h3 {
  position: relative;
  z-index: 1;
  font-family: 'Tomato UI', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--blue-light);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.stack-card p {
  position: relative;
  z-index: 1;
  font-family: 'Inter UI', sans-serif;
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 960px) {
  .stacking-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .stacking-sticky {
    position: relative;
    top: 0;
    padding-bottom: 0px;
  }

  .stacking-right {
    padding-bottom: 40px;
  }

  .stack-card {
    position: relative;
    top: 0 !important;
    padding: 32px;
    min-height: auto;
  }

  .card-bg-number {
    font-size: 160px;
    top: -20px;
  }
}

/* ── Vaporize Section ────────────────────────── */

.vaporize-section {
  width: min(1200px, 92vw);
  margin: 80px auto;
  height: 60vh;
  min-height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: transparent;
  z-index: 5;
}

.vaporize-container {
  width: 100%;
  height: 100%;
  position: relative;
  pointer-events: none;
}

#vaporizeCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ── Processo de Criação ─────────────────────── */

.process-section {
  width: min(1200px, 92vw);
  margin: 120px auto;
  position: relative;
  z-index: 10;
}

.process-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.process-header {
  text-align: center;
  max-width: 780px;
}

.process-title {
  font-family: 'Tomato UI', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.process-subtitle {
  font-family: 'Inter UI', sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.process-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 12px 24px;
  font-family: 'Inter UI', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.process-badge svg {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}

.process-grid {
  display: flex;
  width: 100%;
  height: 460px;
  gap: 16px;
}

.process-card {
  position: relative;
  flex: 1;
  min-width: 80px;
  border-radius: 16px;
  background: #090c10;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.6s ease;
  will-change: flex;
}

.process-card.active,
.process-card:hover {
  flex: 4;
  background: #ffffff;
}

.process-card-collapsed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.process-card.active .process-card-collapsed,
.process-card:hover .process-card-collapsed {
  opacity: 0;
}

.process-number-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Tomato UI', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #000000;
  transition: transform 0.3s ease;
}

.process-card:hover .process-number-circle {
  transform: scale(0.8);
}

.process-card-expanded {
  position: absolute;
  inset: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  min-width: 320px;
}

.process-card.active .process-card-expanded,
.process-card:hover .process-card-expanded {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.1s;
}

.process-number-large {
  font-family: 'Tomato UI', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 28px;
  display: block;
}

.process-badge-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 0, 0, 0.8);
  border-radius: 999px;
  padding: 6px 16px;
  font-family: 'Inter UI', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #000000;
  width: fit-content;
  margin-bottom: 24px;
}

.process-badge-step svg {
  width: 12px;
  height: 12px;
}

.process-card-expanded h3 {
  font-family: 'Tomato UI', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.process-card-expanded p {
  font-family: 'Inter UI', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.7);
}

@media (max-width: 900px) {
  .process-grid {
    flex-direction: column;
    height: auto;
  }

  .process-card {
    height: auto;
    flex: none;
    background: #ffffff;
    padding-bottom: 30px;
  }

  .process-card.active,
  .process-card:hover {
    height: auto;
  }

  .process-card-collapsed {
    display: none;
  }

  .process-card-expanded {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    min-width: 100%;
    padding: 30px 24px;
  }

  .process-number-large {
    margin-bottom: 16px;
  }
}

/* ── FAQ Section ─────────────────────────────── */

.faq-section {
  width: 100%;
  background-color: #ffffff;
  padding: 120px 5vw 220px 5vw;
  color: #000000;
  position: relative;
  z-index: 10;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.faq-left {
  flex: 1;
  position: sticky;
  top: 120px;
}

.faq-title {
  font-family: 'Tomato UI', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  margin-bottom: 24px;
  color: #111827;
  letter-spacing: -0.02em;
}

.faq-highlight {
  color: #3b82f6;
  font-style: italic;
  font-family: 'Tomato UI', sans-serif;
  font-weight: 400;
}

.faq-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #edf2f7;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: #f0fdf4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  flex-shrink: 0;
}

.email-card .contact-icon {
  background: #eff6ff;
  color: #3b82f6;
}

.whatsapp-card .contact-icon {
  background: transparent;
  border: 1px dashed rgba(59, 130, 246, 0.3);
  color: #3b82f6;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 8px;
  /* Inner spacing for the icon */
}

.contact-icon svg {
  width: 28px;
  height: 28px;
}

.whatsapp-card .contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-label {
  font-family: 'Inter UI', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #111827;
}

.whatsapp-card .contact-label {
  color: #3b82f6;
}

.email-card .contact-label {
  color: #3b82f6;
}

.contact-desc {
  font-family: 'Inter UI', sans-serif;
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.4;
}

.contact-desc a {
  color: #3b82f6;
  text-decoration: none;
}

.faq-right {
  flex: 1.2;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter UI', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #3b82f6;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f8fafc;
}

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: #94a3b8;
  transition: transform 0.3s ease;
}

.faq-icon::before {
  top: 9px;
  left: 0;
  width: 20px;
  height: 2px;
}

.faq-icon::after {
  top: 0;
  left: 9px;
  width: 2px;
  height: 20px;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: rotate(90deg) scale(0);
}

.faq-question[aria-expanded="true"] .faq-icon::before {
  transform: rotate(180deg);
  /* Nice little spin */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  padding: 0 24px;
}

.faq-question[aria-expanded="true"]+.faq-answer {
  max-height: 500px;
  /* Large enough to fit content */
  padding: 0 24px 24px 24px;
}

.faq-answer p {
  font-family: 'Inter UI', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

@media (max-width: 900px) {
  .faq-container {
    flex-direction: column;
    gap: 56px;
  }

  .faq-left {
    position: static;
  }
}

/* ── Footer Section ──────────────────────────────── */

.site-footer {
  background-color: #000000;
  color: #ffffff;
  position: relative;
  overflow-x: clip;
  /* overflow: hidden removed to allow huge text to cross the top boundary (using overflow-x: clip to prevent horizontal scroll) */
  padding-top: 80px;
  z-index: 1000;
  /* Ensure footer text is above the blur overlay */
}

.footer-glow {
  position: absolute;
  top: 0;
  /* Prevents the glow from bleeding up into the white section */
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 500px;
  background: radial-gradient(ellipse at top, rgba(0, 153, 255, 0.25), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Texto Gigante Fading */
.footer-huge-text {
  position: absolute;
  top: -65px;
  /* exatamente no meio da seção branca */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;

  font-family: 'Tomato UI', sans-serif;
  font-size: clamp(3rem, 15vw, 195px);
  font-weight: 800;
  text-align: center;
  line-height: 0.8;
  letter-spacing: -0.02em;
  text-transform: uppercase;

  /* Gradiente que dá o preenchimento: transparente em cima, escuro em baixo */
  background: linear-gradient(180deg,
      transparent 0%,
      transparent 45%,
      rgba(255, 255, 255, 0.08) 45.1%,
      rgba(255, 255, 255, 0.02) 75%,
      rgba(0, 0, 0, 0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  /* This creates a more visible outline effect on the white section */
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.12);

  user-select: none;
  width: 100%;
  white-space: nowrap;
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 5vw 40px 5vw;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 80px;
  margin-bottom: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-company-info {
  font-family: 'Inter UI', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.footer-inpi {
  font-family: 'Inter UI', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.footer-socials a:hover {
  background: #3b82f6;
  color: #ffffff;
  border-color: #3b82f6;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.footer-heading {
  font-family: 'Inter UI', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 24px;
}

.footer-text {
  font-family: 'Inter UI', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.link-title {
  font-family: 'Inter UI', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.link-value {
  font-family: 'Inter UI', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Inter UI', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 24px;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
  width: fit-content;
  position: relative;
}

.privacy-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

.privacy-link:hover {
  color: #ffffff;
}

.privacy-link:hover::after {
  width: 100%;
}

.heart-pulse {
  display: inline-block;
  color: #ef4444;
  animation: heartPulse 1.5s infinite ease-in-out;
}

@keyframes heartPulse {
  0% {
    transform: scale(1);
  }

  15% {
    transform: scale(1.3);
  }

  30% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-col[style] {
    padding-right: 0 !important;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-bottom-left {
    align-items: center;
  }
}

/* --- INÍCIO: EFEITO BLUR NO RODAPÉ --- */
/* Efeito de vidro com várias camadas. Para remover, exclua até a marca de FIM. */
.blur-footer-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 999;
  pointer-events: none;
  /* Garante que os cliques passem pelo vidro até o rodapé */
}

.blur-1 {
  z-index: 1;
  backdrop-filter: blur(0.25px);
  mask-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 25%, rgba(0, 0, 0, 0) 37.5%);
  -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 25%, rgba(0, 0, 0, 0) 37.5%);
}

.blur-2 {
  z-index: 2;
  backdrop-filter: blur(0.5px);
  mask-image: linear-gradient(rgba(0, 0, 0, 0) 12.5%, rgb(0, 0, 0) 25%, rgb(0, 0, 0) 37.5%, rgba(0, 0, 0, 0) 50%);
  -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0) 12.5%, rgb(0, 0, 0) 25%, rgb(0, 0, 0) 37.5%, rgba(0, 0, 0, 0) 50%);
}

.blur-3 {
  z-index: 3;
  backdrop-filter: blur(1px);
  mask-image: linear-gradient(rgba(0, 0, 0, 0) 25%, rgb(0, 0, 0) 37.5%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 62.5%);
  -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0) 25%, rgb(0, 0, 0) 37.5%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 62.5%);
}

.blur-4 {
  z-index: 4;
  backdrop-filter: blur(2px);
  mask-image: linear-gradient(rgba(0, 0, 0, 0) 37.5%, rgb(0, 0, 0) 50%, rgb(0, 0, 0) 62.5%, rgba(0, 0, 0, 0) 75%);
  -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0) 37.5%, rgb(0, 0, 0) 50%, rgb(0, 0, 0) 62.5%, rgba(0, 0, 0, 0) 75%);
}

.blur-5 {
  z-index: 5;
  backdrop-filter: blur(4px);
  mask-image: linear-gradient(rgba(0, 0, 0, 0) 50%, rgb(0, 0, 0) 62.5%, rgb(0, 0, 0) 75%, rgba(0, 0, 0, 0) 87.5%);
  -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0) 50%, rgb(0, 0, 0) 62.5%, rgb(0, 0, 0) 75%, rgba(0, 0, 0, 0) 87.5%);
}

.blur-6 {
  z-index: 6;
  backdrop-filter: blur(8px);
  mask-image: linear-gradient(rgba(0, 0, 0, 0) 62.5%, rgb(0, 0, 0) 75%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0) 62.5%, rgb(0, 0, 0) 75%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
}

.blur-7 {
  z-index: 7;
  backdrop-filter: blur(16px);
  mask-image: linear-gradient(rgba(0, 0, 0, 0) 75%, rgb(0, 0, 0) 87.5%, rgb(0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0) 75%, rgb(0, 0, 0) 87.5%, rgb(0, 0, 0) 100%);
}

.blur-8 {
  z-index: 8;
  backdrop-filter: blur(32px);
  mask-image: linear-gradient(rgba(0, 0, 0, 0) 87.5%, rgb(0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0) 87.5%, rgb(0, 0, 0) 100%);
}

.blur {
  position: absolute;
  pointer-events: none;
  inset: 0px;
}

/* --- FIM: EFEITO BLUR NO RODAPÉ --- */

/* --- INÍCIO: MODAL POLÍTICA DE PRIVACIDADE --- */
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.privacy-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.privacy-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.privacy-modal-content {
  position: relative;
  width: 90%;
  max-width: 700px;
  max-height: 85vh;
  background: #061022;
  /* Matches site theme */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.privacy-modal.is-open .privacy-modal-content {
  transform: translateY(0) scale(1);
}

.privacy-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
}

.privacy-modal-close:hover {
  background: rgba(0, 153, 255, 0.2);
  transform: scale(1.05);
}

.privacy-modal-body {
  padding: 40px 48px;
  overflow-y: auto;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Inter UI', sans-serif;
  line-height: 1.7;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 153, 255, 0.5) transparent;
}

.privacy-modal-body::-webkit-scrollbar {
  width: 6px;
}

.privacy-modal-body::-webkit-scrollbar-thumb {
  background: rgba(0, 153, 255, 0.5);
  border-radius: 10px;
}

.privacy-modal-body h2 {
  font-family: 'Tomato UI', sans-serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 24px;
  padding-right: 40px;
}

.privacy-modal-body h3 {
  font-family: 'Tomato UI', sans-serif;
  font-size: 1.25rem;
  color: #fff;
  margin-top: 32px;
  margin-bottom: 12px;
}

.privacy-modal-body p {
  margin-bottom: 16px;
  font-size: 1rem;
}

@media (max-width: 600px) {
  .privacy-modal-body {
    padding: 32px 24px;
  }
}

/* --- FIM: MODAL POLÍTICA DE PRIVACIDADE --- */

/* ── LGPD Banner (Compact Box) ────────────────── */
.lgpd-banner {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 320px;
  /* Small box width */
  background-color: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  z-index: 9999;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(150%) scale(0.9);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lgpd-banner.show {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.lgpd-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lgpd-icon {
  width: 24px;
  height: 24px;
  color: #0099ff;
  margin-bottom: -4px;
}

.lgpd-text p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.lgpd-text a {
  color: #0099ff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.lgpd-text a:hover {
  text-decoration: underline;
  color: #007acc;
}

.lgpd-accept-btn {
  width: 100%;
  padding: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  background-color: transparent;
  color: #0099ff;
  border: 1px solid rgba(0, 153, 255, 0.3);
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Tomato UI', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.3s ease;
}

.lgpd-accept-btn:hover {
  background-color: rgba(0, 153, 255, 0.1);
  border-color: #0099ff;
}

@media (max-width: 768px) {
  .lgpd-banner {
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 150%) scale(0.9);
    width: calc(100% - 40px);
    max-width: 380px;
  }

  .lgpd-banner.show {
    transform: translate(-50%, 0) scale(1);
  }
}

/* ── Premium Floating WhatsApp Button ─────────── */
.wa-float-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Tooltip lateral opcional */
.wa-tooltip {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.wa-float-container:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.floating-whatsapp {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-whatsapp:hover {
  transform: scale(1.08) translateY(-4px);
}

/* Fundo central rígido do WhatsApp */
.wa-inner {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-inner svg {
  width: 32px;
  height: 32px;
}

/* Animação Premium Conic Gradient Ring */
.wa-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 1;
  background: conic-gradient(transparent 0deg,
      transparent 200deg,
      rgba(255, 255, 255, 0.8) 280deg,
      #25D366 360deg);
  animation: wa-spin 2.5s linear infinite;
}

/* Pequeno blur embaixo do anel giratório para dar um glow */
.wa-ring::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: inherit;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.6;
}

@keyframes wa-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .wa-float-container {
    bottom: 90px;
    right: 20px;
  }

  .footer-huge-text {
    display: none !important;
  }

  .wa-tooltip {
    display: none;
    /* Hide tooltip on small screens */
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
  }

  .wa-inner {
    width: 48px;
    height: 48px;
  }

  .wa-inner svg {
    width: 28px;
    height: 28px;
  }
}