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

:root {
  --primary: #0056CC;
  --primary-dark: #003d99;
  --secondary: #f0f4ff;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --border: #e0e0e0;
  --white: #ffffff;
  --success: #4CAF50;
  --font-display: 'Sora', sans-serif;
  --font-body: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Spline Sans Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
}

html {
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
}

/* Três papéis: Sora (declarações — títulos), Onest (voz — corpo/botões,
   contraste humanista com a geometria da Sora), Spline Sans Mono (leitura
   de dados — estatísticas, numerais, rótulos, como um slate/EXIF de
   câmera). h3 fica na voz, não na declaração — títulos de card são menores. */
h1,
h2,
.about-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-body);
  font-weight: 600;
}

button,
input,
textarea,
select,
.btn,
.btn-primary,
.btn-secondary {
  font-family: var(--font-body);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  padding: 20px 0;
  background: rgba(245, 247, 255, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #E0E7FF;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.header[data-collapsed] {
  transform: translateY(-100%);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.logo-link:hover {
  opacity: 0.85;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #002B6F;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .logo-img {
    height: 42px;
  }
}

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

.nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}

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

.nav a.nav-cta {
  background: #007DF5;
  color: #fff;
  padding: 10px 20px;
  border-radius: 9px;
  box-shadow: 0 4px 14px rgba(0, 125, 245, 0.28);
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav a.nav-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 125, 245, 0.35);
}

/* Botão hambúrguer — escondido no desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 300;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: #002B6F;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  transform-origin: center;
}

/* Hambúrguer vira "X" quando o menu está aberto */
body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0060D8 0%, #0037A6 55%, #002B6F 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  width: 620px;
  height: 620px;
  top: -220px;
  left: -160px;
  background: radial-gradient(circle, rgba(142, 198, 255, 0.55) 0%, rgba(142, 198, 255, 0) 70%);
  animation: hero-blob-drift-a 22s ease-in-out infinite;
}

.hero::after {
  width: 520px;
  height: 520px;
  bottom: -200px;
  right: -140px;
  background: radial-gradient(circle, rgba(96, 220, 255, 0.4) 0%, rgba(96, 220, 255, 0) 70%);
  animation: hero-blob-drift-b 26s ease-in-out infinite;
}

@keyframes hero-blob-drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.15); }
}

@keyframes hero-blob-drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, -30px) scale(1.1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after {
    animation: none;
  }
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 8px 16px;
  width: fit-content;
  font-size: 14px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  display: inline-block;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
}

.hero-highlight {
  color: #8EC6FF;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.hero-tags span:not(:last-child)::after {
  content: '·';
  margin-left: 10px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--white);
  color: var(--primary);
}

.btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

/* Envelope justo ao redor da foto -- do mesmo tamanho dela em todo
   breakpoint -- para os selos (position:absolute) ancorarem nos cantos
   reais da foto. Sem isso eles ancoravam em .hero-image, que e mais larga
   que a foto (ela centraliza a foto dentro de si via flex), deixando os
   selos flutuando fora do canto em vez de sobrepostos a ele. */
.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-photo {
  width: 100%;
  max-width: 420px;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0, 20, 60, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: block;
}

.hero-float-badge {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0, 20, 60, 0.28);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-float-badge strong {
  font-family: var(--font-mono);
  font-weight: 600;
  color: #002B6F;
  font-size: 19px;
  letter-spacing: -0.01em;
}

.hero-float-badge span {
  font-size: 12px;
  color: var(--text-light);
}

.hero-float-badge--top {
  top: -16px;
  left: -16px;
}

.hero-float-badge--bottom {
  bottom: -16px;
  right: -16px;
}

@media (max-width: 1024px) {
  .hero-photo-frame {
    max-width: 340px;
  }

  .hero-photo {
    max-width: 340px;
    height: 420px;
  }
}

@media (max-width: 768px) {
  .hero-photo-frame {
    max-width: 100%;
  }

  .hero-photo {
    max-width: 100%;
    height: 320px;
    object-position: center 20%;
  }
}

/* Instagram Performance -- card compacto flutuante, sobreposto a borda
   inferior do hero (mesma logica visual dos .hero-float-badge: cartao
   branco com sombra ancorado sobre o azul do hero, em vez de secao cheia
   propria como antes). */
.instagram-performance {
  position: relative;
  z-index: 2;
  padding: 0 0 56px;
  margin-top: -36px;
}

.instagram-performance .container {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 20, 60, 0.18);
  padding: 28px 36px;
}

.performance-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}

.instagram-performance h2 {
  font-size: 20px;
  color: var(--primary);
}

.period {
  color: var(--text-light);
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.performance-item {
  background: var(--secondary);
  padding: 16px 18px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.performance-item .label {
  color: var(--text-light);
  font-size: 12px;
}

.performance-item .value {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}

.performance-credit {
  color: var(--text-light);
  font-size: 12px;
  margin: 0;
}

/* Services Section */
.services {
  padding: 80px 0;
}

.section-label {
  font-family: var(--font-mono);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* Kicker por seção — mesmo sistema, acentos distintos pra não parecer
   o mesmo rótulo carimbado em toda seção. (Portfolio fica de fora.) */
.testimonials .section-label {
  display: flex;
  align-items: center;
  gap: 9px;
  letter-spacing: 1.5px;
}

.testimonials .section-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

.services h2 {
  font-size: 40px;
  margin-bottom: 48px;
  max-width: 600px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--secondary);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 86, 204, 0.15);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 86, 204, 0.08);
  color: var(--primary);
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.service-card:hover .service-icon {
  background: rgba(0, 86, 204, 0.15);
  transform: scale(1.08);
}

.service-card h3 {
  color: var(--primary);
  font-size: 20px;
}

.service-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* Portfolio Section */
.portfolio {
  padding: 80px 0;
  background: #f8f9fa;
}

.portfolio-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.portfolio .section-label {
  color: #007DF5;
}

.portfolio-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #002B6F;
}

.portfolio-header p {
  font-size: 15px;
  color: #666666;
}

.portfolio-slider {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}

.slider-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  padding-bottom: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.portfolio-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 300px;
  height: 400px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  cursor: pointer;
  scroll-snap-align: start;
}

.portfolio-card-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.portfolio-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.portfolio-slide.active {
  opacity: 1;
  animation: kenBurns 3.4s ease-out forwards;
}

/* Zoom lento no slide ativo — toque cinematográfico específico do
   portfólio, distinto do reveal-on-scroll usado nas outras seções. */
@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.portfolio-slide-dots {
  position: absolute;
  bottom: 82px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}

.portfolio-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.3s ease;
}

.portfolio-dot.active {
  background: #FFFFFF;
}

.portfolio-card[data-tipo="WEDDING"] .portfolio-slide,
.portfolio-card[data-tipo="CORPORATIVO"] .portfolio-slide {
  object-position: center center;
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 1;
}

.portfolio-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  z-index: 2;
  color: #FFFFFF;
}

.portfolio-badge {
  background: var(--primary);
  color: #FFFFFF;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  display: inline-block;
}

.portfolio-title {
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.portfolio-description {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.slider-prev, .slider-next {
  pointer-events: all;
  background: rgba(0, 93, 207, 0.8);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.3s ease, transform 0.3s ease;
  margin: 0 1rem;
}

.slider-prev:hover, .slider-next:hover {
  background: #007DF5;
  transform: scale(1.1);
}

/* About Section */
.about {
  padding: 0;
}

/* Card branco envolvendo foto + texto */
.about-card {
  background: #fff;
  border: 1px solid #E0E7FF;
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 10px 40px rgba(0, 20, 60, 0.06);
}

/* Container principal */
.about-container {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 3rem;
  align-items: stretch;
}

/* LEFT: Foto */
.about-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.about-image {
  width: 100%;
  height: 100%;
  min-height: 440px;
  max-width: 360px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
}

/* RIGHT: Conteúdo */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 26px 30px 26px 0;
  align-self: center;
}

/* Label — variante em tag/pill, forma distinta dos outros kickers */
.about-label {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono);
  color: var(--primary);
  background: rgba(0, 86, 204, 0.08);
  border: 1px solid rgba(0, 86, 204, 0.18);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Título */
.about-title {
  font-size: 32px;
  font-weight: 700;
  color: #002B6F;
  margin: 0;
  line-height: 1.3;
}

/* Parágrafos */
.about-text {
  font-size: 15px;
  color: #333333;
  line-height: 1.8;
  margin: 0;
}

/* Highlights em 2 colunas */
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 14px;
  color: #333333;
  font-weight: 500;
}

.highlight-icon {
  width: 20px;
  height: 20px;
  background: #E4F7EC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B7A3B;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .about-card {
    padding: 10px;
    border-radius: 18px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }

  .about-image {
    max-width: 280px;
    height: 360px;
    min-height: unset;
  }

  .about-content {
    padding: 0;
    align-self: auto;
  }

  .about-title {
    font-size: 28px;
  }

  .about-text {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem;
  }

  .about-image {
    max-width: 100%;
    height: auto;
    max-height: 360px;
    min-height: unset;
  }

  .about-highlights {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .about-title {
    font-size: 24px;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: var(--secondary);
}

.testimonials h2 {
  font-size: 40px;
  margin-bottom: 48px;
}

.testimonials-slider {
  position: relative;
  margin-top: 2rem;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  background: var(--white);
  padding: 28px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 0 320px;
  scroll-snap-align: start;
  border: 1px solid #E0E7FF;
  box-shadow: 0 2px 10px rgba(0, 20, 60, 0.04);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  border-color: #007DF5;
  box-shadow: 0 8px 24px rgba(0, 125, 245, 0.15);
}

.testimonial-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 1.5rem;
}

.testimonial-prev, .testimonial-next {
  background: rgba(0, 93, 207, 0.8);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.testimonial-prev:hover, .testimonial-next:hover {
  background: #007DF5;
  transform: scale(1.1);
}

.testimonial-header {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.avatar--brand {
  background: linear-gradient(135deg, #007DF5, #0056CC);
}

.testimonial-header h3 {
  font-size: 16px;
  color: var(--text-dark);
  margin: 0;
}

.testimonial-header p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
}

.stars {
  color: #ffc107;
  font-size: 14px;
  letter-spacing: 2px;
  display: inline-block;
  transform-origin: left center;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card:hover .stars {
  transform: scale(1.08);
}

.testimonial-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
}

/* Process Section */
.process {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.how-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/equipamentos.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.how-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 43, 111, 0.92) 0%, rgba(0, 86, 204, 0.88) 100%);
}

.process .container {
  position: relative;
  z-index: 1;
}

.process h2 {
  font-size: 40px;
  margin-bottom: 24px;
  color: #FFFFFF;
}

.process .section-label {
  color: #FFFFFF;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 18px;
  margin-bottom: 48px;
}

.process .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

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

.process .step {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease, border-color 0.3s ease;
}

.process .step:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
}

.step-number {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}

.process .step-number {
  color: #7DB4FF;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Traço curto abaixo do numeral: ancora o número como marcador de
   sequência intencional, não texto gigante apagado. */
.process .step-number::after {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: rgba(125, 180, 255, 0.55);
}

.step h3 {
  font-size: 18px;
  color: var(--text-dark);
}

.process .step h3 {
  color: #FFFFFF;
}

.step p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.process .step p {
  color: rgba(255, 255, 255, 0.85);
}

/* CTA Section */
.cta-section {
  background: var(--primary);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.cta-section > .container > p {
  font-size: 18px;
  margin-bottom: 48px;
  opacity: 0.95;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 28px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.3s, transform 0.3s;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.contact-card:hover .contact-icon {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.08);
}

.contact-card h3 {
  font-size: 18px;
  margin: 0;
}

.contact-card p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}

.contact-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--white);
  display: inline-block;
  padding-bottom: 2px;
}

.contact-note {
  font-size: 13px;
  opacity: 0.8;
}

/* Footer */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 40px 0 20px;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 32px;
}

.footer-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.footer-nav a:hover {
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .header .container {
    flex-direction: row;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, #007DF5 0%, #0056CC 100%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 200;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.9;
  }

  .nav a:hover {
    color: #fff;
    opacity: 1;
  }

  .nav a.nav-cta {
    margin-top: 1rem;
    background: #fff;
    color: #007DF5;
    font-size: 1.1rem;
    opacity: 1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  }

  .nav a.nav-cta:hover {
    color: #007DF5;
    transform: none;
  }

  body.nav-open {
    overflow: hidden;
  }

  /* Hero mobile: foto logo apos o titulo (display:contents dissolve o
     .hero-content e usamos order pra sequencia) */
  .hero {
    padding: 32px 0 48px;
  }

  .hero .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .hero-content {
    display: contents;
  }

  .hero .badge { order: 1; }
  .hero h1 {
    order: 2;
    font-size: 36px;
    text-align: center;
  }
  .hero-image {
    order: 3;
    height: auto;
  }
  .hero p {
    order: 4;
    text-align: center;
  }
  .hero-cta {
    order: 5;
    flex-direction: column;
  }
  .hero-tags { order: 6; }

  /* Selos em pilula de uma linha so, pendurados na borda de cima da foto
     (nao mais empilhados em coluna) -- o formato empilhado tinha ~64px de
     altura e invadia bem fundo no rosto; uma linha so fica com ~34px, e
     a maior parte disso fica pra fora da foto (top negativo), sobrando so
     uma tira fina de ~20px encostando na borda de cima (cabelo/fundo). */
  .hero-float-badge {
    flex-direction: row;
    align-items: baseline;
    gap: 6px;
    padding: 7px 12px;
    max-width: none;
    white-space: nowrap;
  }

  .hero-float-badge strong {
    font-size: 13px;
  }

  .hero-float-badge span {
    font-size: 9px;
  }

  .hero-float-badge--top {
    top: -14px;
    left: 10px;
  }

  .hero-float-badge--bottom {
    bottom: -14px;
    right: 10px;
  }

  /* Tags viram chips arredondados centralizados */
  .hero-tags {
    justify-content: center;
    gap: 10px;
  }

  .hero-tags span {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 7px 16px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
  }

  .hero-tags span:not(:last-child)::after {
    content: none;
  }

  .instagram-performance {
    margin-top: -24px;
    padding: 0 0 40px;
  }

  .instagram-performance .container {
    padding: 20px;
    border-radius: 16px;
  }

  .performance-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 14px;
  }

  .performance-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .performance-item {
    padding: 12px 14px;
  }

  .performance-item .value {
    font-size: 19px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-card {
    flex: 0 0 85vw;
    height: 320px;
    min-width: unset;
  }

  .portfolio-title {
    font-size: 16px;
  }

  .portfolio-description {
    font-size: 12px;
  }

  .slider-controls {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 85vw;
  }

  .testimonial-controls {
    display: none;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-options {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .portfolio-card {
    flex: 0 0 calc(50% - 1rem);
    height: 360px;
  }
}

@media (max-width: 480px) {
  html {
    scroll-padding-top: 90px;
  }

  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* ===== Polish pass — acabamento ===== */

/* Quebra de linha equilibrada nos títulos de seção (Hero fora de escopo) */
.services h2,
.testimonials h2,
.process h2,
.cta-section h2,
.about-title {
  text-wrap: balance;
}

/* Foco de teclado visível — lacuna de a11y. Anel azul da marca por padrão,
   variante branca nas seções de fundo escuro (contraste). */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 3px;
}

.cta-section a:focus-visible,
.footer a:focus-visible,
.process a:focus-visible {
  outline-color: #ffffff;
}

/* Skip link -- fora da tela por padrao, some visivel no primeiro Tab
   para quem navega por teclado pular o header sem precisar ouvir/tabular
   por todo o menu antes do conteudo. */
.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  z-index: 1000;
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus-visible {
  top: 12px;
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

/* Micro-interações de hover respeitam reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .header {
    transition-duration: 0.01ms;
  }

  .service-icon,
  .contact-icon,
  .process .step {
    transition: none;
  }

  .service-card:hover .service-icon,
  .contact-card:hover .contact-icon,
  .process .step:hover {
    transform: none;
  }
}

/* ===== Animation pass — completa o sistema de reveal que o script.js já
   escreve (classes .reveal/.reveal-item/.in-view) e acrescenta a entrada
   do Hero + zoom do Portfólio. Sem isso o JS roda mas fica mudo. ===== */

/* Reveal-on-scroll: visível por padrão, a classe é aditiva (JS-safe) */
.reveal {
  opacity: 0;
  transform: translateY(16px);
}

.reveal.in-view {
  animation: revealUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Itens de grid (Serviços, Performance, Processo, Contato, Destaques do
   Sobre) ganham stagger real via --i, setado pelo script.js por item. */
.reveal-item.in-view {
  animation-delay: calc(var(--i, 0) * 60ms);
}

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

/* Hero — entrada coreografada no carregamento (não é scroll-reveal: está
   acima da dobra). Sequência: badge → título → foto → texto → CTA → tags. */
.hero .badge,
.hero h1,
.hero-image,
.hero p,
.hero-cta,
.hero-tags {
  animation: heroRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero .badge { animation-delay: 0.05s; }
.hero h1 { animation-delay: 0.15s; }
.hero-image { animation-delay: 0.25s; }
.hero p { animation-delay: 0.35s; }
.hero-cta { animation-delay: 0.45s; }
.hero-tags { animation-delay: 0.55s; }

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.in-view,
  .reveal-item.in-view {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero .badge,
  .hero h1,
  .hero-image,
  .hero p,
  .hero-cta,
  .hero-tags {
    opacity: 1;
    animation: none;
  }

  .portfolio-slide.active {
    animation: none;
  }

  .stars,
  .testimonial-card:hover .stars {
    transition: none;
    transform: none;
  }
}

/* ===== Botao flutuante do WhatsApp =====================================
   Atalho de contato persistente. z-index 90 fica abaixo do header (100) e
   do overlay do menu mobile (200) de proposito: o menu aberto deve cobri-lo.
   Escondido perto do topo (data-hidden via JS) porque o hero ja tem CTA. */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background: #0D7A3E;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(37, 211, 102, 0.5);
}

/* Recolhe (nao some do DOM) enquanto o hero esta visivel */
.whatsapp-float[data-hidden] {
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
}

@media (max-width: 768px) {
  /* No mobile vira so o circulo do icone -- a pill ocuparia meia tela */
  .whatsapp-float {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    padding: 0;
    width: 56px;
    height: 56px;
    justify-content: center;
  }

  .whatsapp-float-label {
    /* sr-only: continua no DOM para leitores de tela */
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

/* ===== Lightbox do portfolio ==========================================
   Acima de tudo (1100 > skip-link 1000 > nav-toggle 300). O gatilho de
   abertura e um <button> injetado pelo script.js dentro de cada card. */
.portfolio-card-trigger {
  position: absolute;
  inset: 0;
  z-index: 4;
  border: none;
  background: transparent;
  cursor: zoom-in;
  padding: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.portfolio-card-trigger:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -6px;
  border-radius: 12px;
}

.lightbox[hidden] {
  /* [hidden] do UA stylesheet e a especificidade abaixo empatam; sem isso,
     a regra de baixo (display:flex) vence por vir depois e o overlay fica
     de pe -- invisivel (opacity:0) mas cobrindo a tela inteira e comendo
     todo clique/cursor do site, mesmo com o atributo hidden presente. */
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overscroll-behavior: contain;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lightbox[data-open] {
  opacity: 1;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 12, 35, 0.92);
  backdrop-filter: blur(6px);
  cursor: zoom-out;
}

.lightbox-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(1100px, 100%);
  max-height: calc(100vh - 150px);
}

.lightbox-img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 150px);
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.97);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox[data-open] .lightbox-img {
  transform: scale(1);
}

.lightbox-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.25s ease, transform 0.25s ease;
}

.lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.08);
}

.lightbox-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.lightbox-prev { left: -66px; }
.lightbox-next { right: -66px; }

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  top: calc(20px + env(safe-area-inset-top, 0px));
  font-size: 26px;
}

.lightbox-bar {
  position: relative;
  margin-top: 20px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lightbox-caption {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
}

.lightbox-counter {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  opacity: 0.7;
}

/* Uma so foto no card: esconde as setas e o contador */
.lightbox[data-single] .lightbox-prev,
.lightbox[data-single] .lightbox-next,
.lightbox[data-single] .lightbox-counter {
  display: none;
}

@media (max-width: 900px) {
  /* Sem espaco lateral para as setas fora da foto -- sobrepoe nas bordas */
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }

  .lightbox-btn {
    background: rgba(0, 20, 60, 0.55);
  }
}

body.lightbox-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float,
  .lightbox,
  .lightbox-img,
  .lightbox-btn {
    transition: none;
  }

  .whatsapp-float:hover,
  .lightbox-btn:hover {
    transform: none;
  }

  .whatsapp-float[data-hidden] {
    transform: none;
  }

  .lightbox-img,
  .lightbox[data-open] .lightbox-img {
    transform: none;
  }
}
