/* --- Contenedor general --- */
.contenedor {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

/* --- Estilos generales --- */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
}

/* --- Header con Grid --- */
header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 10px 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.logo {
  height: 50px;
  justify-self: start;
}

header a img {
  display: block;
  cursor: pointer;
}


.nav-botones {
  display: flex;
  gap: 10px;
  justify-self: end;
}

.nav-botones button {
  padding: 8px 14px;
  background-color: #ffffff;
  border: 2px solid #f3dbcf;
  border-radius: 8px;
  color: #fc5745;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-botones button:hover {
  background-color: #fc5745;
  color: #ffffff;
  border-color: #fc5745;
}

.invisible-clicable {
  background-color: transparent !important;
  color: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  pointer-events: auto;
  padding: 0 !important;
  width: 100px; /* ajusta si quieres que tenga un tamaño específico */
  height: 30px;
  opacity: 0; /* oculta visualmente */
}
/* --- Carrusel --- */
.carrusel {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  background-color: white;
  margin-bottom: 40px;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
  height: 100%;
}

.carousel-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}
/* --- Botón de adopción --- */
.nav-boton-adopcion {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

a {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
    text-decoration: none;
}

#enlaceDiscordia{
  color: #fc5745;
  text-decoration: none;
}

.nav-boton-adopcion button {
   text-decoration: none;
  padding: 8px 14px;
  background-color: #ffffff;
  border: 2px solid #f3dbcf;
  border-radius: 8px;
  color: #fc5745;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-boton-adopcion button:hover {
  background-color: #fc5745;
  color: #ffffff;
  border-color: #fc5745;
}

#enlaceDiscordia:hover{
  color: #ffffff;
}

/* --- Imagen y texto sobre nosotros --- */
.card-texto-sobreNosotros {
  display: grid;
  place-items: center;
  margin-top: 20px;
}

.img-grande {
  width: 700px;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  margin-bottom: 40px;
}

.imagen-con-texto {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 700px;
}

.imagen-con-texto img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.texto-superpuesto {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000000;
  text-align: center;
  padding: 20px;
  width: 85%;
  max-width: 700px;
}

.titulo-sobreNosotros {
  font-family: 'Fredoka', sans-serif;
  color: #fc5745;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.descripcion-sobreNosotros {
  font-family: 'Lato light', sans-serif;
  color: rgb(0, 0, 0);
  font-size: 1.2rem;
}

/* --- Tarjetas personalizadas cada perrito --- */
.tarjetas-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.tarjetas-container > .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.tarjetas-container > .row > .col-md-4 {
  flex: 0 0 calc(33.333% - 1rem);
  max-width: calc(33.333% - 1rem);
  display: flex;
  flex-direction: column;
}

/* Tarjeta interior fondo */
.tarjeta-paso {
  border: 3px dotted #fc5745;
  border-radius: 18px;
  padding: 20px;
  background-color: #ffffff;
  background-image: url('/src/assets/fondohuellasyhuesos_1.png');
  background-repeat: repeat;
  background-size: 140px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-family: 'Lato', sans-serif;
  color: #333;
  line-height: 1.5;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.tarjeta-paso:hover {
  transform: scale(1.02);
}

.img-paso {
  width: 100%;
  height: 250px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 15px;
}

.tarjeta-paso h5 {
  font-family: 'Fredoka', sans-serif;
  color: #000;
  font-size: 1.1rem;
  margin-top: 15px;
  margin-bottom: 10px;
}

/* --- Media Queries --- */
@media (max-width: 991.98px) {
  .tarjetas-container > .row > .col-md-4 {
    flex: 0 0 48%;
    max-width: 48%;
  }
}

@media (max-width: 575.98px) {
  .tarjetas-container > .row > .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


.texto-listo-adoptar
{
  text-align: center;
   font-family: 'Fredoka', sans-serif;
  color: #fc5745;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

/* Banner de ayuda */
.banner-ayuda {
  background-color: #fef4f1;
  border: 3px dashed #fc5745;
  padding: 40px 20px 0px 20px; /* eliminamos padding inferior */
  text-align: center;
  max-width: 1000px;
  margin: 40px auto;
  
}

/* Texto dentro del banner */
.mensaje-ayuda {
  font-family: 'Fredoka', sans-serif;
  color: #fc5745;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* Imagen del perrito tocando el borde */
.img-parritoPata {
  width: 200px;
  height: auto;
  margin-bottom: -0px; /* esto hace que toque el borde */
}

.footer {
  background-color: #fef4f1;
  text-align: center;
  padding: 30px 20px;
  font-family: 'Fredoka', sans-serif;
}

.footer-logo {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
  padding-bottom: 4px; /* Pega el texto más */
}

.footer-subtitulo {
  color: #fc5745;
  font-weight: bold;
  margin: 0;
}

.footer-direccion {
  color: #000000;
  font-family: 'Lato';
  font-size: 1rem;
  margin: 4px 0 10px 0;
  line-height: 1.3;
}

.footer-redes {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.footer-redes a {
  color: #fc5745;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.footer-redes a:hover {
  transform: scale(1.2);
  color: #d43e34;
}








