body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, #252525, #474747); /* de azul oscuro a azul claro */
  margin: 0;
  padding: 0;
}
html {
  font-family: Arial, sans-serif;
  background:#474747
}
header {
  background: none; /* o un color si querés */
  text-align: center;
  padding: 20px 0;
}

.logo-header img {
  max-width: 600px;  /* tamaño máximo de la imagen */
  width: 50%;        /* tamaño relativo al contenedor, opcional */
  height: auto;      /* mantiene proporción */
}
header nav a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}
main {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
  padding-bottom: 60px; /* espacio suficiente para que el contenido no quede debajo del footer */
  
}

.categorias {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
}
.categoria {
  background: #db3434;
  color: white;
  padding: 20px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: 0.3s;
}
.categoria:hover {
  background: #db3434;
}
.cards {
  /*display: grid;*/
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 15px;
  text-align: center;
}
.card img {
  max-width: 100%;
  border-radius: 8px;
}
.card h3 {
  margin: 10px 0 5px;
}
.card a {
  display: inline-block;
  margin-top: 10px;
  color: #db3434;
  text-decoration: none;
  font-weight: bold;
}
.guia {
  max-width: 800px;
  margin: auto;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.guia .intro {
  font-size: 1.1em;
  background: #f9f9f9;
  padding: 15px;
  border-left: 5px solid #db3434;
  border-radius: 5px;
}
.guia img.imagen-guia {
  max-width: 100%;
  border-radius: 8px;
  margin: 20px 0;
}
.guia table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.guia table, .guia th, .guia td {
  border: 1px solid #ddd;
}
.guia th, .guia td {
  padding: 10px;
  text-align: center;
}
.guia th {
  background: #db3434;
  color: white;
}
.volver {
  display: block;
  margin-top: 20px;
  text-align: center;
  text-decoration: none;
  color: #db3434;
  font-weight: bold;
}
.volver:hover {
  text-decoration: underline;
}
.card-horizontal {
  display: flex;
  gap: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 15px;
  align-items: center;
  margin-bottom: 20px;
}

.card-horizontal img {
  max-width: 200px;   /* tamaño de la imagen */
  border-radius: 8px;
  flex-shrink: 0;     /* evitar que la imagen se achique */
}

.contenido-card {
  flex: 1;            /* texto ocupa el resto del espacio */
}

.contenido-card h3 {
  margin-top: 0;
}

.contenido-card a {
  display: inline-block;
  margin-top: 10px;
  color: #db3434;
  text-decoration: none;
  font-weight: bold;
}

.contenido-card a:hover {
  text-decoration: underline;
}

/* Responsive: apilar en pantallas pequeñas */
@media (max-width: 768px) {
  .card-horizontal {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .card-horizontal img {
    max-width: 100%;
  }
}
.botonera {
  display: flex;
  gap: 10px; /* espacio entre botones */
  justify-content: center;
  margin: 20px 0;
}

.botonera .btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: #db3434;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}

.botonera .btn:hover {
  background-color: #db3434;
}
footer {
  background-color: #252525; /* color de fondo */
  color: white;              /* color del texto */
  text-align: center;         /* centrar el texto */
  padding: 20px;              /* espacio interno */
  font-size: 16px;            /* tamaño de letra */
  font-family: Arial, sans-serif; /* fuente */
  margin-top: 40px;           /* separa del contenido superior */
  border-top: 3px solid #db3434; /* línea superior opcional */
}

.promo-card {
  display: flex;
  justify-content: center; /* centra la imagen */
  margin: 30px 0;          /* espacio arriba y abajo */
}

.promo-card img {
  width: 500px;            /* ancho del recuadro */
  height: auto;            /* mantiene proporciones */
  border: 3px solid #db3434; /* borde alrededor */
  border-radius: 12px;     /* esquinas redondeadas */
  box-shadow: 0 4px 12px rgba(0,0,0,0.3); /* sombra */
  transition: transform 0.3s, box-shadow 0.3s;
}

.promo-card img:hover {
  transform: scale(1.05);   /* efecto zoom */
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}
.pulse-logo {
  width: 200px;  /* ajusta el tamaño que quieras */
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05); /* agranda un poquito */
    opacity: 0.85;         /* baja leve la opacidad */
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* miniaturas */
.thumbnail {
  width: 500px;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.2s;
}
.thumbnail:hover {
  transform: scale(1.05);
}

/* fondo modal */
.modal {
  display: none; 
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; 
  background-color: rgba(0,0,0,0.8);
}

/* imagen agrandada */
.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

/* botón cerrar */
.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
.close:hover {
  color: #ccc;
}
.paso {
  font-size: 1.1em;
  background: #f9f9f9;
  padding: 15px;
  border-left: 5px solid #ff8800;
  border-radius: 5px;
}
.paso1 {
  font-size: 1.1em;
  background: #f9f9f9;
  padding: 15px;
  border-left: 5px solid #fff56c;
  border-radius: 5px;
}
.paso2 {
  font-size: 1.1em;
  background: #f9f9f9;
  padding: 15px;
  border-left: 5px solid #6fff6a;
  border-radius: 5px;
}
.paso3 {
  font-size: 1.1em;
  background: #f9f9f9;
  padding: 15px;
  border-left: 5px solid #00ffff;
  border-radius: 5px;
}
.paso4 {
  font-size: 1.1em;
  background: #f9f9f9;
  padding: 15px;
  border-left: 5px solid #1100ff;
  border-radius: 5px;
}
.paso5{
  font-size: 1.1em;
  background: #f9f9f9;
  padding: 15px;
  border-left: 5px solid #9900ff;
  border-radius: 5px;
}
.paso6 {
  font-size: 1.1em;
  background: #f9f9f9;
  padding: 15px;
  border-left: 5px solid #ff00d4;
  border-radius: 5px;
}

