/* Estilos para o modal de instruções de instalação do iOS */
#ios-install-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

#ios-install-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-in-out;
}

#ios-install-modal .modal-content {
  background: linear-gradient(135deg, #FF8C00 0%, #228B22 100%);
  color: #fff;
  padding: 25px;
  border-radius: 15px;
  max-width: 90%;
  width: 400px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  animation: slideUp 0.3s ease-in-out;
}

#ios-install-modal .modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.3s;
}

#ios-install-modal .modal-close:hover {
  opacity: 1;
}

#ios-install-modal h2 {
  margin: 0 0 15px 0;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#ios-install-modal p {
  margin: 0 0 15px 0;
  font-size: 15px;
  text-align: center;
}

#ios-install-modal ol {
  text-align: left;
  padding-left: 20px;
  margin: 0 0 20px 0;
}

#ios-install-modal ol li {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
}

#ios-install-modal .share-icon {
  display: inline-block;
  font-size: 18px;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  margin: 0 3px;
}

#ios-install-modal .modal-footer {
  text-align: center;
  margin-top: 20px;
}

#ios-install-modal #got-it-button {
  background-color: #FFD700;
  color: #000;
  border: none;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

#ios-install-modal #got-it-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

