/* ================= APP DISPONÍVEL ================= */

.app-disponivel {
  background: #ffffff;
  padding: 120px 20px 80px;
  overflow: hidden;
}
.app-disponivel {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.app-disponivel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(1,57,71,0.06), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(0,0,0,0.04), transparent 45%);
  animation: bgMove 12s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes bgMove {
  from { transform: translateY(0); }
  to   { transform: translateY(-30px); }
}

/* ================= CONTAINER ================= */

.app-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

/* ================= TEXTO ================= */

.app-texto {
  max-width: 560px;
  flex-shrink: 0;
}

.app-texto h2 {
  font-size: 40px;
  line-height: 1.25;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
  color: #111;
}

.app-texto p {
  font-size: 17px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 34px;
}

/* ================= CTA ================= */
.btn-cta.google img {
  width: 36px;
  height: 36px;
}
.btn-cta.apple img {
  width: 28px;
  height: 28px;
}
.btn-cta.google {
  padding: 18px 26px;
}

.btn-cta.google img {
  width: 38px;
  height: 38px;
}

.btn-cta.google span strong {
  font-size: 16px;
}

.app-cta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.btn-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  white-space: nowrap;
}

.btn-cta img {
  width: 28px;
  height: 28px;
}

.btn-cta span small {
  display: block;
  font-size: 12px;
  opacity: 0.85;
}

.btn-cta span strong {
  font-size: 15px;
}

.btn-cta.google {
  background: #013947;
  color: #fff;
}

.btn-cta.apple {
  background: #000;
  color: #fff;
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}

/* ================= MOCKUP ================= */

.app-imagem.premium {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-imagem.premium img {
  animation:
    mockupEnter 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    floatMockup 6s ease-in-out infinite;
  animation-delay: 0.3s, 1.4s;
}

@keyframes mockupEnter {
  from {
    opacity: 0;
    transform: translateY(120px) scale(0.9) rotate(-8deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(-6deg);
  }
}

/* ================= ANIMAÇÃO ================= */

@keyframes floatMockup {
  0% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-10px) rotate(-6deg); }
  100% { transform: translateY(0) rotate(-6deg); }
}

/* ================= TELAS GRANDES ================= */

@media (min-width: 1400px) {
  .app-container {
    max-width: 1400px;
  }

  .app-imagem.premium img {
    width: 820px;
  }
}

/* ================= TABLET ================= */

@media (max-width: 1024px) {
  .app-container {
    gap: 48px;
  }

  .app-imagem.premium img {
    width: 560px;
  }
}

/* ================= MOBILE ================= */
/* 🔥 RESPONSABILIDADE: ocupar a tela, sem quebrar layout */

@media (max-width: 768px) {

  .app-disponivel {
    padding: 80px 0 50px;
  }

  .app-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 48px;
  }

  .app-texto {
    max-width: 92%;
  }

  .app-texto h2 {
    font-size: 30px;
  }

  .app-texto p {
    font-size: 16px;
    margin-bottom: 26px;
  }

  .app-cta {
    justify-content: center;
    gap: 14px;
  }

  .btn-cta {
    min-width: 240px;
    justify-content: center;
  }

  /* 🔥 MOCKUP MOBILE CORRETO */
  .app-imagem.premium {
    width: 100vw;
    display: flex;
    justify-content: center;
  }

  .app-imagem.premium img {
    width: 100vw;              /* ocupa a largura real */
    max-width: 520px;          /* não estoura */
    transform: rotate(-4deg);
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.35));
  }
}

/* ================= MOBILE PEQUENO ================= */

@media (max-width: 480px) {

  .app-texto h2 {
    font-size: 26px;
  }

  .btn-cta {
    width: 100%;
  }

  .app-imagem.premium img {
    width: 96vw;
    max-width: 440px;
  }
}
.publico-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.publico-icon {
  background: #111;
  color: #FFD700;
  font-size: 18px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.publico-icon {
  background: linear-gradient(135deg, #000, #222);
  color: #FFD700;
}

.publico-text strong {
  display: block;
  font-size: 16px;
  color: #111;
  margin-bottom: 4px;
}

.publico-text span {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s ease-out forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-cta.google {
  position: relative;
}

.btn-cta.google::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  box-shadow: 0 0 0 0 rgba(1,57,71,0.4);
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(1,57,71,0.4); }
  70%  { box-shadow: 0 0 0 18px rgba(1,57,71,0); }
  100% { box-shadow: 0 0 0 0 rgba(1,57,71,0); }
}
@media (max-width: 768px) {
  .app-texto { order: 1; }
  .app-imagem.premium { order: 2; }
  .app-cta { order: 3; }
}
