@charset "UTF-8";

/* Ansi Shadow
██████╗  █████╗ ██╗     ███████╗████████╗ █████╗                              
██╔══██╗██╔══██╗██║     ██╔════╝╚══██╔══╝██╔══██╗                             
██████╔╝███████║██║     █████╗     ██║   ███████║                             
██╔═══╝ ██╔══██║██║     ██╔══╝     ██║   ██╔══██║                             
██║     ██║  ██║███████╗███████╗   ██║   ██║  ██║                             
╚═╝     ╚═╝  ╚═╝╚══════╝╚══════╝   ╚═╝   ╚═╝  ╚═╝                             
                                                                              
██████╗ ███████╗     ██████╗ ██████╗ ██╗      ██████╗ ██████╗ ███████╗███████╗
██╔══██╗██╔════╝    ██╔════╝██╔═══██╗██║     ██╔═══██╗██╔══██╗██╔════╝██╔════╝
██║  ██║█████╗      ██║     ██║   ██║██║     ██║   ██║██████╔╝█████╗  ███████╗
██║  ██║██╔══╝      ██║     ██║   ██║██║     ██║   ██║██╔══██╗██╔══╝  ╚════██║
██████╔╝███████╗    ╚██████╗╚██████╔╝███████╗╚██████╔╝██║  ██║███████╗███████║
*/
:root {
  --fondobody0: #ae46f3;
  --fondobody: #873cdd;
  --fondonegro: #000;
  --fondobody2: #9828e2;
  --hover: #ffff;
  --nav: #ffff;
  --blanco: #ffff;
  --textparr: #66149c;
}


/* 
██╗   ██╗████████╗██╗██╗     ██╗██████╗  █████╗ ██████╗ ███████╗███████╗
██║   ██║╚══██╔══╝██║██║     ██║██╔══██╗██╔══██╗██╔══██╗██╔════╝██╔════╝
██║   ██║   ██║   ██║██║     ██║██║  ██║███████║██║  ██║█████╗  ███████╗
██║   ██║   ██║   ██║██║     ██║██║  ██║██╔══██║██║  ██║██╔══╝  ╚════██║
╚██████╔╝   ██║   ██║███████╗██║██████╔╝██║  ██║██████╔╝███████╗███████║
╚═════╝    ╚═╝   ╚═╝╚══════╝╚═╝╚═════╝ ╚═╝  ╚═╝╚═════╝ ╚══════╝╚══════ */
.no-margin {
  margin: 0;
}

.no-padding {
  padding: 0;
}

.centrar-texto {
  text-align: center;
}

h1 {
  margin: 0.67rem 2rem !important;
  color: #ffff;
  text-transform: uppercase;
  font-size: 3rem;
}

.title {
  color: #ffff;
  margin: 0.67rem 2rem !important;
  text-transform: none;
  text-align: center;
}

h2 {
  font-size: 2rem;
}

p {
  font-size: 1.5rem;
}

/* 
██████╗ ██╗      ██████╗ ██████╗  █████╗ ██╗     ███████╗███████╗
██╔════╝ ██║     ██╔═══██╗██╔══██╗██╔══██╗██║     ██╔════╝██╔════╝
██║  ███╗██║     ██║   ██║██████╔╝███████║██║     █████╗  ███████╗
██║   ██║██║     ██║   ██║██╔══██╗██╔══██║██║     ██╔══╝  ╚════██║
╚██████╔╝███████╗╚██████╔╝██████╔╝██║  ██║███████╗███████╗███████║
╚═════╝ ╚══════╝ ╚═════╝ ╚═════╝ ╚═╝  ╚═╝╚══════╝╚══════╝╚══════╝
*/
/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
  font-size: 62.5%;
  font-family: "Roboto Condensed", sans-serif;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  background-color: var(--fondobody0);
  width: 100%;
}

.header_enlaces {
  display: flex;
}

main {
  margin-top: 2rem;
  padding: 0rem 1rem 0rem 1rem;
  margin-bottom: 8rem;
}

.contenedor {
  margin: 0 auto;
  max-width: 1400px;
}

.sombra {
  padding: 0.5rem;
  margin-bottom: 2rem;
  background-color: var(--fondobody2);
  border-radius: 10px;
  -webkit-box-shadow: 0px 11px 15px -9px rgba(0, 0, 0, 0.63);
  -moz-box-shadow: 0px 11px 15px -9px rgba(0, 0, 0, 0.63);
  box-shadow: 0px 11px 15px -9px rgba(0, 0, 0, 0.63);
}

/* DEMO-SPECIFIC STYLES */
.typewriter h1 {
  font-size: 4rem;
  color: #fff;
  overflow: hidden;
  /* Ensures the content is not revealed until the animation */
  border-right: 1rem solid orange;
  /* The typwriter cursor */
  white-space: nowrap;
  /* Keeps the content on a single line */
  margin: 0 auto;
  /* Gives that scrolling effect as the typing happens */
  letter-spacing: .15rem;
  /* Adjust as needed */
  animation:
    typing 3.5s steps(30, end),
    blink-caret .5s step-end infinite;
}

/* The typing effect */
@keyframes typing {
  from {
    width: 0
  }

  to {
    width: 50%
  }
}

/* The typewriter cursor effect */
@keyframes blink-caret {

  from,
  to {
    border-color: transparent
  }

  20% {
    border-color: white
  }
}

a {
  text-decoration: none;
}

.header {
  width: 100%;
  height: 100%;
  background-color: black;
}

.bgHero {
  height: 19rem;
  width: 100%;
}

.contHeader {
  height: 19rem;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}

.logo {
  width: 15rem;
  height: 15rem;
}

.nav-bar {
  background: var(--fondonegro);
  padding: 20px;
  display: block;
  color: var(--blanco);
  cursor: pointer;
  font-size: 20px;
  width: 100%;
}

.desktopMenu {
  z-index: 1000;
}

.menu,
.submenu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu {
  /* background: var(--fondobody); */
  width: 100%;
  height: 30px;
}

.menu__link {
  display: block;
  padding: 20px;
  color: var(--blanco);
  font-size: 18px;
  text-decoration: none;
}

.menu__link:hover {
  background-color: var(--fondonegro);
  color: var(--fondobody);

}

.submenu {
  height: 0;
  overflow: hidden;
  transition: all 0.3s;
}

.submenu .menu__link {
  background: var(--fondobody);
}

.mostrar {
  margin-left: 50px;
}

.card {
  max-height: 34rem !important;
}

.icon {
  max-width: 3rem;
}

.container {
  max-width: 1170px;
  margin: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

ol,
ul {
  padding-left: 0rem;
}

ul {
  list-style-type: none;
}

footer {
  background-color: var(--fondonegro);
  padding: 70px 0;
  margin-top: 8rem;
}

.footer-col {
  width: 25%;
  padding: 0 15px;
}

.footer-col h4 {
  font-size: 18px;
  color: var(--blanco);
  text-transform: capitalize;
  margin-bottom: 35px;
  position: relative;

}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: var(--fondonegro);
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: var(--textparr);
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--blanco);
  padding-left: 8px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(red, green, blue, 1);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: var(--blanco);
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: var(--fondonegro);
  background-color: var(--blanco);
  border-radius: 1rem;
  max-width: 5rem;
}

.footer__made {
  display: flex;
  justify-content: center;
  color: var(--blanco);
}


@media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }

}

@media (max-width: 574px) {
  .footer-col {
    width: 100%;
  }

  .typewriter h1 {
    font-size: 1.2rem !important;
  }

}

@media (max-width: 56px) {
  .header {
    width: 50%;
  }

  .logo {
    max-width: 5rem;
    max-height: 5rem;
  }

  .cont-foot {
    width: 100%;
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 2.5rem;
  }

  p {
    font-size: 2rem;
  }

  .header {
    width: 100%;
  }

  .logo {
    max-width: 13rem;
    max-height: 13rem;
  }

  .bgHero,
  .contHeader {
    height: 16rem;
  }
}

@media (max-width: 1024px) {
  .menu {
    width: 100%;
    height: 209px;
    z-index: 90;
    position: relative;
    background-color: var(--fondonegro);
  }

  .desktopMenu {
    display: none;
  }

  #logoDesktop {
    background: var(--fondonegro);
  }

  .topnav {
    overflow: hidden;
    background-color: var(--fondonegro);
    position: relative;
  }

  .topnav #myLinks {
    display: none;
  }

  .topnav a {
    color: var(--textparr);
    padding: 4px 39px 3px 5px;
    text-decoration: none;
    font-size: 17px;
    display: block;
    margin: 9px -54px -10px 63px;

  }

  .topnav a.icon {
    background: black;
    display: block;
    position: absolute;
    right: 20%;
    top: 40%;
    z-index: 100;
  }

  .topnav a:hover {
    background-color: var(--fondobody);
    color: var(--blanco);
  }

  .active {
    background-color: var(--fondonegro);
    color: white;
  }

}

@media (min-width: 1024px) {

  .burgerMenu {
    display: none;
  }

  .nav-bar {
    display: none;
  }

  .menu {
    margin-left: 0;
    display: flex;
  }

  .container-submenu {
    position: relative;
  }

  .submenu .menu__link:hover {
    background: var(--fondonegro);
  }

  .submenu {
    position: absolute;
    top: 0px;
    width: 155px;
    overflow: visible;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
  }

  .container-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;

  }
}

.oscuro {
  background-color: #ffff;
  color: #66149c;
}

/* 
██╗███╗   ██╗██████╗ ███████╗██╗  ██╗
██║████╗  ██║██╔══██╗██╔════╝╚██╗██╔╝
██║██╔██╗ ██║██║  ██║█████╗   ╚███╔╝ 
██║██║╚██╗██║██║  ██║██╔══╝   ██╔██╗ 
██║██║ ╚████║██████╔╝███████╗██╔╝ ██╗ */
.cont-destacados {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.destacados__item {
  position: relative;
}

.destacados__text {
  position: absolute;
  bottom: 0;
  color: white;
  background: linear-gradient(rgba(255, 255, 255, 0), black);
  width: 100%;
  margin: 0;
  padding: 1rem;
}

.destacados__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destacados__item:nth-child(1) {
  grid-column-start: span 1;
}

.destacados__item:nth-child(2) {
  grid-column-start: span 1;
}

.destacados__item:nth-child(3) {
  grid-column-start: span 1;
}

@media (max-width: 768px) {
  .cont-destacados {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}



/* 
███╗   ██╗ ██████╗ ███████╗ ██████╗ ████████╗██████╗  ██████╗ ███████╗
████╗  ██║██╔═══██╗██╔════╝██╔═══██╗╚══██╔══╝██╔══██╗██╔═══██╗██╔════╝
██╔██╗ ██║██║   ██║███████╗██║   ██║   ██║   ██████╔╝██║   ██║███████╗
██║╚██╗██║██║   ██║╚════██║██║   ██║   ██║   ██╔══██╗██║   ██║╚════██║
██║ ╚████║╚██████╔╝███████║╚██████╔╝   ██║   ██║  ██║╚██████╔╝███████║
╚═╝  ╚═══╝ ╚═════╝ ╚══════╝ ╚═════╝    ╚═╝   ╚═╝  ╚═╝ ╚═════╝ ╚══════╝ */
.nosotros {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 39rem;
  column-gap: 2rem;
  row-gap: 2rem;
}

.nosotros__item {
  position: relative;
}

.nosotros__text {
  position: absolute;
  bottom: 0;
  color: white;
  background: linear-gradient(rgba(255, 255, 255, 0), black);
  width: 100%;
  margin: 0;
  padding: 1rem;
}

.nosotros__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nostros__item:nth-child(1) {
  grid-column-start: span 1;
}

.nostros__item:nth-child(2) {
  grid-column-start: span 1;
}

.nostros__item:nth-child(3) {
  grid-column-start: span 1;
}

.nostros__item:nth-child(4) {
  grid-column-start: span 1;
}

@media (max-width: 768px) {
  .nosotros {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 50rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  p {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .nosotros {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 50rem;
  }
}

/* 
███████╗███████╗██████╗ ██╗   ██╗██╗ ██████╗██╗ ██████╗ ███████╗
██╔════╝██╔════╝██╔══██╗██║   ██║██║██╔════╝██║██╔═══██╗██╔════╝
███████╗█████╗  ██████╔╝██║   ██║██║██║     ██║██║   ██║███████╗
╚════██║██╔══╝  ██╔══██╗╚██╗ ██╔╝██║██║     ██║██║   ██║╚════██║
███████║███████╗██║  ██║ ╚████╔╝ ██║╚██████╗██║╚██████╔╝███████║
╚══════╝╚══════╝╚═╝  ╚═╝  ╚═══╝  ╚═╝ ╚═════╝╚═╝ ╚═════╝ ╚══════╝ */
.servicios {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  padding: 2rem;
  grid-gap: 1rem;
}

.promo {
  display: flex;
  justify-content: center;
}

.servicios__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.servicios__item {
  position: relative;
}

.servicios2 {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding: 2rem;
  grid-gap: 1rem;
}

.servicios__text {
  position: absolute;
  bottom: 0;
  color: white;
  background: linear-gradient(rgba(255, 255, 255, 0), black);
  width: 100%;
  margin: 0;
  padding: 1rem;
}

.galeria__item:nth-child(1) {
  grid-column-start: span 1;
}

.galeria__item:nth-child(2) {
  grid-column-start: span 1;
}

.galeria__item:nth-child(3) {
  grid-column-start: span 1;
}

.galeria__item:nth-child(4) {
  grid-column-start: span 1;
}

@media (min-width: 782px) and (max-width: 1055px) {
  .servicios {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 782px) {
  .servicios {
    grid-template-columns: repeat(1, 1fr);
  }

}

@media (max-width: 400px) {

  .textoServicios {
    font-size: 1rem !important;
  }

}

.quote {
  display: flex;
  justify-content: space-evenly;
}

.quote__texto {
  color: var(--blanco);
}

/* 
██████╗  █████╗ ██╗     ███████╗██████╗ ██╗ █████╗ 
██╔════╝ ██╔══██╗██║     ██╔════╝██╔══██╗██║██╔══██╗
██║  ███╗███████║██║     █████╗  ██████╔╝██║███████║
██║   ██║██╔══██║██║     ██╔══╝  ██╔══██╗██║██╔══██║
╚██████╔╝██║  ██║███████╗███████╗██║  ██║██║██║  ██║ */
.cont-galeria {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-rows: 30rem;
  padding: 2rem;
  grid-gap: 1rem;
}

.galeria__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.galeria__item {
  position: relative;
}

.galeria__titulo {
  position: absolute;
  bottom: 0;
  color: white;
  background: linear-gradient(rgba(255, 255, 255, 0), black);
  width: 100%;
  margin: 0;
  padding: 1rem;
}

.galeria__item:nth-child(1) {
  grid-column-start: span 1;
}

.galeria__item:nth-child(2) {
  grid-column-start: span 1;
}

.galeria__item:nth-child(3) {
  grid-column-start: span 1;
}

.galeria__item:nth-child(4) {
  grid-column-start: span 1;
}

.galeria__item:nth-child(5) {
  grid-column-start: span 1;
}

.galeria__item:nth-child(6) {
  grid-column-start: span 1;
}

@media (min-width: 468px) {
  .cont-galeria {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 20rem;
  }

  .galeria__item:nth-child(1) {
    grid-column-start: span 1;
  }

  .galeria__item:nth-child(2) {
    grid-column-start: span 1;
  }

  .galeria__item:nth-child(3) {
    grid-column-start: span 1;
  }

  .galeria__item:nth-child(4) {
    grid-column-start: span 1;
  }

  .galeria__item:nth-child(5) {
    grid-column-start: span 1;
  }

  .galeria__item:nth-child(6) {
    grid-column-start: span 1;
  }
}

@media (min-width: 768px) {
  .cont-galeria {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 20rem;
  }

  .galeria__item:nth-child(1) {
    grid-column-start: span 1;
  }

  .galeria__item:nth-child(2) {
    grid-column-start: span 1;
  }

  .galeria__item:nth-child(3) {
    grid-column-start: span 1;
  }

  .galeria__item:nth-child(4) {
    grid-column-start: span 1;
  }

  .galeria__item:nth-child(5) {
    grid-column-start: span 1;
  }

  .galeria__item:nth-child(6) {
    grid-column-start: span 1;
  }
}

/*
 ██╗   ██╗██████╗███████╗    ██████████╗   ██╗     ██████╗██████████████╗
 ██║   ████╔═══██╚══███╔╝    ██╔════████╗  ██║    ██╔═══████╔════██╔════╝
 ██║   ████║   ██║ ███╔╝     █████╗ ██╔██╗ ██║    ██║   ███████╗ █████╗  
 ╚██╗ ██╔██║   ██║███╔╝      ██╔══╝ ██║╚██╗██║    ██║   ████╔══╝ ██╔══╝  
  ╚████╔╝╚██████╔███████╗    █████████║ ╚████║    ╚██████╔██║    ██║     
   ╚═══╝  ╚═════╝╚══════╝    ╚══════╚═╝  ╚═══╝     ╚═════╝╚═╝    ╚═╝  */

.vozEnOff,
.promocionales {
  text-align: center;
  color: var(--blanco);
}

.containerServicios {
  display: flex;
  overflow-x: scroll;
  padding: 24px;
  width: 100%;
  scroll-snap-type: x mandatory;
  scroll-padding: 24px;
  border-radius: 8px;
  gap: 12px;
}

.containerServicios .itemServicios {
  flex: 0 0 50%;
  padding: 24px;
  border-radius: 8px;
  scroll-snap-align: start;
  color: var(--blanco);

}

.vozenoff__item {
  position: relative;
  background-color: var(--fondobody);
  cursor: pointer;
}

.vozenoff__text {
  position: absolute;
  bottom: 0;
  color: white;
  background: linear-gradient(rgba(255, 255, 255, 0), black);
  width: 100%;
  margin: 0;
  padding: 1rem;
}

@media (min-width: 1120px) {
  .containerServicios {
    justify-content: center;
  }

}

/* 
██████╗ ███████╗███████╗ █████╗ ██████╗ ██████╗  ██████╗ ██╗     ██╗      ██████╗     ██╗    ██╗███████╗██████╗ 
██╔══██╗██╔════╝██╔════╝██╔══██╗██╔══██╗██╔══██╗██╔═══██╗██║     ██║     ██╔═══██╗    ██║    ██║██╔════╝██╔══██╗
██║  ██║█████╗  ███████╗███████║██████╔╝██████╔╝██║   ██║██║     ██║     ██║   ██║    ██║ █╗ ██║█████╗  ██████╔╝
██║  ██║██╔══╝  ╚════██║██╔══██║██╔══██╗██╔══██╗██║   ██║██║     ██║     ██║   ██║    ██║███╗██║██╔══╝  ██╔══██╗
██████╔╝███████╗███████║██║  ██║██║  ██║██║  ██║╚██████╔╝███████╗███████╗╚██████╔╝    ╚███╔███╔╝███████╗██████╔╝
╚═════╝ ╚══════╝╚══════╝╚═╝  ╚═╝╚═╝  ╚═╝╚═╝  ╚═╝ ╚═════╝ ╚══════╝╚══════╝ ╚═════╝      ╚══╝╚══╝ ╚══════╝╚═════╝  */

.desarrollo {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  padding: 2rem;
  grid-gap: 1rem;
}

.desarrollo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.desarrollo__item {
  position: relative;
}

.desarrollo2 {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-rows: 15rem;
  padding: 2rem;
  grid-gap: 1rem;
}

.desarrollo__text {
  position: absolute;
  bottom: 0;
  color: white;
  background: linear-gradient(rgba(255, 255, 255, 0), black);
  width: 100%;
  margin: 0;
  padding: 1rem;
}

.galeria__item:nth-child(1) {
  grid-column-start: span 1;
}

.galeria__item:nth-child(2) {
  grid-column-start: span 1;
}

.galeria__item:nth-child(3) {
  grid-column-start: span 1;
}

.galeria__item:nth-child(4) {
  grid-column-start: span 1;
}

@media (max-width: 1024px) {
  .desarrollo {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 740px) {
  .desarrollo {
    grid-template-columns: repeat(1, 1fr);

  }
}

@media (max-width: 400px) {

  .textoDesarrollo {
    font-size: 1rem !important;
  }

}

/* 
██████   ██████  ██████  ████████  █████  ███████  ██████  ██      ██  ██████  
██   ██ ██    ██ ██   ██    ██    ██   ██ ██      ██    ██ ██      ██ ██    ██ 
██████  ██    ██ ██████     ██    ███████ █████   ██    ██ ██      ██ ██    ██ 
██      ██    ██ ██   ██    ██    ██   ██ ██      ██    ██ ██      ██ ██    ██ 
██       ██████  ██   ██    ██    ██   ██ ██       ██████  ███████ ██  ██████  
                                                                               
                                                                               
███████  ██████  ███████ ████████ ██     ██  █████  ██████  ███████            
██      ██    ██ ██         ██    ██     ██ ██   ██ ██   ██ ██                 
███████ ██    ██ █████      ██    ██  █  ██ ███████ ██████  █████              
     ██ ██    ██ ██         ██    ██ ███ ██ ██   ██ ██   ██ ██                 
███████  ██████  ██         ██     ███ ███  ██   ██ ██   ██ ███████             */

.SoftPort {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-rows: 30rem;
  padding: 2rem;
  grid-gap: 1rem;
}

.SoftPort__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center center;
}

.SoftPort__item {
  position: relative;
}

.SoftPort__titulo {
  position: absolute;
  bottom: 0;
  color: white;
  background: linear-gradient(rgba(255, 255, 255, 0), black);
  width: 100%;
  margin: 0;
  padding: 1rem;
}

.SoftPort__item:nth-child(1) {
  grid-column-start: span 1;
}

.SoftPort__item:nth-child(2) {
  grid-column-start: span 1;
}

.SoftPort__item:nth-child(3) {
  grid-column-start: span 1;
}

.SoftPort__item:nth-child(4) {
  grid-column-start: span 1;
}

.SoftPort__item:nth-child(5) {
  grid-column-start: span 1;
}

.SoftPort__item:nth-child(6) {
  grid-column-start: span 1;
}

@media (min-width: 468px) {
  .SoftPort {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 20rem;
  }

  .SoftPort__item:nth-child(1) {
    grid-column-start: span 1;
  }

  .SoftPort__item:nth-child(2) {
    grid-column-start: span 1;
  }

  .SoftPort__item:nth-child(3) {
    grid-column-start: span 1;
  }

  .SoftPort__item:nth-child(4) {
    grid-column-start: span 1;
  }

  .SoftPort__item:nth-child(5) {
    grid-column-start: span 1;
  }

  .SoftPort__item:nth-child(6) {
    grid-column-start: span 1;
  }
}

@media (min-width: 768px) {
  .SoftPort {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 20rem;
  }

  .SoftPort__item:nth-child(1) {
    grid-column-start: span 1;
  }

  .SoftPort__item:nth-child(2) {
    grid-column-start: span 1;
  }

  .SoftPort__item:nth-child(3) {
    grid-column-start: span 1;
  }

  .SoftPort__item:nth-child(4) {
    grid-column-start: span 1;
  }

  .SoftPort__item:nth-child(5) {
    grid-column-start: span 1;
  }

  .SoftPort__item:nth-child(6) {
    grid-column-start: span 1;
  }
}

/* 
██████╗ ██████╗ ███╗   ██╗████████╗ █████╗  ██████╗████████╗ ██████╗ 
██╔════╝██╔═══██╗████╗  ██║╚══██╔══╝██╔══██╗██╔════╝╚══██╔══╝██╔═══██╗
██║     ██║   ██║██╔██╗ ██║   ██║   ███████║██║        ██║   ██║   ██║
██║     ██║   ██║██║╚██╗██║   ██║   ██╔══██║██║        ██║   ██║   ██║
╚██████╗╚██████╔╝██║ ╚████║   ██║   ██║  ██║╚██████╗   ██║   ╚██████╔╝
╚═════╝ ╚═════╝ ╚═╝  ╚═══╝   ╚═╝   ╚═╝  ╚═╝ ╚═════╝   ╚═╝    ╚═════╝ 

*/
.bkg {
  background-image: url(../img/contacto.jpg);
  height: 56rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.cont-contacto {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.form {
  font-size: 2rem;
  padding: 2rem;
  display: flex;
  justify-content: space-around;
}

.campo input[type="text"],
.campo input[type="tel"],
.campo input[type="email"],
.campo textarea {
  width: 100%;
  background-color: var(--fondobody0);
  color: #ffff;
  padding: 0.5rem;
  border: none;
  border-radius: 0.5rem;
}

.fieldset {
  display: flex;
  justify-content: center;
}

label {
  color: #ffff;
}

.boton-flex {
  height: 6rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.boton {
  height: 4rem;
  font-size: 2rem;
}

.btn {
  color: #ffff;
  font-size: 2rem;
  border: 0.1rem solid #77bcd3;
  border-radius: 1rem;
}

.btn:hover {
  background-color: var(--fondobody0);
  color: #ffff;
}

/*
███████╗██╗███████╗███╗   ██╗██████╗  █████╗ 
  ██╔══╝██║██╔════╝████╗  ██║██╔══██╗██╔══██╗
  ██║   ██║█████╗  ██╔██╗ ██║██║  ██║███████║
  ██║   ██║██╔══╝  ██║╚██╗██║██║  ██║██╔══██║ 
  ██║   ██║███████╗██║ ╚████║██████╔╝██║  ██║
  ╚═╝   ╚═╝╚══════╝╚═╝  ╚═══╝╚═════╝ ╚═╝  ╚═╝ */
.submenu {
  position: relative;
}

.submenu #carrito {
  display: none;
}

.submenu:hover #carrito {
  display: block;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 1;
  background-color: #000;
  padding: 20px;
  min-height: 400px;
  min-width: 300px;
}

#codigo {
  display: flex;
  justify-content: center;
}

.resultado {
  flex-direction: column;
}

.cont-tienda {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 50rem;
  padding: 2rem;
  grid-gap: 1rem;
}

.cardTienda {
  background-color: #000 !important;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tienda__img {
  max-width: 90%;
  max-height: 90%;
  object-fit: cover;
}

.tienda__item {
  position: relative;
}

.tienda__titulo {
  position: absolute;
  bottom: 0;
  color: white;
  background: linear-gradient(rgba(255, 255, 255, 0), black);
  width: 100%;
  margin: 0;
  padding: 1rem;
}

.tienda__item:nth-child(1) {
  grid-column-start: span 1;
}

.tienda__item:nth-child(2) {
  grid-column-start: span 1;
}

.tienda__item:nth-child(3) {
  grid-column-start: span 1;
}

.tienda__item:nth-child(4) {
  grid-column-start: span 1;
}

.tienda__item:nth-child(5) {
  grid-column-start: span 1;
}

.tienda__item:nth-child(6) {
  grid-column-start: span 1;
}

@media (max-width: 960px) {
  .cont-tienda {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 35rem;
  }
}

@media (max-width: 468px) {
  .cont-tienda {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 35rem;
  }
}

@media (min-width: 469px) and (max-width: 720px) {
  .cont-tienda {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 35rem;
  }
}

.ListaCarrito {
  color: #ffff;
}

.precio {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  text-align: center;
  font-size: 29px;
  color: #ffff;
}

.primario-btn {
  text-decoration: none;
  text-transform: uppercase;
  margin-top: 18px;
  font-size: 2rem;
}

.primario-btn:hover {
  background-color: #000;
  color: #ffff;
}