* {
    margin: 0;
    padding: 0;
    /* font-family: Arial, sans-serif; */
    box-sizing: border-box;
}

.bg-1 {
  background-color: rgb(47, 96, 90)
  }
  
.bg-2 {
  background-color: rgb(247, 247, 213)
  }
  
.text-1 {
    color:  rgb(47, 96, 90)
  }
    
.text-2 {
    color: rgb(247, 247, 213)
  }
  
.navbar{
    padding: 0rem;
  }
  
.navbar-nav li{
    padding-right: 20px;
  }
  
.nav-link{
    font-size: 1.1em !important;
  }
  
main {
   /*  margin: 5px; */
    justify-content: center;
    align-items: center;
    background-color: white;
    /* border: 2px solid black; */
    /*  border-radius: 10px; */
    height: auto;
}

.imag-fondo {
    margin: 10px;
} 

.full-width-image {
  width: 100%;
  height: 200px;
  object-fit: cover; /* Ensure the image covers the entire width without distortion */
}

footer {
    background-color: rgb(247, 247, 213);
    color: black;
    height: 50px;
    align-content: center;
    text-align: center;
    padding: 50px;
  }


li:hover {
    font-weight: bold;
    color: rgb(47, 96, 90);
}

.hero{
	background-color: rgb(47,96,90);
	background-image: url("../img/man_fishing.jpg");
	padding-top: 200px;
	padding-bottom: 200px;
	padding-left: 10px;
	background-repeat: no-repeat;
	background-size: cover;
	color: white;
	font-weight: bold;
}


h1 {
    text-align: center;
}

h2{
	text-align: left;
	align-items: start;
	font-weight: bold;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.hero p{
	text-align: left;
	align-items: start;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* PRODUCTOS */

#pagina-prod { /* productos.html*/
  color: white;
}

#pagina-prod:hover { /* productos.html*/
  font-size: 1.3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* contenedor de todos los productos */
.contenido-productos {
  border-radius: 5px;
  background-color: rgb(231, 241, 240);
  padding: 20px;
  margin: 5px;
}

/* cada producto tiene una sombra */
.prod1:hover {
  transform: scale(1.05); /* aumenta el tamaño en un 5% */
  box-shadow: 0 0 20px rgb(47, 96, 90); /* añade una sombra */
  transition: transform 0.3s ease; /* transición suave */
}

/* productos.html*/
.fondo-prod { 
  padding: 10px;
  color: white;
  background-color: rgb(47, 96, 90, 0.8);
}

/*para el fondo de la pagina de productos */
.main { 
  background-color: rgb(231, 241, 240);
}

/* titulo de las paginas */
.tit-prod { 
  border-radius: 10px;
  font-size: 3rem;
  color: rgb(47, 90, 96);
  padding: 10px;
  margin-top: 20px;
  animation: ingresoTitulo 2.5s ;

}

@keyframes ingresoTitulo {
  0% {
    transform: translateX(-100%);
}
100% {
    transform: translateX(0);
}
}

/* estilos de flecha del carrousel dentro de productos.html*/
.flecha {
  background-color: rgb(47, 96, 90);
  border-radius: 10px;
  height: 100px;
  align-self: center;

} 

/* imagenes del carrousel */ 
.imag-prod { 
  max-width: 100%; /* Cambiar a 100% para que las imágenes se ajusten al contenedor */
  max-height: auto;
}

/* para hacer el carrousel responsivo */
.galeria { 
  display: flex;
  flex-direction: row;
}


/* media queries */

/* extra small devices */
@media screen and (max-width: 599px) {
  .galeria {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
}

/* small devices */
@media screen and (min-width: 600px) and (max-width: 767px) {
  .galeria {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }

  #row {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
  

}

.fondo-qs {
 background-color:  rgb(231, 241, 240);
 padding: 10px;
}

.fondo-qs2 {
  color: rgb(47, 96, 90, 0.8);
}

.fondo-qs2:hover {
  color: rgb(47, 96, 90, 0.8);
}

/* estilos del link desde quienes somos a pagina del formulario */

.link-form {
  color: black;
  text-decoration: underline;
}

.link-form:visited {
  color: blanck;
  text-decoration: none;
}

/* estilos del mapa dentro del quienes somos */
.map-container {
  position: relative;
  padding-bottom: 56.25%; /* Relación de aspecto 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* iconos footer */

.social-media {
  display: flex;
  justify-content: center;
  gap: 15px;
  
}

.social-media a {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s;
  color: rgb(47, 96, 90, 0.8);
}

.social-media a:hover {
  color:  rgb(47, 96, 90);/* Color al pasar el ratón por encima */
}

/* FORMULARIO DE CONTACTO */

.contacto {
  background-color: rgb(47, 96, 90, 0.6);
  max-width: 70%;
  padding: 20px;
  margin: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 5px;
}

input[type="text"], textarea {
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.mensaje1 {
  margin-bottom: 5px;
}

textarea {
  height: 100px;
}

.enviar, .borrar {
  padding: 10px 20px;
  margin-top: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.enviar {
  background-color: rgb(47, 96, 90, 0.8);
  color: white;
}

.borrar {
  background-color: #dc3545;
  color: white;
}

.enviar:hover, .borrar:hover {
  opacity: 0.8;
}

.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  line-height: 30px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  padding: 10px;
  font-size: 24px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s;
  z-index: 1000;
}

.whatsapp-icon:hover {
  background-color: #25D366;
  opacity: 70%;
  transform: scale(1.3);
}