@import url('https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:wght@200;300;400;500&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    background-color: #ffffff; 
}
.container-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(32, 32, 32);
  padding: 18px 24px;
  height: 0;
}
.telefonoInfo {
  display: flex;
  gap: 24px;
}
@media(min-width: 900px) {
  .telefonoInfo {
    display: none;
  }
}
@media(min-width: 900px) {
  .telefonoWsppInfo {
    display: none;
  }
}
.containerHeader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-top: 40px;
}
.telefonoHeader {
  display: none;
  text-decoration: none;
  color: #000000;
  transition: all 0.3s;
}
.telefonoHeader:hover {
  color: #2190cf;
}
@media(min-width: 900px) {
  .telefonoHeader {
    display: flex;
    font-size: 30px;
    font-weight: 600;
  }
  .containerHeader {
    justify-content: space-evenly;
  }
}
.container-info p {
  color: #f1f1f1;
  margin: 0;
}
.container-info a {
  color: #f1f1f1;
  text-decoration: none;
}
.container-info a:hover {
  color: #1d7db5;
}
.seguinos {
  display: flex;
  align-items: center;
}
.seguinos p{
  padding-right: 10px;
}
.logo-instagram {
  width: 30px;
}

/* LOGO */
.logo-sume {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.logo-sume img {
  width: 200px;
}
h1 {
  color: #3c3221;
  text-align: center;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 600;
}

/* SLIDER */
.container-slider {
    width: 100%;
    max-width: 1600px;
    overflow: hidden;
} 
.slider {
    display: flex;
    width: 500%;
    height: 500%;
    margin-left: -100%;
}
.slider-section {
    width: 100%;
} 
@media(max-width: 600px) {
    .slider-section {
        height: 200px;
    }
}
.slider-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
} 

/* SECTION */
h2 {
  text-align: center;
  margin: 24px 0 24px 0;
  font-weight: 600;
}
h3 {
  color: #07285a;
  margin: 16px 16px 8px 16px;
  font-size: 20px;
  font-weight: 600;
}
.title-telescopicos, .title-calefactores {
  margin: 16px;
}
.containerSectionProductos {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.container-productos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  align-items: center;
  margin: 24px 24px 0 24px;
  gap: 24px;
  margin-bottom: 40px;
}
@media(max-width: 700px) {
  .container-productos {
    grid-template-columns: repeat(1, 1fr);
  }
}
.card-productos {
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.504);
  border-radius: 4px;
  width: 304px;
}
.card-productos img {
  width: 100%;
  border-radius: 4px 4px 0 0;
}
@media(min-width: 800px) {
  .card-productos img {
    border-radius: 4px 0px 0px 4px;
  }
}
.container-content-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.text-card {
  padding: 0 16px 16px 16px;
  text-align: start;
}
@media(min-width: 800px) {
  .text-card {
    text-align: center;
  }
}
p {
  margin: 8px;
}
.container-contacto {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px;
}
.container-contacto h4 {
  color:  #07285a;
  font-weight: 600;
}
.local h4 {
  font-size: 20px;
  margin-bottom: 16px;
}
.info {
  margin-top: 24px;
}
.telefono {
  margin-top: 24px;
}
.telefono h4 {
  font-size: 20px;
}
.telefono p {
  margin: 0;
}

.num-wspp {
  text-decoration: none;
  color: #000000;
  transition: all 0.3s;
}
.num-wspp:hover {
  color: #2190cf;
}
.horarios {
  color:  #07285a;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 16px;
}
@media (min-width: 600px) {
  .telefono h4 {
    font-size: 24px;
  }
  .local h4 {
    font-size: 24px;
  }
  .horarios {
    font-size: 20px;
  }
  .telefono {
    font-size: 20px;
  }
}

/* FOOTER */
.content-footer {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 50px;
    color: #f1f1f1;
    background-color: #000000;
    padding: 24px 24px 4px 24px;
}
.email {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.copyright {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    color: #b1b1b1;
}
.copyright p a {
  color: #b1b1b1;
}
.copyright p {
  font-size: 16px;
}
.content-footer a {
  text-decoration: none;
  font-style: none;
  color: #f1f1f1;
  transition: all .3s;
}
.content-footer a:hover {
  color: #808080;
}
  .logoWspFlotante {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 40px;
    right: 30px;
    background-color: #0df053;
    border-radius: 8px;
    width: 10rem;
    height: 3rem;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.5s;
    cursor: pointer;
  }
  .logoWspFlotante p {
    color: #f1f1f1;
    font-weight: bold;
  }
  .iconoFlotante {
    width: 35px;
    height: 35px;
  }
  @media (max-width: 600px) {
    .iconoFlotante {
      width: 30px;
      height: 30px;
    }
  }
  .container-whatsapp {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .container-whatsapp div {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image:url(../img/whatsapp.svg);
    background-repeat: no-repeat;
    background-position: 370px 127px;
    border: 2px solid #0df053;
    border-radius: 4px;
    padding: 64px;
  }
  .span-whatsapp {
    font-weight: bold;
    font-size: 32px;
    margin-bottom: 16px;
  }
  .num-wspp-card {
    font-weight: bold;
    font-size: 32px;
    cursor: pointer;
  }
  @media(max-width: 520px) {
    .container-whatsapp div {
      display: flex;
      flex-direction: column;
      align-items: center;
      background-image:url(../img/whatsapp.svg);
      background-repeat: no-repeat;
      background-position: center 160px;
      border: 2px solid #0df053;
      border-radius: 4px;
      width: 80%;
      padding: 32px 64px 64px 64px;
    }
    .span-whatsapp {
      text-align: center;
      font-weight: bold;
      font-size: 24px;
      margin-bottom: 16px;
    }
    .num-wspp-card {
      font-weight: bold;
      font-size: 24px;
      cursor: pointer;
    }
  }


  /* .container-form {
    background-color: #1d7db5;
    padding: 16px;
    color: #f1f1f1;
  }
  #button {
    width: 224px;
    border-radius: 0;
  }
  .form-control {
    width: 224px;
    border-radius: 0;
    border: none;
  }
  form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .text-form {
    text-align: center;
    font-size: 18px;
    margin: 0;
    margin-bottom: 16px;
    font-weight: 500;
  }
  @media(min-width: 768px) {
    .text-form {
      padding: 0 16px 0 16px;
    }
  }
  .aviso-form {
    color: #f1f1f1;
    margin-top: 8px;
    font-size: 12px;
    width: 213px;
  }
 */
