/* ==========================================
   Estilos da Página de Aplicativo
   ========================================== */

/* Hero da página */
.app-hero {
  padding: 80px 0 50px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.app-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.app-hero__title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.2;
}

.app-hero__title span {
  color: #e00000;
}

.app-hero__subtitle {
  font-size: 1.25rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Container de Conteúdo */
.app-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Detalhes do Aplicativo (Esquerda) */
.app-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.app-feature-tag {
  align-self: flex-start;
  background-color: rgba(224, 0, 0, 0.1);
  color: #e00000;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.app-desc {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

.app-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.app-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: #333;
}

.app-features-list svg {
  width: 24px;
  height: 24px;
  fill: #e00000;
  flex-shrink: 0;
}

/* Botões de Ação */
.app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}

/* Botão Play Store */
.btn-playstore {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background-color: #000000;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-playstore:hover {
  background-color: #222222;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  color: #ffffff;
}

.btn-playstore svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

.btn-playstore__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.btn-playstore__sub {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.btn-playstore__main {
  font-size: 1.15rem;
  font-weight: 700;
}

/* Botão Instalação Direta */
.btn-direct {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #ffffff;
  color: #333333;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s, border-color 0.2s;
  border: 2px solid #e0e0e0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn-direct:hover {
  background-color: #f8f9fa;
  border-color: #c0c0c0;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  color: #e00000;
}

.btn-direct svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Informações Adicionais/Requisitos */
.app-meta-info {
  font-size: 0.85rem;
  color: #888;
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

/* Mockup Visual (Direita) */
.app-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 360px;
  background: #ffffff;
  border-radius: 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.app-mockup-screen {
  width: 100%;
  display: block;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 992px) {
  .app-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .app-feature-tag {
    align-self: center;
  }

  .app-features-list {
    align-items: center;
  }

  .app-actions {
    justify-content: center;
  }

  .app-meta-info {
    justify-content: center;
  }

  .app-hero__title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .app-hero {
    padding: 60px 0 40px;
  }

  .app-hero__title {
    font-size: 1.8rem;
  }

  .app-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-playstore, .btn-direct {
    justify-content: center;
  }
}
