/* Estilos globales para ImageConvertPro */

/* Espaciado para la barra de navegación fija */
body {
  padding-top: 75px;
  position: relative;
}

/* Barra de progreso */
.progreso {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.1);
}

.barra {
  height: 5px;
  background-color: #3498db;
  width: 0%;
  display: block;
}

/* Estilos para la zona de arrastrar y soltar */
.drop-zone {
  min-height: 150px;
  border: 2px dashed #ccc;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease;
}

.drop-zone.highlight {
  border-color: #3498db;
  background-color: rgba(52, 152, 219, 0.1);
}

/* Botones y elementos interactivos */
.btn-primary {
  background-color: #3498db;
  border-color: #3498db;
}

.btn-primary:hover {
  background-color: #2980b9;
  border-color: #2980b9;
}

/* Estilos para tarjetas de beneficios */
.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #3498db;
}

/* Estilos para el banner de cookies */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f8f9fa;
  border-top: 1px solid #ddd;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  padding: 15px;
  z-index: 1000;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

.cookie-buttons {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .cookie-buttons {
    margin-top: 0;
    margin-left: 20px;
  }
}
