:root{
  --card-bg: rgba(255,255,255,0.92);
  --text: #112014;
  --muted: #2d3a30;
  --shadow: 0 30px 70px rgba(0,0,0,.28);
  --radius: 22px;
  --border: rgba(255,255,255,.55);
  --accent: #1b7f3a;
}

*{ box-sizing:border-box }

html,body{ height:100% }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  overflow:hidden;
}

/* ===== FUNDO ===== */

.bg{
  position:fixed;
  inset:0;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  transform: scale(1.03);
}

.overlay{
  position:fixed;
  inset:0;
  background: radial-gradient(
    1200px 700px at 50% 35%,
    rgba(255,255,255,0.08),
    rgba(0,0,0,0.35)
  );
}

/* ===== CENTRALIZAÇÃO ===== */

.wrap{
  position:relative;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}

/* ===== CARD PRINCIPAL ===== */

.card{
  width:min(980px, 100%);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;

  max-height: 92vh;
  display:flex;
  flex-direction:column;
}

/* ===== HEADER ===== */

.card__header{
  padding: 18px 22px 10px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand__logo{
  width:90px;
  height:90px;
  object-fit:contain;
  border-radius:14px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.08);
  padding:8px;
}

.brand__welcome{
  font-size:13px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: rgba(17,32,20,0.7);
}

.brand__title{
  margin:4px 0 0;
  font-size:26px;
  line-height:1.1;
}

.introVideo{
  width:100%;
  height: clamp(260px, 48vh, 560px);
  background:#000;
  display:block;
  object-fit: contain;
}

/* quando o vídeo estiver visível */
.introVideo.is-visible{ display:block; }
.introVideo.is-hidden{ display:none; }

/* ===== SLIDER ===== */

.slider{
  padding: 18px 22px 0;
  flex:1;
  min-height:0;
  display:flex;
  flex-direction:column;
}

.slider__stage{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  background: rgba(0,0,0,0.06);

  flex:1;
  min-height:0;
  display:flex;
  flex-direction:column;
}

/* ===== SLIDES ===== */

.slide{
  margin:0;
  display:flex;
  flex-direction:column;
  opacity:0;
  transition: opacity 700ms ease;
}

.slide.is-visible{ opacity:1; }
.slide.is-hidden{ opacity:0; pointer-events:none; }

.slide__img{
  width:100%;
  height: clamp(260px, 48vh, 560px);
  object-fit:contain;
  background:#000;
  display:block;
}

.slide__caption{
  padding:16px 18px 18px;
  font-size:15px;
  line-height:1.6;
  color:#111;
  background: rgba(255,255,255,0.96);
  border-top:1px solid rgba(0,0,0,0.08);

  height: clamp(110px, 18vh, 220px);
  overflow-y:auto;
  white-space: pre-line;
}

/* ===== CTA ===== */

.cta{
  padding:14px 22px 6px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.cta__headline{
  font-weight:700;
  font-size:15px;
  color:var(--muted);
  margin-bottom:8px;
}

.cta__arrow{
  display:inline-block;
  transform:translateY(-1px);
  color:var(--accent);
}

.cta__whats{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-weight:800;
  font-size:18px;
  color:#0b2b14;
  background: rgba(27,127,58,0.10);
  border:1px solid rgba(27,127,58,0.18);
  padding:10px 12px;
  border-radius:14px;
  transition: transform .15s ease, background .15s ease;
}

.cta__whats:hover{
  transform:translateY(-1px);
  background: rgba(27,127,58,0.14);
}

.cta__right{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* ===== REDES SOCIAIS ===== */

.social{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color: rgba(17,32,20,0.92);
  font-weight:700;
  font-size:14px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.75);
  transition: transform .15s ease, background .15s ease;
}

.social:hover{
  transform:translateY(-1px);
  background: rgba(255,255,255,0.9);
}

.icon svg{
  width:18px;
  height:18px;
  display:block;
}

/* ===== FOOTER ===== */

.footer{
  padding:16px 22px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  border-top:1px solid rgba(0,0,0,0.06);
  color: rgba(17,32,20,0.78);
  font-size:14px;
  min-height:55px;
  margin-top:auto;
}

/* ===== RESPONSIVO ===== */

@media (max-width:720px){

  body{ overflow:auto; }

  .slider__stage{ min-height:360px; }

  .slide__img{ height:340px; }

  .brand__title{ font-size:22px; }

  .cta__whats{ font-size:16px; }

}