/* ============ CSS VARIABLES ============ */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-card: #ffffff;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --color-primary: #2563eb;
  --color-primary-light: #3b82f6;
  --color-secondary: #10b981;
  --color-accent: #6366f1;
  --gradient-primary: linear-gradient(135deg, #2563eb, #6366f1);
  --gradient-secondary: linear-gradient(135deg, #10b981, #2563eb);
  --border-color: rgba(0, 0, 0, 0.06);
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.15);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-primary: "Inter", sans-serif;
  --font-heading: "Plus Jakarta Sans", sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --navbar-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  max-width: 100%;
}
body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  max-width: 100%;
}
img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 120px 0;
  position: relative;
}
[data-animate] {
  opacity: 0;
}

/* Títulos e textos */
.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-primary-light);
  background: rgba(108, 60, 236, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.google-ads__content .section__title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
}
.section__desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(108, 60, 236, 0.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(108, 60, 236, 0.4);
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
}
.btn--outline:hover {
  background: var(--color-primary);
  color: white;
}
.btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
}
.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-smooth);
  height: var(--navbar-height);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  z-index: 1001;
}
.navbar__logo-accent {
  color: var(--color-primary-light);
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.navbar__list {
  display: flex;
  gap: 32px;
}
.navbar__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}
.navbar__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-smooth);
}
.navbar__link:hover,
.navbar__link.active {
  color: var(--text-primary);
}
.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}
.navbar__cta {
  display: flex;
}
.navbar__cta-mobile {
  display: none;
}
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
  padding: 8px;
}
.navbar__burger-line {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-smooth);
}
@media (max-width: 1024px) {
  .navbar__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    transition: right var(--transition-smooth);
    border-left: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
  }
  .navbar__nav.active {
    right: 0;
  }
  .navbar__list {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .navbar__link {
    color: var(--text-primary);
    font-size: 1.1rem;
  }
  .navbar__cta {
    display: none;
  }
  .navbar__cta-mobile {
    display: flex;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
  }
  .navbar__burger {
    display: flex;
  }
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--navbar-height);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 70%);
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
}
.hero__glow--1 {
  width: 600px;
  height: 600px;
  background: var(--color-primary);
  top: -200px;
  right: -100px;
}
.hero__glow--2 {
  width: 500px;
  height: 500px;
  background: var(--color-accent);
  bottom: -150px;
  left: -100px;
}
.hero__container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__content {
  max-width: 600px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero__subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 500px;
}
.hero__actions {
  display: flex;
  gap: 12px;
}
.hero__mockup {
  position: relative;
}
.hero__browser {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.hero__browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.hero__browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.hero__browser-dot--red {
  background: #ff5f57;
}
.hero__browser-dot--yellow {
  background: #ffbd2e;
}
.hero__browser-dot--green {
  background: #28ca41;
}
.hero__browser-url {
  flex: 1;
  background: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: 8px;
  text-transform: lowercase;
  border: 1px solid var(--border-color);
}
.hero__browser-content {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.hero__carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}
.hero__carousel-slide {
  min-width: 100%;
  height: 100%;
}
.hero__carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.hero__carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.hero__carousel-dot.active {
  background: var(--color-primary);
  box-shadow: 0 0 8px var(--color-primary);
}
.hero__mockup-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--color-primary);
  filter: blur(120px);
  opacity: 0.15;
  bottom: -50px;
  right: -50px;
  z-index: -1;
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}
@media (max-width: 968px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__content {
    order: 2;
  }
  .hero__mockup {
    order: 1;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Projetos carrossel */
.projetos-carrossel {
  overflow: hidden;
}
.carrossel__wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.carrossel__wrapper + .carrossel__wrapper {
  margin-top: 32px;
}
.carrossel__track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  animation: scrollCarrossel 20s linear infinite;
}
.carrossel__wrapper:hover .carrossel__track {
  animation-play-state: paused;
}
.carrossel__track--reverse {
  animation: scrollCarrosselReverse 20s linear infinite;
}
@keyframes scrollCarrossel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scrollCarrosselReverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.projeto-card {
  flex: 0 0 auto;
  width: 360px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(10px);
  cursor: pointer;
}
.projeto-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0 30px rgba(108, 60, 236, 0.2);
  transform: translateY(-4px);
}
.projeto-card__image-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.projeto-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.projeto-card:hover .projeto-card__image {
  transform: scale(1.05);
}
.projeto-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 15, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}
.projeto-card:hover .projeto-card__overlay {
  opacity: 1;
}
.projeto-card__category {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--color-primary-light);
  background: rgba(108, 60, 236, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
  margin: 16px 16px 8px;
}
.projeto-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin: 0 16px 8px;
}
.projeto-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0 16px 20px;
}

/* Google Ads */
.google-ads__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.google-ads__features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.google-ads__feature {
  display: flex;
  gap: 16px;
}
.google-ads__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.google-ads__feature h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.google-ads__feature p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.google-ads__visual {
  display: flex;
  justify-content: center;
}
.search-simulation {
  background: #ffffff;
  border: 1px solid #dadce0;
  border-radius: 24px;
  padding: 20px 20px 24px;
  width: 100%;
  max-width: 580px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.search-simulation__logo {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -2px;
  margin-bottom: 20px;
  text-align: center;
  font-family: "Product Sans", Arial, sans-serif;
}
.search-simulation__logo span {
  font-weight: 500;
}
.search-simulation__bar {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #dadce0;
  border-radius: 999px;
  padding: 10px 16px;
  margin-bottom: 18px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.search-simulation__icon {
  margin-right: 12px;
  flex-shrink: 0;
}
.search-simulation__input {
  color: #202124;
  font-size: 16px;
  flex: 1;
  min-height: 24px;
  display: flex;
  align-items: center;
}
.search-simulation__cursor {
  color: var(--color-primary-light);
  font-weight: 100;
  font-size: 20px;
  animation: blink 1s infinite;
  display: inline;
  margin-left: 2px;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.search-simulation__result {
  opacity: 0;
  transition: opacity 0.4s;
  background: #ffffff;
  border-top: 1px solid #dadce0;
  padding-top: 16px;
}
.search-simulation__ad-badge {
  color: #70757a;
  font-size: 14px;
  margin-bottom: 4px;
}
.search-simulation__ad-title {
  color: #1a0dab;
  font-size: 20px;
  margin-bottom: 4px;
}
.search-simulation__ad-desc {
  color: #4d5156;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .google-ads__grid {
    grid-template-columns: 1fr;
  }
  .search-simulation {
    max-width: 100%;
  }
}

/* Processo */
.processo__timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.processo__line {
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--color-primary),
    var(--color-primary-light)
  );
  opacity: 0.2;
}
.processo__step {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}
.processo__step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
.processo__step-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary-light);
  background: rgba(108, 60, 236, 0.15);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.processo__step-dot {
  width: 12px;
  height: 12px;
  background: var(--color-primary-light);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--color-primary);
}
.processo__step-content {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(10px);
  flex: 1;
}
.processo__step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.processo__step-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .processo__step {
    gap: 20px;
  }
  .processo__line {
    left: 23px;
  }
}

/* Depoimentos */
.depoimentos__carousel {
  overflow: hidden;
}
.depoimentos__track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  animation: scrollDepoimentos 20s linear infinite;
}
.depoimentos__carousel {
  /* permitir que sombras e bordas "saiam" do container sem cortar */
  overflow: visible;
  padding: 18px 0; /* cria espaço para sombras no topo/embaixo */
  position: relative;
  z-index: 1;
}
/* o comportamento antigo de pausa foi substituído por desaceleração via classe JS */
/* desacelera a animação quando JS adiciona a classe */
.depoimentos__track.slow-by-hover {
  animation-duration: 60s !important; /* mais lento */
}
@keyframes scrollDepoimentos {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.depoimento-card {
  min-width: 400px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
  transition:
    transform 0.28s var(--transition-smooth),
    box-shadow 0.28s var(--transition-smooth),
    border-color 0.28s var(--transition-smooth);
  position: relative;
  z-index: 2; /* garante que cartões fiquem acima do fundo branco */
}
.depoimento-card__stars {
  color: #f59e0b;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.depoimento-card__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 24px;
  min-height: 4.8em;
}
.depoimento-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.depoimento-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-primary);
}
.depoimento-card__author strong {
  display: block;
  font-size: 0.95rem;
}
.depoimento-card__author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.depoimento-card:hover,
.depoimento-card:focus-within {
  transform: translateY(-6px);
  border-color: var(--color-primary-light);
  box-shadow:
    0 10px 30px rgba(99, 102, 241, 0.12),
    0 0 0 6px rgba(59, 130, 246, 0.06);
}
.depoimento-card:hover,
.depoimento-card:focus-within {
  transform: translateY(-6px);
  border-color: var(--color-primary-light);
  box-shadow:
    0 10px 30px rgba(99, 102, 241, 0.12),
    0 0 0 6px rgba(59, 130, 246, 0.06);
  z-index: 20; /* sobe acima de outros elementos durante hover */
}
@media (max-width: 600px) {
  .depoimento-card {
    min-width: 85vw;
  }
}

/* FAQ */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}
.faq__item {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all var(--transition-smooth);
}
.faq__item[open] {
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(108, 60, 236, 0.1);
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq__question::-webkit-details-marker {
  display: none;
}
.faq__icon {
  transition: transform var(--transition-smooth);
  color: var(--text-muted);
}
.faq__item[open] .faq__icon {
  transform: rotate(180deg);
  color: var(--color-primary-light);
}
.faq__answer {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* CTA */
.cta__card {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(108, 60, 236, 0.05),
    rgba(139, 92, 246, 0.03)
  );
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
  backdrop-filter: blur(20px);
  overflow: hidden;
}
.cta__glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--color-primary);
  filter: blur(150px);
  opacity: 0.08;
  top: -100px;
  right: -100px;
}
.cta__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
}
.cta__desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Contato */
.contato__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}
.contato__form {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.contato__field {
  flex: 1 1 calc(50% - 12px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contato__field--full {
  flex: 1 1 100%;
}
.contato__field label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.contato__field input,
.contato__field select,
.contato__field textarea {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
}
.contato__field input:focus,
.contato__field select:focus,
.contato__field textarea:focus {
  border-color: var(--color-primary);
  background: white;
}
.contato__field textarea {
  resize: vertical;
}
.contato__submit {
  margin-top: 8px;
  width: 100%;
}
.contato__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}
.contato__info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 20px;
  backdrop-filter: blur(10px);
}
.contato__info-card span {
  font-size: 0.95rem;
  color: var(--text-secondary);
}
@media (max-width: 768px) {
  .contato__grid {
    grid-template-columns: 1fr;
  }
  .contato__field {
    flex: 1 1 100%;
  }
}

/* Rodapé */
.rodape {
  background: #f8fafc;
  padding: 80px 0 30px;
  border-top: 1px solid var(--border-color);
}
.rodape__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.rodape__desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 300px;
  margin-top: 20px;
}
.rodape__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 20px;
  color: rgb(0, 0, 0);
}
.rodape__links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rodape__links a {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}
.rodape__links a:hover {
  color: var(--color-primary);
}
.rodape__social-icons {
  display: flex;
  gap: 16px;
}
.rodape__social-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-primary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}
.rodape__social-icon:hover {
  background: var(--gradient-primary);
  transform: translateY(-2px);
}
.rodape__bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .rodape__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* WhatsApp flutuante */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 64px;
  height: 64px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4);
  animation: whatsappPulse 2s infinite;
  transition: transform var(--transition-smooth);
}
.whatsapp-btn svg {
  width: 30px;
  height: 30px;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
}
@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ============ RESPONSIVIDADE MOBILE ============ */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .navbar__container {
    padding: 0 16px;
  }
  .hero {
    padding-top: calc(var(--navbar-height) + 32px);
  }
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero__content {
    order: 2;
    max-width: 100%;
  }
  .hero__mockup {
    order: 1;
    max-width: 90vw;
    margin: 0 auto;
  }
  .hero__browser-content {
    height: 200px;
  }
  .hero__headline {
    font-size: 1.8rem;
  }
  .hero__subtitle {
    font-size: 0.9rem;
  }
  .hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero__badge {
    font-size: 0.7rem;
    padding: 4px 12px;
  }
  .projeto-card {
    width: 280px;
  }
  .projeto-card__image-wrap {
    height: 160px;
  }
  .google-ads__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .search-simulation {
    max-width: 100%;
    padding: 16px;
  }
  .search-simulation__logo {
    font-size: 1.5rem;
  }
  .search-simulation__input {
    font-size: 14px;
  }
  .processo__step {
    gap: 16px;
  }
  .processo__step-content {
    padding: 20px;
  }
  .processo__step-num {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .processo__line {
    left: 19px;
  }
  .depoimento-card {
    min-width: 80vw;
    padding: 24px;
  }
  .depoimentos__arrow {
    width: 36px;
    height: 36px;
    transition:
      transform 0.28s var(--transition-smooth),
      box-shadow 0.28s var(--transition-smooth),
      border-color 0.28s var(--transition-smooth);
    transition-delay: 0s;
    pointer-events: auto;
  }
  .contato__grid {
    grid-template-columns: 1fr;
  }
  .contato__field {
    flex: 1 1 100%;
  }
  .rodape__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .rodape__desc {
    max-width: 100%;
  }
  .rodape__social-icons {
    justify-content: center;
  }
  .whatsapp-btn {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-btn svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  .section__title {
    font-size: 1.8rem;
  }
  .section__desc {
    font-size: 0.95rem;
  }
  .btn--lg {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

/* Serviços */
.servicos {
  background: var(--bg-secondary);
}
.section__tag--green {
  color: var(--color-primary-light);
  background: rgba(59, 130, 246, 0.08);
}
.servicos__title-muted {
  color: var(--text-muted);
}
.servicos__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
  justify-content: center;
}
.servico-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-md);
  transition:
    transform var(--transition-smooth),
    box-shadow var(--transition-smooth);
}
.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.servico-card--featured {
  background: #0b0b0f;
  border-color: #0b0b0f;
  color: #ffffff;
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.12);
  transform: translateY(-14px);
}
.servico-card--featured:hover {
  transform: translateY(-20px);
}
.servico-card__badge {
  position: absolute;
  top: -14px;
  left: 26px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: var(--color-primary-light);
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.18);
}
.servico-card__head {
  padding-bottom: 22px;
}
.servico-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.servico-card__desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-secondary);
}
.servico-card--featured .servico-card__desc {
  color: rgba(234, 250, 241, 0.72);
}
.servico-card__highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 0;
  border-top: 1px solid var(--border-color);
}
.servico-card--featured .servico-card__highlights {
  border-top-color: rgba(234, 250, 241, 0.14);
}
.servico-card__highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}
.check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--color-primary-light);
  background: rgba(59, 130, 246, 0.1);
  margin-top: 1px;
}
.check svg {
  width: 12px;
  height: 12px;
}
.check--solid {
  color: #ffffff;
  background: var(--color-primary-light);
}
.servico-card--featured .check {
  background: rgba(59, 130, 246, 0.12);
  color: #bfdbfe;
}
.servico-card--featured .check--solid {
  background: var(--color-primary);
  color: #0b0b0f;
}
.servico-card__divider {
  height: 1px;
  background: var(--border-color);
}
.servico-card--featured .servico-card__divider {
  background: rgba(234, 250, 241, 0.14);
}
.servico-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  padding: 22px 0 16px;
}
.servico-card--featured .servico-card__label {
  color: rgba(234, 250, 241, 0.55);
}
.servico-card__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.servico-card__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-secondary);
}
.servico-card--featured .servico-card__item {
  color: rgba(234, 250, 241, 0.82);
}
.servico-card__prazo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 24px 0;
  margin-top: auto;
}
.servico-card__prazo svg {
  color: var(--color-primary-light);
}
.servico-card__prazo strong {
  color: var(--text-primary);
  font-weight: 700;
}
.servico-card--featured .servico-card__prazo {
  color: rgba(234, 250, 241, 0.72);
}
.servico-card--featured .servico-card__prazo strong {
  color: #eafaf1;
}
.servico-card--featured .servico-card__prazo svg {
  color: var(--color-primary-light);
}
.servico-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  background: #0b0b0f;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition-smooth);
}
.servico-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.1);
}
.servico-card__btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: #0b0b0f;
}
.servico-card__btn-arrow svg {
  width: 14px;
  height: 14px;
}
.servico-card--featured .servico-card__btn {
  background: var(--color-primary-light);
  color: #0b0b0f;
}
.servico-card--featured .servico-card__btn-arrow {
  background: #0b0b0f;
  color: var(--color-primary-light);
}
@media (max-width: 1024px) {
  .servicos__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  .servico-card--featured {
    transform: none;
  }
  .servico-card--featured:hover {
    transform: translateY(-6px);
  }
}
@media (max-width: 560px) {
  .servicos__grid {
    grid-template-columns: 1fr;
  }
}
