/* ===== reset básico ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #2B2B2B;
}

/* ===== moldura que escala o frame pra caber em qualquer tela ===== */
.stage-1{
  width: 100%;
  overflow: hidden;
}

.frame-1{
  width: 1920px;
  height: 1080px;
  position: relative;
  transform-origin: top left;
  background: url('forro\ do\ frame\ 1.jpeg') lightgray 50% / cover no-repeat;
}

.frame-1::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.78) 100%),
    radial-gradient(ellipse 900px 500px at 50% 32%, rgba(251,213,62,0.10), transparent 70%);
}

@keyframes heroFadeUp{
  from{ opacity: 0; transform: translateY(26px); }
  to{ opacity: 1; transform: translateY(0); }
}
.logo-box{ animation: heroFadeUp .9s ease both; }
.hero-headline{ animation: heroFadeUp .9s ease .12s both; }
.hero-credibilidade{ animation: heroFadeUp .9s ease .22s both; }
.hero-frase{ animation: heroFadeUp .9s ease .32s both; }

@keyframes btnFadeUp{
  from{ opacity: 0; transform: translateX(-50%) translateY(26px); }
  to{ opacity: 1; transform: translateX(-50%) translateY(0); }
}
.btn-whatsapp{ animation: btnFadeUp .9s ease .42s both; }

.header-bar{
  width: 100%;
  height: 89px;
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  z-index: 100;
}

.logo-box{
  width: 612px;
  height: 340px;
  aspect-ratio: 9/5;
  position: absolute;
  left: 639px;
  top: 256px;
  z-index: 2;
}
.logo-box img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero-headline{
  width: 1076px;
  position: absolute;
  right: 430px;
  bottom: 430px;
  color: #FFF;
  font-family: 'Alfa Slab One', serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  z-index: 2;
}

.hero-credibilidade{
  width: 1076px;
  position: absolute;
  right: 384px;
  bottom: 380px;
  display: flex;
  justify-content: center;
  gap: 32px;
  z-index: 2;
}
.hero-credibilidade span{
  color: #FFF;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  opacity: 0.9;
}
.hero-credibilidade span::after{
  content: "•";
  margin-left: 32px;
  opacity: 0.6;
}
.hero-credibilidade span:last-child::after{
  content: "";
  margin: 0;
}

.hero-frase{
  width: 1076px;
  position: absolute;
  right: 384px;
  bottom: 320px;
  color: #FFF;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  opacity: 0.85;
  z-index: 2;
}

.btn-whatsapp{
  position: absolute;
  left: 50%;
  bottom: 250px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #2be374, #1fae53);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  z-index: 2;
  box-shadow: 0 14px 30px -12px rgba(37,211,102,0.55);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-whatsapp:hover{
  background: linear-gradient(135deg, #33f280, #1ebe5b);
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 18px 36px -10px rgba(37,211,102,0.65);
}
.btn-whatsapp svg{ width: 24px; height: 24px; }

.frame-2{
  width: 100%;
  min-height: 1080px;
  background:
    radial-gradient(ellipse 700px 500px at 85% 8%, rgba(251,213,62,0.07), transparent 60%),
    #0a0a0a;
  padding: 90px 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.frame-2::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(1440px, 82%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251,213,62,0.4), transparent);
}

.titulo-wrap{
  text-align: center;
  margin-bottom: 56px;
}

h2{
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 40px;
  color: #fff;
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
}
h2::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #FBD53E, #fff3c4);
  border-radius: 2px;
}

.subtitulo-2{
  color: #C9C9C9;
  font-size: 17px;
  max-width: 760px;
  margin: 22px auto 0;
  line-height: 1.6;
}

.card{
  width: 100%;
  max-width: 1440px;
  background: #111111;
  border: 1px solid rgba(251, 213, 62, 0.25);
  box-shadow: 0 0 0 1px rgba(251,213,62,0.05), 0 30px 60px -30px rgba(251,213,62,0.15);
  border-radius: 16px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.card-texto p.desc{
  color: #D8D8D8;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.valores{
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.valor{
  display: flex;
  align-items: center;
  gap: 10px;
}
.valor-icone{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(251, 213, 62, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.valor-icone svg{ width: 17px; height: 17px; }
.valor span{
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.btn-saber-mais{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FBD53E, #eec32e);
  color: #1A1A1A;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 14px 28px -14px rgba(251,213,62,0.5);
}
.btn-saber-mais:hover{
  background: linear-gradient(135deg, #ffe066, #FBD53E);
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -12px rgba(251,213,62,0.6);
}

.card-foto{
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.card-foto img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-foto::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 0 2px rgba(251,213,62,0.4);
}

.frame-3{
  width: 100%;
  min-height: 1080px;
  background:
    radial-gradient(ellipse 700px 500px at 12% 92%, rgba(251,213,62,0.07), transparent 60%),
    #0a0a0a;
  padding: 90px 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.frame-3::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(1440px, 82%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251,213,62,0.4), transparent);
}

.subtitulo-3{
  color: #C9C9C9;
  font-size: 17px;
  max-width: 720px;
  margin: 22px auto 0;
  line-height: 1.6;
}

.conteudo{
  width: 100%;
  max-width: 1440px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
}

.fotos{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.foto{
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}
.foto:first-child{
  grid-row: span 2;
  aspect-ratio: auto;
}
.foto img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.foto::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 0 2px rgba(251,213,62,0.35);
}
.foto::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.35) 100%);
  border-radius: 12px;
}

.servicos-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-content: start;
}

.servico-card{
  background: linear-gradient(160deg, #131313, #0d0d0d);
  border: 1px solid rgba(251, 213, 62, 0.2);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 0 0 1px rgba(251,213,62,0.04);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.servico-card:hover{
  transform: translateY(-6px);
  border-color: rgba(251,213,62,0.45);
  box-shadow: 0 20px 34px -18px rgba(251,213,62,0.25);
}

.servico-icone{
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(251, 213, 62, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.servico-icone svg{ width: 20px; height: 20px; }

.servico-card h3{
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.servico-card p{
  color: #B8B8B8;
  font-size: 13.5px;
  line-height: 1.5;
}

.servicos-cta{
  grid-column: span 2;
  color: #D8D8D8;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  padding-top: 8px;
}

.logo-topo{
  width: 220px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 34px rgba(251,213,62,0.55)) drop-shadow(0 0 70px rgba(251,213,62,0.25));
}

/* ===== FRAME 4 ===== */
.frame-4{
  width: 100%;
  min-height: 1080px;
  background: #0a0a0a;
  padding: 90px 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.frame-4::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(251,213,62,0.08), transparent 60%);
}

.logo-glow{
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 620px;
  height: 620px;
  z-index: 1;
  background: radial-gradient(circle, rgba(251,213,62,0.35) 0%, rgba(251,213,62,0.14) 38%, transparent 70%);
  filter: blur(4px);
  pointer-events: none;
  animation: glowPulse 5s ease-in-out infinite;
}

@keyframes glowPulse{
  0%,100%{ opacity: 0.85; transform: translateX(-50%) scale(1); }
  50%{ opacity: 1; transform: translateX(-50%) scale(1.06); }
}

.subtitulo-4{
  color: #C9C9C9;
  font-size: 17px;
  max-width: 620px;
  text-align: center;
  margin: 22px auto 44px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.dono-card{
  display: flex;
  align-items: center;
  gap: 20px;
  background: #111111;
  border: 1px solid rgba(251, 213, 62, 0.2);
  border-radius: 100px;
  padding: 14px 32px 14px 14px;
  margin-bottom: 44px;
  position: relative;
  z-index: 2;
}
.dono-foto{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #FBD53E;
}
.dono-foto img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dono-texto p{
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.dono-texto span{
  color: #B8B8B8;
  font-size: 13px;
}

.btn-whatsapp-4{
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  background: linear-gradient(135deg, #2be374, #1fae53);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  margin-bottom: 48px;
  box-shadow: 0 14px 30px -12px rgba(37,211,102,0.55);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-whatsapp-4:hover{
  background: linear-gradient(135deg, #33f280, #1ebe5b);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -10px rgba(37,211,102,0.65);
}
.btn-whatsapp-4 svg{ width: 24px; height: 24px; }

.contato-info{
  display: flex;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.contato-item{
  display: flex;
  align-items: center;
  gap: 8px;
  color: #C9C9C9;
  font-size: 14px;
}
.contato-item svg{ width: 16px; height: 16px; stroke: #FBD53E; }

/* ===== animações de rolagem ===== */
.reveal{
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s cubic-bezier(.22,.9,.32,1), transform .8s cubic-bezier(.22,.9,.32,1);
}
.reveal.in{
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1{ transition-delay: .08s; }
.reveal-delay-2{ transition-delay: .16s; }
.reveal-delay-3{ transition-delay: .24s; }
.reveal-delay-4{ transition-delay: .32s; }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
  .logo-glow{ animation: none; }
  .logo-box, .hero-headline, .hero-credibilidade, .hero-frase{
    animation: none; opacity: 1; transform: none;
  }
  .btn-whatsapp{ animation: none; opacity: 1; }
}

/* ======================================================
   RESPONSIVO — CELULAR
====================================================== */

/* ---------- FRAME 1 ----------
   Abaixo de 700px, desligamos a escala via JS (o script
   já faz isso, veja a troca no <script>) e o frame vira
   um layout empilhado normal, sem position:absolute. */
@media (max-width: 700px){
  .stage-1{ height: auto !important; }

  .frame-1{
    width: 100%;
    height: auto;
    min-height: 100vh;
    padding: 110px 24px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .header-bar{ height: 64px; }

  .logo-box{
    position: static;
    width: 160px;
    height: auto;
    aspect-ratio: 9/5;
    margin-bottom: 24px;
  }

  .hero-headline{
    position: static;
    width: 100%;
    font-size: 26px;
    margin-bottom: 16px;
  }

  .hero-credibilidade{
    position: static;
    width: 100%;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
  }
  .hero-credibilidade span::after{ display: none; }

  .hero-frase{
    position: static;
    width: 100%;
    font-size: 14px;
    margin-bottom: 28px;
  }

  .btn-whatsapp{
    position: static;
    transform: none;
    width: 100%;
    justify-content: center;
    animation: none;
  }
}

/* ---------- FRAME 2, 3 e 4 (título comum) ---------- */
@media (max-width: 900px){
  .frame-2, .frame-3, .frame-4{
    padding: 60px 24px;
  }
  h2{ font-size: 28px; }
  .subtitulo-2, .subtitulo-3, .subtitulo-4{
    font-size: 15px;
  }
}

/* ---------- FRAME 2 ---------- */
@media (max-width: 900px){
  .card{
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 28px;
  }
  .card-foto{ order: -1; } /* foto vem antes do texto no celular */
}
@media (max-width: 600px){
  .valores{
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .btn-saber-mais{
    width: 100%;
    justify-content: center;
  }
}

/* ---------- FRAME 3 ---------- */
@media (max-width: 900px){
  .conteudo{
    grid-template-columns: 1fr;
  }
  .fotos{
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .foto:first-child{
    grid-column: span 2;
    grid-row: auto;
    aspect-ratio: 16/9;
  }
}
@media (max-width: 600px){
  .servicos-grid{
    grid-template-columns: 1fr;
  }
  .servicos-cta{
    grid-column: span 1;
  }
}

/* ---------- FRAME 4 ---------- */
@media (max-width: 600px){
  .dono-card{
    flex-direction: column;
    text-align: center;
    border-radius: 20px;
    padding: 24px;
  }
  .btn-whatsapp-4{
    width: 100%;
    justify-content: center;
  }
  .contato-info{
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}