body {
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #07101d, #1b2232);
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  text-align: center;
  padding: 2rem;
  min-height: 100vh;
}

.container {
  background-color: #0f1c2d;
  border-radius: 12px;
  padding: 2rem;
  max-width: 500px;
  margin: auto;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.highlight {
  color: #ffc107;
}

input[type="text"] {
  width: 100%;
  padding: 0.75rem;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  margin: 1rem 0;
  background: #fff;
  color: #000;
}

input[type="text"]:focus {
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.5);
  outline: none;
}

.btn-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.btn-analizar {
  background-color: #ffc107;
  color: #000;
}

.btn-whatsapp {
  background-color: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-whatsapp i {
  margin-right: 0.5rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #ccc;
  margin-top: 1.5rem;
}

.robot {
  width: 120px;
  margin: 1rem auto;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal {
  background-color: #1b2838;
  padding: 2rem;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  text-align: center;
}

.progress-bar {
  width: 100%;
  height: 1rem;
  background-color: #ccc;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 1rem;
}

.progress-inner {
  height: 100%;
  width: 0%;
  background-color: #ffc107;
  transition: width 0.2s ease-in-out;
}

.close-btn {
  margin-top: 1.5rem;
  background-color: #ffc107;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0,0,0,0.9);
  color: white;
  text-align: center;
  padding: 1rem;
  z-index: 10000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.cookie-btn {
  margin-left: 1rem;
  padding: 0.5rem 1rem;
  background-color: #ffc107;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.4rem;
  }
  .btn {
    font-size: 0.95rem;
  }
  .container {
    padding: 1.5rem 1rem;
  }
}
