/* === MAIN LAYOUT & TYPOGRAPHY === */
body {
  background-color: var(--black);
  color: var(--white);
  font-family: 'Noto Sans', sans-serif;
}

.drowner {
  font-family: 'Drowner', sans-serif;
  text-transform: uppercase;
  line-height: 0.9;
}

/* Custom Cursor */
.cursor {
  width: 12px;
  height: 12px;
  background: var(--yellow);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 9999;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  will-change: transform;
}

/* Base Sections */
section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.tagline {
  color: var(--blue);
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 14px;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: background 0.4s var(--ease-out-expo), backdrop-filter 0.4s;
}

nav.scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  color: var(--yellow);
  transition: color 0.4s;
}

.nav-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.nav-brand.invert {
  color: var(--black);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.3s;
}

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

.nav-cta a, .nav-cta button {
  background: var(--yellow);
  color: var(--black);
  border: none;
  padding: 12px 24px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease-out-expo);
  display: inline-block;
}

.nav-cta a:hover, .nav-cta button:hover {
  transform: translateY(-2px);
}

/* HERO SECTION (Screen 1 & 2 wrapper) */
.hero-wrapper {
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../public/sinal-de-luzy.webp') center center / cover no-repeat;
  z-index: 0;
  transform-origin: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--black) 100%);
  z-index: 1;
}

#hero, #sub-hero {
  z-index: 2;
  justify-content: center;
  align-items: center;
  padding: 4rem;
}

.hero-visual {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.95);
  animation: incandescentFlicker 6s infinite alternate;
}

@keyframes incandescentFlicker {
  0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
    filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.3)) drop-shadow(0 0 30px rgba(232, 75, 26, 0.2)) brightness(1);
  }
  20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
    filter: drop-shadow(0 0 2px rgba(255, 204, 0, 0.1)) drop-shadow(0 0 5px rgba(232, 75, 26, 0.1)) brightness(0.7);
  }
  80% {
    filter: drop-shadow(0 0 15px rgba(255, 204, 0, 0.5)) drop-shadow(0 0 45px rgba(232, 75, 26, 0.4)) brightness(1.1);
  }
}

/* RAIN ANIMATION */
.hero-rain-wrap {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 1; /* Above hero-bg and overlay, below content */
  overflow: hidden;
}

.rain-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform-origin: center center;
}

.rain-drop {
  position: absolute;
  top: -20px;
  animation: rain-fall linear infinite;
  will-change: transform;
}

@keyframes rain-fall {
  0% { transform: translateY(-20px); }
  100% { transform: translateY(calc(200vh + 20px)); }
}

.lightning-flash {
  animation: lightning-flash ease-out forwards;
}

.lightning-bolt {
  animation: lightning-bolt ease-out forwards;
}

@keyframes lightning-flash {
  0% { opacity: 0; }
  10% { opacity: 1; }
  20% { opacity: 0.3; }
  30% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes lightning-bolt {
  0% { opacity: 0; }
  10% { opacity: 1; }
  20% { opacity: 0.7; }
  30% { opacity: 1; }
  40% { opacity: 0.4; }
  50% { opacity: 0.8; }
  60% { opacity: 0; }
  100% { opacity: 0; }
}

.hero-title-wrap {
  margin-bottom: 2rem;
}

.hero-title {
  font-size: var(--title-hero);
  color: var(--white);
  max-width: 900px;
}

.word-line {
  overflow: hidden;
  display: inline-block;
}

.word-line span {
  display: inline-block;
  transform: translateY(60px);
  opacity: 0;
}

/* GOOEY TEXT ANIMATION */
.gooey-svg {
  position: absolute;
  width: 0;
  height: 0;
}

.gooey-text-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  margin-top: 0;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(40px);
}

.gooey-text-span {
  position: absolute;
  display: inline-block;
  user-select: none;
  text-align: center;
  font-family: 'Rubik Spray Paint', system-ui;
  font-size: 60px;
  color: var(--yellow);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .gooey-text-container {
    height: 140px;
    margin-bottom: 2rem;
  }
  .gooey-text-span {
    font-size: 100px;
  }
}

#sub-hero {
  min-height: 50vh;
  justify-content: center;
  padding-top: 0;
}

.sub-text {
  font-size: 24px;
  color: var(--white);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.5;
  transform: translateY(40px);
  opacity: 0;
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  transform: translateY(40px);
  opacity: 0;
}

.btn-filled {
  background: var(--yellow);
  color: var(--black);
  padding: 1rem 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  padding: 1rem 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* STATS SECTION */
#stats {
  background: var(--yellow);
  color: var(--black);
  min-height: 60vh;
  padding: 8rem 4rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.stats-label {
  position: absolute;
  top: 4rem;
  right: 4rem;
  font-weight: 700;
  color: var(--black);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 2rem;
}

.stat-col {
  border-left: 1px solid var(--black);
  padding-left: 2rem;
  transform: translateY(40px);
  opacity: 0;
}

.stat-num {
  font-size: var(--title-section);
  line-height: 1;
  margin-bottom: 1rem;
}

.stat-desc {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* PROCESSOS SECTION */
#processos {
  background: var(--white);
  color: var(--black);
  flex-direction: row;
  padding: 0;
}

.processos-left {
  flex: 1;
  padding: 8rem 4rem;
  padding-bottom: 40vh;
}

.processos-right {
  flex: 1;
  padding: 4rem;
  position: relative;
}

.processos-title {
  font-size: var(--title-section);
  margin-bottom: 6rem;
}

.p-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 6rem;
  opacity: 0.3;
  transition: opacity 0.4s;
}

.p-step.active {
  opacity: 1;
}

.p-step.active .p-marker {
  opacity: 1;
  background: var(--accent-orange, #e84b1a);
}

.p-marker {
  width: 12px;
  height: 12px;
  background: var(--gray-dim);
  opacity: 0;
  transition: all 0.3s;
  margin-top: 8px;
}

.p-content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.p-content p {
  font-size: 18px;
  color: var(--gray-text);
  max-width: 400px;
}

.processos-sticky {
  position: sticky;
  top: 120px;
  height: 70vh;
  background: var(--gray-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.processos-visual-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.p-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
}

.p-visual.active {
  opacity: 1;
}

.p-mobile-img {
  display: none;
  margin-top: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #333;
}

.p-mobile-img img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%) contrast(1.2);
}

/* PORTFOLIO SECTION */
#portfolio {
  background: var(--black);
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
}

.portfolio-left {
  width: 500px;
  padding: 8rem 4rem;
  border-right: 1px solid #222;
  z-index: 2;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.portfolio-title {
  font-size: 56px;
  margin-bottom: 1rem;
}

.portfolio-sub {
  color: var(--gray-text);
  margin-bottom: 4rem;
}

.w-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.w-item.active {
  opacity: 1;
}

.w-dot {
  width: 8px;
  height: 8px;
  background: transparent;
  border-radius: 50%;
  transition: background 0.3s;
}

.w-item.active .w-dot {
  background: var(--yellow);
}

.w-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.w-item span {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gray-text);
}

.portfolio-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.w-slide {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem;
}

.w-slide .w-card {
  opacity: 0.3;
  transform: scale(0.97);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo), border-color 0.6s;
}

.w-slide.active .w-card {
  opacity: 1;
  transform: scale(1);
  border-color: #444;
}

.w-card {
  width: 100%;
  max-width: 850px;
  border: 1px solid #2a2a2a;
  background: #0d0d0d;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.w-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.w-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s var(--ease-out-expo);
}

.w-card:hover .w-card-img img {
  transform: scale(1.04);
}

.w-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid #2a2a2a;
  gap: 1rem;
}

.w-card-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gray-text);
  font-weight: 600;
  text-transform: uppercase;
}

.w-card-btn {
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--white);
  border: 1px solid #333;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s;
}

.w-card-btn:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

/* PLANOS SECTION */
#planos {
  background: #0a0a0a;
  padding: 8rem 4rem;
  overflow: hidden;
}

.bg-shape {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 50%;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, #141414 10px, #141414 20px);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.3;
  pointer-events: none;
}

.planos-header {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.planos-title {
  font-size: 7vw;
  color: var(--white);
  max-width: 60%;
  line-height: 1;
  margin-bottom: 6rem;
}

.deco-tag {
  position: absolute;
  top: 0;
  right: 0;
  color: #e84b1a;
  font-size: 13px;
  letter-spacing: 0.3em;
  font-weight: 600;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #2a2a2a;
  position: relative;
  z-index: 2;
  margin-bottom: 6rem;
}

.service-card {
  border-bottom: 1px solid #2a2a2a;
  padding: 3rem 2rem 3rem 0;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

.pricing-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: #e84b1a;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.setup-highlight {
  background: #111;
  border: 1px solid #222;
  padding: 4rem;
  margin-bottom: 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.setup-info h2 {
  font-size: 40px;
  margin: 1rem 0;
}

.setup-info p {
  color: var(--gray-text);
  font-size: 18px;
}

.setup-value {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.setup-price {
  font-size: 48px;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.btn-yellow-outline {
  border: 1px solid var(--yellow);
  color: var(--yellow);
  padding: 1rem 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-block;
}

.btn-yellow-outline:hover {
  background: var(--yellow);
  color: var(--black);
}

.setup-value p {
  color: #888;
  font-size: 14px;
}

.pricing-meta {
  margin-bottom: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.square-marker {
  width: 12px;
  height: 12px;
  background: var(--yellow);
  display: inline-block;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.price-card {
  background: #111;
  border: 1px solid #2a2a2a;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  transform: translateY(80px);
  opacity: 0;
}

.price-card.pro {
  border-color: var(--yellow);
  position: relative;
}

.price-card.pro::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-width: 0 40px 40px 0;
  border-color: transparent var(--yellow) transparent transparent;
}

.p-card-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.p-card-price {
  font-size: 32px;
  color: var(--white);
  margin-bottom: 2rem;
}

.p-card-feats {
  list-style: none;
  margin-bottom: 3rem;
  flex: 1;
}

.p-card-feats li {
  padding: 12px 0;
  border-bottom: 1px solid #222;
  font-size: 15px;
  color: #ccc;
  display: flex;
  gap: 10px;
  align-items: center;
}

.p-card-feats li::before {
  content: "✓";
  color: var(--yellow);
  font-weight: bold;
  flex-shrink: 0;
}

.btn-light {
  background: var(--white);
  color: #111;
  padding: 1rem;
  width: 100%;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
}

.btn-yellow-full {
  background: var(--yellow);
  color: #111;
  padding: 1rem;
  width: 100%;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
}

/* FAQ SECTION */
#faq {
  background: #111111;
  flex-direction: row;
  padding: 8rem 4rem;
  gap: 4rem;
}

.faq-left {
  flex: 1;
  position: relative;
}

.faq-sticky {
  position: sticky;
  top: 8rem;
}

.faq-title {
  font-size: 5vw;
  color: var(--white);
  line-height: 1;
}

.faq-right {
  flex: 2;
  border-top: 1px solid #2a2a2a;
}

.faq-item {
  border-bottom: 1px solid #2a2a2a;
}

.faq-head {
  padding: 2.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-q {
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 600;
}

.faq-icon {
  font-size: 24px;
  color: var(--yellow);
  font-weight: 300;
  transition: transform 0.4s var(--ease-out-expo);
  transform-origin: center;
  display: inline-block;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--white);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo);
}

.faq-body p {
  padding-bottom: 2.5rem;
  color: #aaa;
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
  border-left: 2px solid var(--yellow);
  padding-left: 1rem;
}

/* FOOTER */
footer {
  background: var(--black);
  padding-top: 8rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.footer-bg {
  position: absolute;
  top: -20%; /* Offset para o efeito de parallax */
  left: 0;
  width: 100%;
  height: 140%; /* Altura maior para permitir o movimento */
  background: url('../public/imangem-baixo.jpeg') center center / cover no-repeat;
  z-index: 0;
  opacity: 0.4;
  filter: grayscale(20%) contrast(110%);
}

.footer-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--black) 0%, transparent 20%, transparent 80%, var(--black) 100%);
}

#ascii-container {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
}

#ascii-container pre {
  font-family: monospace;
  color: #e84b1a;
  line-height: 1;
}

.cta-banner {
  max-width: 900px;
  margin: 0 auto 8rem;
  border: 1px solid #333;
  padding: 4rem;
  position: relative;
  z-index: 2;
  background: rgba(13,13,13,0.8);
  backdrop-filter: blur(8px);
}

.cta-banner h2 {
  font-size: 40px;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--gray-text);
  margin-bottom: 3rem;
  font-size: 18px;
}

.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 204, 0, 0.1);
  border: 1px solid var(--yellow);
  color: var(--yellow);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.pulse-icon {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  position: relative;
}

.pulse-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(3); opacity: 0; }
}

.f-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 4rem 4rem;
  border-bottom: 1px solid #222;
  position: relative;
  z-index: 2;
}

.watermark {
  width: 100%;
  max-width: 80vw;
  margin: 4rem auto 0;
  opacity: 1; /* Removido efeito de opacidade */
  text-align: center;
  pointer-events: none;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.watermark img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  animation: incandescentFlicker 6s infinite alternate;
}

.f-bottom {
  display: flex;
  justify-content: space-between;
  padding: 2rem 4rem;
  font-size: 14px;
  color: var(--gray-text);
  position: relative;
  z-index: 2;
}

/* Mobile Menu */
.nav-mobile-btn {
  display: none;
  background: transparent;
  color: var(--white);
  border: 1px solid #333;
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 0.1em;
  cursor: pointer;
  z-index: 101;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out-expo);
  transform: translateY(-10px);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-menu-links a {
  font-size: 40px;
  color: var(--gray-text);
  transition: color 0.3s;
}

.mobile-menu-links a:hover,
.mobile-menu-links a:active {
  color: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-mobile-btn { display: block; }
  
  #stats { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: 1fr; gap: 4rem; }
  #processos, #portfolio, #faq { flex-direction: column; }
  #portfolio { align-items: stretch; }
  .processos-right { display: none; }
  .p-mobile-img { display: block; }
  .portfolio-left { width: 100%; border-right: none; border-bottom: 1px solid #222; padding-bottom: 3rem; position: relative; height: auto; }
  .portfolio-right { display: flex; flex-direction: column; }
  .w-slide { min-height: auto; padding: 1.5rem 2rem 3rem; }
  .services-grid, .pricing-grid, .f-grid { grid-template-columns: 1fr; }
  .faq-sticky { position: relative; top: 0; margin-bottom: 2rem; }
  .faq-title { font-size: 8vw; }
}

@media (max-width: 768px) {
  nav { padding: 1.5rem; }
  .nav-brand { font-size: 1.2rem; }
  .nav-logo { height: 24px; }
  .mobile-menu-close { top: 1.5rem; right: 1.5rem; }

  #hero, #sub-hero { padding: 4rem 1.5rem; }
  .hero-main-img { max-width: 100%; width: 100%; }
  
  .sub-text { font-size: 18px; }
  .cta-group { flex-direction: column; width: 100%; }
  .btn-filled, .btn-ghost { width: 100%; justify-content: center; }

  #stats { padding: 6rem 1.5rem; }
  .stats-label { top: 2rem; right: 1.5rem; }

  .processos-left { padding: 6rem 1.5rem; }
  .processos-title { margin-bottom: 3rem; }
  .p-step { flex-direction: column; gap: 1rem; margin-bottom: 3rem; }
  .p-content h3 { font-size: 24px; }

  .portfolio-left { padding: 4rem 1.5rem 2rem; }
  .portfolio-title { font-size: 40px; }
  .w-slide { padding: 1rem 1.5rem 2.5rem; }
  .w-card-footer { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

  #planos { padding: 6rem 1.5rem; }
  .planos-title { font-size: 12vw; max-width: 100%; }
  .deco-tag { position: relative; top: auto; right: auto; margin-bottom: 2rem; }
  .planos-header { flex-direction: column; }
  .service-card { padding: 2rem 0; }
  .price-card { padding: 2rem; }

  #faq { padding: 6rem 1.5rem; gap: 2rem; }
  .faq-title { font-size: 10vw; }
  .faq-head { padding: 1.5rem 0; }

  footer { padding-top: 4rem; }
  .setup-highlight { 
    flex-direction: column; 
    text-align: left; 
    padding: 3rem 1.5rem; 
    gap: 1.5rem; 
    margin-bottom: 4rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .setup-info h2 { font-size: 26px; }
  .setup-info p { font-size: 16px; }
  .setup-value { text-align: left; align-items: flex-start; }
  .setup-price { font-size: 32px; }
  .cta-banner { padding: 2rem 1.5rem; margin: 0 1.5rem 4rem; }
  .cta-banner h2 { font-size: 28px; }
  .f-grid { padding: 0 1.5rem 2rem; gap: 2rem; }
  .f-bottom { flex-direction: column; gap: 1rem; padding: 2rem 1.5rem; text-align: center; }
  
  .cursor { display: none !important; }
}
