/* === CONFIGURACIÓN GLOBAL === */
body {
  margin: 0;
  padding-top: 0;
  background-color: #ececec;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* === HEADER === */
header {
  background-color: #d9d9d9;
  padding: 10px 10px;
}

.logo-header {
  max-height: 70px;

}

/* === CONTENEDOR PRINCIPAL === */
.contenedor-principal {
  max-width: 1100px;
  margin: 20px auto;
  padding: 0 15px;
  text-align: center;
  flex: 1;
}

.btn-volver {
  text-align: left;
  margin: 10px 0 20px;
}

/* === HEADER AZUL === */
.header-azul {
  background-color: #0049a8;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  font-size: 1.125rem;
  border-radius: 0.5rem;
  font-weight: 600;
  animation: aparecer 0.6s ease forwards;
}

/* === PASOS === */
.pasos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .pasos {
    flex-direction: row;
    justify-content: space-between;
  }
}

.paso {
  flex: 1;
  border-radius: 16px;
  padding: 20px;
  color: #fff;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(20px);
  animation: aparecer 0.6s ease forwards;
}

.step-1 {
  background-color: #0071ff;
}

.step-2 {
  background-color: #5ec197;
}

.step-3 {
  background-color: #8274cd;
}

.paso-contenido {
  display: flex;
  align-items: center;
  gap: 12px;
}

.paso-numero {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.paso-contenido strong {
  font-size: 1.15rem;
}

/* === ICONOS === */
.fila-iconos {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 40px;
}

.fila-iconos.seis {
  margin-top: -15px;
}

.icon-container {
  width: 110px;
  text-align: center;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInIcons 0.7s ease-out forwards;
}

.icon-svg {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: grayscale(100%) contrast(150%);
  transition: filter 0.3s ease;
}

.icon-circle:hover .icon-svg {
  filter: none;
}

.icon-container:focus {
  outline: none;
}

.icon-circle {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  background: #fff;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1),
    inset 0 -2px 4px rgba(255, 255, 255, 0.4), 0 6px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  overflow: hidden;
}

.icon-circle:hover {
  transform: translateY(-4px);
}

.icon-img {
  max-width: 60%;
  height: auto;
  object-fit: contain;
  display: block;
}

.icon-text {
  font-size: 0.8rem;
  text-align: center;
  margin-top: 10px;
  line-height: 1.3;
}

/* === CORREO CONTACTO === */
.correo-contacto {
  font-size: 1.125rem;
  color: #0049a8;
  padding-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: aparecer 0.6s ease forwards;
}

.correo-contacto a {
  color: #0049a8;
  font-weight: bold;
  text-decoration: none;
}

/* === PIE DE PÁGINA === */
footer {
  background-color: #035aa6;
  color: white;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.2);
}

/* === SEPARADOR === */
.separador {
  height: 50px;
}

/* === ANIMACIONES === */
@keyframes aparecer {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInIcons {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .fila-iconos.seis {
    margin-left: 0;
  }

  .logo-header {
    margin: 0 auto;
  }

  .pasos {
    flex-direction: column;
  }
}

.animado {
  opacity: 0;
  transform: translateY(20px);
  animation: aparecer 0.6s ease forwards;
}
