@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

* {
  font-family: 'Poppins';
}

.bienvenida {
  background-color: rgb(180, 180, 180);
  color: black;
  font-size: 1.75rem;
  font-weight: 550;
  text-align: center;
}

.slogan {
  color: black;
  font-size: 1.5rem;
  font-weight: 550;
  text-align: center;
}

.texto-productos {
  color: black;
  font-size: 2rem;
  font-weight: 550;
  text-align: center;
  margin-top: 40px;
}

.contenedor-contacto {
  margin-top: 40px;
  background-color: #373737;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.pregunta-contacto {
  font-size: 2rem;
  color: #fefefe;
  text-align: center;
}

.contenedor-rss {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 600px;
}

.escribenos-text {
  font-size: 1.75rem;
  color: #fefefe;
  text-align: center;
}

.contacto-escribenos {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.contacto-wsp {
  display: flex;
  height: 80px;
  border: 10px solid #c5c5c5;
  border-radius: 100px;
  background-color: #c5c5c5;
  align-items: center;
  justify-content: center;
  width: 200px;
  text-decoration: none;  
}

.texto-contacto-wsp {
  color: black; 
  font-size: 20px; 
  font-weight: 400; 
  text-decoration: none; 
}

.rss-text {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #fefefe;
  text-align: center;
}

.redes-sociales {
  display: flex;
}

.rss {
  display: flex;
  border: 10px solid #c5c5c5;
  border-radius: 15px;
  background-color: #c5c5c5;
  align-items: center;
  justify-content: center;
  margin: 0 15px;
  height: 60px;
  width: 60px;
  text-decoration: none;  
}

.fa-whatsapp {
  text-decoration: none;  
  color: black;
  font-size: 40px;
  margin-right: 5px;
}

.fa-facebook, .fa-instagram {
  text-decoration: none;  
  color: black;
  font-size: 40px;
}

.email-contacto {
  width: 400px;
  padding: 6px;
}

.form-contacto input, textarea {
  width: 100%;
  padding: 6px;
  outline: none;
  border: none;
  margin: 6px 0px;
}

.enviar-btn {
  width: 100%;
  padding: 6px;
  cursor: pointer;
}


/*Cards*/
.container-card{
	width: 100%;
	display: flex;
	max-width: 1100px;
	margin: auto;
}

.card{
	width: 100%;
	margin: 20px;
	border-radius: 6px;
	overflow: hidden;
	background:#bebebe;
	box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
	transition: all 400ms ease-out;
	cursor: default;
}
.card:hover{
	background-color: #dedede;
	box-shadow: 5px 5px 20px rgba(0,0,0,0.4);
	transform: translateY(-3%);
}
.card img{
	width: 100%;
	height: 210px;
	padding: 10px;
}
.card .contenido-card{
	padding: 15px;
	text-align: center;
}
.card .contenido-card span{
	font-size: 18px;
	font-weight: 400px;
	margin-bottom: 15px;
	color: black;
	text-align: center;
}

@media (max-width: 904px) {
	.container-card{
		justify-content: center;
		flex-wrap: wrap;
	}
    .card {
		width: 40%;
	}
}

@media (max-width: 548px){
	.container-card{
		justify-content: center;
		flex-wrap: wrap;
	}
	.card{
		width: 75%;
		margin: 15px;
	}
}

