* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: linear-gradient(135deg, #1f1f1f, #2b2b2b);
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  padding: 40px 20px;
  max-width: 500px;
  width: 100%;
}

.logo img {
  width: 120px;
  margin-bottom: 20px;
}

.company-name {
  font-size: 28px;
  margin-bottom: 20px;
  color: #ef5911;
}

/* Layout texto + ícone */
.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

/* Texto */
.text {
  flex: 1;
  text-align: left;
}

.message {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.5;
}

/* Ícone */
.icon {
  flex-shrink: 0;
}

.icon svg {
  width: 80px;
  height: auto;
}

/* Loader */
.loader {
  width: 40px;
  height: 40px;
  border: 4px solid #ffffff20;
  border-top: 4px solid #ef5911;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 📱 Mobile */
@media (max-width: 600px) {

  .content {
    flex-direction: column;
    text-align: center;
  }

  .text {
    text-align: center;
  }

  .icon svg {
    width: 70px;
  }

  .company-name {
    font-size: 22px;
  }

  .message {
    font-size: 14px;
  }
}