* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  font-family: Skranji, Arial, Helvetica, sans-serif;
  text-decoration: none;
}

body {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(../img/fondo.jpg);
  background-color: #000000;
  min-height: 100vh;
  position: relative;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  transition: 0.7s;
  padding: 30px 20px;
  z-index: 10;
}

.menu-icon {
  display: none;
}

.menu-icon i {
  color: white;
  font-size: 30px;
}

.Header .logo {
  width: 100px;
  height: 100px;
  position: relative;
  color: #fff;
  font-weight: bold;
  font-size: 2em;
  letter-spacing: 2px;
  transition: 1.5s;
  text-decoration: none;
}

.navbar {
  padding: 10px 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: relative;
  height: 70px;
}

.Header .menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Header .menu .item {
  list-style-type: none;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.5s ease;
}

.Header .menu .item .link {
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0 15px;
  text-decoration: none;
  color: #f8f4f2;
  letter-spacing: 2px;
  font-weight: 600;
  transition: 0.7s;
  font-size: 20px;
}

.menu .item .link:hover {
  padding: 5px 10px;
  color: rgb(247, 247, 247);
  border-radius: 15px;
  border: 2px solid transparent;
  cursor: pointer;
}



.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding-top: 10px;
}

.image-container {
  position: relative;
  width: 45%;
  max-width: 800px;
  height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}


.image-1 {
  animation: fadeInOut 18s infinite 0s;
}

.image-2 {
  animation: fadeInOut 18s infinite 3s;
}

.image-3 {
  animation: fadeInOut 18s infinite 6s;
}

.image-4 {
  animation: fadeInOut 18s infinite 9s;
}

.image-5 {
  animation: fadeInOut 18s infinite 12s;
}

.image-6 {
  animation: fadeInOut 18s infinite 15s;
}

@keyframes fadeInOut {
  0% { opacity: 0; }      
  5.56% { opacity: 1; }   
  11.11% { opacity: 1; }  
  19.44% { opacity: 0; }  
  100% { opacity: 0; }    
}

.btncomprar {
  display: inline-block;
  padding: 1em 2em;
  border: 3px solid #ffffff;
  border-radius: 0.12em;
  width: 200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  transition: all 0.2s;
  animation: bn13bouncy 5s infinite linear;
  position: relative;
}

.btncomprar:hover {
  background-color: white;
  color: #000000;
}

@keyframes bn13bouncy {
  0% { top: 0em; }
  40% { top: 0em; }
  43% { top: -0.9em; }
  46% { top: 0em; }
  48% { top: -0.4em; }
  50% { top: 0em; }
  100% { top: 0em; }
}

.ft-container {
    max-width: 18000px;

  }
  
  .footer {   
     margin-bottom: 0px;
      margin-top: 190px;
    background-color: #000000;
    padding: 100px 0;
  }
  
  .ft-row {
    display: flex;
    flex-wrap: wrap;
  }
  
  .ft-link {
    width: 25%;
    padding: 0 270px;
  }
  
  .ft-link h4 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 500;
    border-bottom: 2px solid rgb(23, 55, 143);
    display: inline-block;
    padding-bottom: 10px;
  }
  
  .ft-link ul li a {
    font-size: 18px;
    text-decoration: none;
    color: rgb(252, 252, 252);
    display: block;
    margin-bottom: 15px;
    transition: all 0.3s ease;
  }
  
  .ft-link ul li a:hover {
    color: #ffffff;
    padding-left: 6px;
  }
  
  .social-link a {
    display: inline-block;
    min-height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0px 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
  }
  
  .social-link a:hover {
    background-color: rgb(23, 55, 143);
  }
  

  
.derechos {
  color: #3c3a3d;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 1700px) {
  body, html {
      overflow-x: hidden;
  }

  body {
      font-size: 14px;
  }


  .content-container {
 margin-top: 30px;
      padding-top: 80px;
  }

  .image-container {   
      width: 80%;
      height: 400px;
      max-width: 600px;
  }

  .btncomprar {
      width: 180px;
      padding: 1.1em 1.5em;
      font-size: 16px;
  }


}

@media screen and (max-width: 991px) {
  body, html {
      overflow-x: hidden;
  }

  body {
      font-size: 14px;
  }

  header {
      padding: 20px;
  }

  .navbar .menu {
      position: absolute;
      top: 70px;
      left: 0;
      right: 0;
      flex-direction: column;
      text-align: center;
      background: rgb(16, 23, 43);
      gap: 0;
      overflow: hidden;
      border: 2px solid;
      border-radius: 10px;
      margin: 0 20px;
  }

  .navbar .menu .item {
      padding: 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar .menu .item:last-child {
      border-bottom: none;
  }

  .menu-icon {
    display: block; 
    position: absolute;
    right: 40px; 
    top: 50%;
    transform: translateY(-50%);
  }

  #menu {
      transition: all 0.5s;
  }

  #menu:checked ~ .navbar {
      display: initial;
  }

  .Header .logo {
      font-size: 1.5em;
  }

  .content-container {
      margin-top: 0px;
      padding-top: 80px;
  }

  .image-container {
      width: 80%;
      height: 400px;
      max-width: 600px;
  }

  .btncomprar {
      margin-top: 10px;
      width: 180px;
      padding: 1.1em 1.5em;
      font-size: 16px;
  }

  .ft-row {
      flex-direction: column;
      align-items: center;
  }

  .ft-link {
      width: 100%;
      padding: 0 20px;
      margin-bottom: 30px;
  }

  .footer {
      margin-top: 300px;
  }
}

@media screen and (max-width: 600px) {
  .content-container {
      padding-top: 70px;
  }

  .menu-icon {
    display: block; 
    position: absolute;
    right: 20px; 
    top: 50%;
    transform: translateY(-50%);
  }

  .image-container {
      width: 90%;
      height: 300px;
      max-width: 500px;
  }

  .btncomprar {
      width: 180px;
      padding: 1em 1.2em;
      font-size: 16px;
  }

  .footer {
      padding: 60px 0;
  }

  .derechos {
      font-size: 12px;
  }
}

@media screen and (max-width: 400px) {
  .content-container {
      padding-top: 60px;
  }
  .menu-icon {
    display: block; 
    position: absolute;
    right: 100px; 
    top: 50%;
    transform: translateY(-50%);
  }


  .image-container {
      width: 95%;
      height: 250px;
      max-width: 400px;
  }

  .btncomprar {
      width: 150px;
      padding: 0.9em 1em;
      font-size: 14px;
  }
}