@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,300;1,400;1,700&display=swap');

/*--BODY-HEADER--*/

/*BODY-IMG-LOGO*/
body header img {
  width: 170px; 
  height: auto;
}
header img {
  display: block;
  margin: 0 auto;
}
body {
  font-family: 'Poppins', sans-serif;
  background: rgb(47,45,45);
  background: linear-gradient(90deg, rgba(47,45,45,1) 0%, rgba(209,44,44,1) 50%, rgba(217,91,8,1) 100%);
}

/*BODY-OPCIONES DE NAVEGACION*/
.nav.nav-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
}
.nav.nav-tabs li.nav-item {
  margin-right: 20px; 
}
.nav.nav-tabs a.nav-link {
  font-family: 'Poppins', sans-serif; 
  font-weight: bold; 
  font-size: 15px;
  text-decoration: none;
  color: #dad2d2; 
  transition: color 0.3s ease-in-out;
}
.nav.nav-tabs a.nav-link:hover {
  color: #ff8000;
}

/*BODY-CARTAS-IMAGENES-MAIN*/
.card-group {
  display: flex;
  justify-content: center; 
  gap: 30px; 
  flex-wrap: wrap; 
  margin-top: 50px;
}
.card {
  max-width: 225px;
  outline: 2px solid #fff
}
.card:hover {
  transform: translateY(-10px);
  animation: bounceAnimation 1s infinite;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
@keyframes bounceAnimation {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.card img{
  outline: 2px solid #fff
}
.card h2{
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}
.card p{
  text-align: center;
  font-family: 'Poppins', sans-serif; 
  font-weight: bold; 
  font-size: 15px;
  color:black 
}

/*BODY-MAIN-TEXTOS*/
body p{
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: bold;
  color: #dad2d2;
  max-width: 800px;
  margin: 20px auto; 
}
h1 {
  margin-top: 20px;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fade-scale 3s infinite linear alternate;
}
@keyframes fade-scale {
  from {
      opacity: 1;
      transform: scale(1);
  }
  to {
      opacity: 0.5;
      transform: scale(1.0);
  }
}
h3 {
  margin-top: 20px;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fade-scale 3s infinite linear alternate;
}
@keyframes fade-scale {
  from {
      opacity: 1;
      transform: scale(1);
  }
  to {
      opacity: 0.5;
      transform: scale(1.0);
  }
}
.paragraph-with-icon {
  display: flex;
  align-items: center; 
  justify-content: center;
  margin-bottom: 10px; 
  position: relative; 
}
.paragraph-with-icon::after {
  content: ""; 
  margin-left: 10px; 
  width: 40px; 
  height: 40px; 
  background-size: cover; 
}
.icon-2::after {
  background-image: url("");
}
.icon-3::after {
  background-image: url("../img/duplicados.png"); 
}
.icon-4::after {
  background-image: url("../img/bajo-construccion.png"); 
}
.icon-5::after {
  background-image: url("../img/argentina.png"); 
}
.icon-6::after {
  background-image: url("../img/apoyo.png"); 
}
.icon-7::after {
  background-image: url("../img/compras.png"); 
}
.icon-8::after {
  background-image: url("../img/camion-de-reparto.png"); 
}

/*--BODY/HR/SEPARADORES--*/
body hr {
  border: none;
  border-top: 3px solid #ffffff;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin: 20px auto;
  width: 80%;
}
body section p {
  text-align: center;
  color: #f56606;
  font-size: 20px;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
}

/*--BODY/PDF´S--*/
.pdf-link {
  display: block;
  width: 35%;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: #f56606;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #dad2d2;
  border-radius: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s ease;
}
.pdf-link:hover {
  background-color: #dad2d2;
  color: #050505;
}

/*--BODY/BOTONES DE COMPRA--*/
.center-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10vh; 
  margin-bottom: 20px; 
}
button {
  background-color: #f56606;
  color: white;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  border-radius: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s ease;
}
button:hover{
  background-color: #dad2d2;
  color: #050505;
}

/*-LOGO DE WHATSAPP--*/
.whatsapp-icon {
  position: fixed;
  bottom: 152px;
  right: 5px;
  z-index: 9999;
}
.whatsapp-icon img {
  width: 40px;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(12, 12, 12, 0.3);
  transition: transform 0.3s ease;
}
.whatsapp-icon img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(12, 12, 12, 0.3);
}

/*--FOOTER--*/

/*--FOOTER/FORMULARIO DE CONTACTO--*/
.container-contact-form {
  width: 80%;
  max-width: 80%;
  margin: 0 auto;
  padding: 20px;
  border: 2px solid #ccc;
  border-radius: 20px;
}
.form-control {
  width: 100%;
  padding: 10px;
  border: 2px solid #f56606;
  border-radius: 20px;
}
.form-select {
  width: 100%;
  padding: 10px;
  border: 2px solid #f56606;
  border-radius: 20px;
}
.form-label {
  font-weight: bold;
  color: #f56606;
}
.btn-primary {
  width: 100%;
  padding: 10px;
  background-color: #f56606;
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}
.btn-primary:hover {
  background-color: #333;
}

/*--FOOTER/MAPS--*/
.map-container {
  width: 80%;
  height: 300px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
  margin: auto;
  border: 2px solid #ccc;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
}

/*--FOOTER/REDES/LOGO Y TEXTOS--*/
.pie-pagina{
  width: 100%;
  background-color: #0a141d;
}
.pie-pagina .grupo-1{
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-gap: 50px;
  padding: 45px 0px;
}
.pie-pagina .grupo-1 .box{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.pie-pagina .grupo-1 .box figure{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pie-pagina .grupo-1 .box figure img{
  width: 170px;
}
.pie-pagina .grupo-1 .box h2{
  color: #fff;
  margin-bottom: 25px;
  font-size: 18px;
  color: #f56606;
  font-weight: bold;
}
.pie-pagina .grupo-1 .box p{
  color: #efefef;
}
.pie-pagina .grupo-1 .red-social a{
  display: inline-block;
  text-decoration: none;
  width: 45px;
  height: 45px;
  line-height: 45px;
  color: #fff;
  margin-right: 20px;
  background-color: #0d2033;
  text-align: center;
  transition: all 300ms ease;
}
.pie-pagina .grupo-1 .red-social a:hover{
  color: #f56606;
}
.pie-pagina .grupo-2{
  background-color: #0a1a2a;
  padding: 15px 10px;
  text-align: center;
  color: #fff;
}
.pie-pagina .grupo-2 small{
  font-size: 15px;
}
@media screen and (max-width:800px) {
  .pie-pagina .grupo-1{
    width: 80%;
    grid-template-columns: repeat(1,1fr);
    grid-gap: 30px;
    padding: 35px 0px;
  }
}



























