:root {
  --negro: #0000008a;
  --blanco: #fdfdf2;
  --rojo: #990000;
  --azul: #5614B0;
  --amarillo: #DBD65C;
  --background: #bfbfde;
  --gris: #524e6a;
}

/* Reseteo de estilos */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;

  /*for debugging
    outline: 2px solid limegreen !important;
    background-color: rgb(0 100 0 / 0.1) !important;
  */
}

html {
  scroll-behavior: smooth;
  font-family: "Roboto", sans-serif;
  font-size: 300;
  /*scroll-padding-top: 100px;*/ /* Para evitar que el navbar cubra el contenido al dar clic en una opcion del menu */
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Oswald", sans-serif;
  font-size: 700;
  line-height: 1.5;
}

a,
p {
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/* Contenedor general */
.container {
  max-width: 1600px;
  margin: auto;
}

/* Columnas del mismo ancho */
.split-columns {
  display: flex;
  flex-direction: column;
}

@media (min-width: 40em) {

  /* 40em = 640px */
  .split-columns {
      flex-direction: row;
  }

  .split-columns>* {
      flex-basis: 100%;
  }
}


/* Menu de opciones y móvil */
nav {
  /* position: absolute;
  top: 0;
  left: 0; */

  position: relative;
  background-color: var(--azul);

  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding-top: 2rem; */
  z-index: 9;
}

.nav-links {
  display: flex;
  align-items: center;
}
.nav-links a {
  position: relative;
  color: var(--blanco);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: bold;
  transition: color 0.5s ease;
  margin: 0 2rem;
}
.nav-links li a::before {
  content: "";
  position: absolute;
  background: var(--azul);
  width: 0%;
  height: 1px;
  bottom: -10px;
  left: 0;
  transition: 0.3s ease;
}
.nav-links li a:hover::before {
  width: 100%;
}

.logo img {
  max-height: 80px;
  padding-left: 4rem;
}

.nav-detalle {
  background-color: var(--background);
  padding: 2rem 0;
}


.mobile-menu {
  position: absolute;
  right: 1rem;
  top: 1rem;
  cursor: pointer;
  display: none;
  z-index: 99;
}

.mobile-menu div {
  width: 25px;
  height: 3px;
  background-color: var(--blanco);
  margin: 5px;
  transition: all 0.5s ease;
}

@media (max-width: 1024px) {
  .nav-links {
    width: 65%;
  }
}

@media (max-width: 768px) {

  nav {
    padding: 1.5rem 1rem;
  }

  .nav-links {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    min-height: 100vh;
    background-color: var(--azul);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    transform: translateX(-100%);
    transition: transform 0.5s ease-in-out;
    z-index: 98;
  }

  .nav-links li {
    opacity: 1;
  }

  .nav-links a {
    color: var(--blanco);
  }

  .purchase-links {
    margin-top: 62px;
  }

  .purchase-links ul li {
    padding: 0;
    margin: 0;
  }
}

.nav-active {
  transform: translateX(0%);
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
  opacity: 0;
}
.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* dropdown para busqueda */
.dropdown-search {
  position: relative;
}
.dropdown-menu-search {
  position: absolute;
  right: 0;
  top: calc(100% + 0.25rem);
  background-color: #fff;
  padding: 0.75rem;
  border-radius: 0.25rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all 0.6s ease;
}
.search-active {
  opacity: 1;
}

/* dropdown para ususario */
.dropdown-user {
  position: relative;
}
.dropdown-menu-user {
  position: absolute;
  left: calc(0% + 2.5rem);
  top: calc(100% + 0.25rem);
  background-color: #fff;
  padding: 0.75rem;
  border-radius: 0.25rem;
  box-shadow: 5px 5px 8px 0 rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all 0.6s ease;
}
.login-active {
  opacity: 1;
}

/* dropdown para bolsa */
.dropdown-bag {
  position: relative;
}
.dropdown-menu-bag {
  position: absolute;
  right: 0;
  top: calc(100% + 0.25rem);
  min-width: 150px;
  background-color: #fff;
  padding: 0.75rem;
  border-radius: 0.25rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all 0.6s ease;
}
.bag-active {
  opacity: 1;
}

.dropdown-menu-user input {
  padding: 0.75em 1rem;
  margin: 0.5rem 0;
}
.dropdown-menu-search input {
  position: relative;
  padding: 0.75em 2.5rem 0.75rem 1rem;
  margin: 0.5rem 0;
}

.dropdown-menu-search .input-search-btn {
  color: var(--rojo);
  position: absolute;
  right: -2.5rem;
  top: 2rem;
}

.dropdown-menu-search .input-search-btn:hover {
  color: var(--gray);
}

.dropdown-menu-search button,
.dropdown-menu-user button {
  width: 100%;
  padding: 0.5rem;
  border: none;
  background-color: var(--azul);
  color: var(--blanco);
  text-transform: uppercase;
  cursor: pointer;
}

.login-footer {
  margin-top: 1rem;
  padding: 0.5rem 0;
  background-color: #e6e6e6;
}
.login-footer button {
  background-color: transparent;
  color: var(--rojo);
  font-size: 10px;
  margin: 0;
}
.login-footer button:hover {
  color: var(--gray);
}

@media (max-width: 768px) {
  .dropdown-menu-user {
    left: 0;
  }

  .dropdown-menu-search {
    left: 3rem;
    right: -4rem;
    width: 90%;
  }

  .dropdown-menu-search input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 0.75rem;
  }
  .dropdown-menu-search .input-search-btn {
    right: -2rem;
  }
}


/*
    Hero video
*/
header {
  position: relative;
  min-height: 100vh;
  /* -webkit-clip-path: polygon(0 0%, 100% 0%, 100% 90%, 0% 100%);
  clip-path: polygon(0 0%, 100% 0%, 100% 90%, 0% 100%); */
}

.hero {
  /* 
  overflow-x: hidden;
  display: flex;
  justify-content: space-between;
  */
  background: #5614B0;
  background: linear-gradient(180deg, rgba(86, 20, 176, 1) 50%, rgba(255, 255, 255, 1) 50%);
}

/* .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
} */

.hero-video {
  padding: 4rem;
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid var(--background);
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.3);
}

.overlay-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  background-color: rgba(19, 56, 108, .5);
  z-index: -1;
}

.hero-info {
  /* position: absolute;
  top: 0;
  left: 0; */
  /* background-color: rgb(191, 191, 222, 0.3); */
  /* width: 55vw; */
  /* width: 50%; */
  /* background: rgb(255,255,255); */
  /* background: linear-gradient(90deg, rgba(255,255,255,1) 35%, rgba(0,0,0,1) 100%); */
  min-height: 100vh;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* -webkit-clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%); */
  /* box-shadow: -16px 0 20px rgba(0, 0, 0, 0.6) inset; */
}
.hero-info h1, .hero-info h2 {
  /* padding: 4rem 2rem 0 0; */
  padding: 0 2rem;
  font-size: clamp(3em, 1em + 4vw, 4.5em);
  line-height: 1.2;
  text-transform: uppercase;
  text-align: right;
  text-shadow: 8px 8px 12px rgb(0, 0, 0, 0.8);
  /* Shimmer Text Effect */
  color: rgba(255,255,255,0.4);
  background: -webkit-gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff));
  background: -moz-gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff));
  background: gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff));
  -webkit-background-size: 125px 100%;
  -moz-background-size: 125px 100%;
  background-size: 125px 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-animation-name: shimmer;
  -moz-animation-name: shimmer;
  animation-name: shimmer;
  -webkit-animation-duration: 8s;
  -moz-animation-duration: 8s;
  animation-duration: 8s;
  -webkit-animation-iteration-count: 3; /* infinite */
  -moz-animation-iteration-count: 3;
  animation-iteration-count: 3;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-color: #222;
}
.hero-info h2 {
  font-size: clamp(2em, 1em + 3vw, 3.5em);
  padding: 0rem 2rem 0 0;
}

.hero-info>p {
  color: var(--azul);
  font-size: clamp(2em, 1em + 3vw, 3.5em);
  font-size: 1.2em;
  font-weight: bolder;
  padding: 2rem;
  text-align: justify;
}

@-moz-keyframes shimmer {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}
@-webkit-keyframes shimmer {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}
@-o-keyframes shimmer {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}
@keyframes shimmer {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}

.hero-info p {
  /* color: var(--blanco);
  font-size: 1.4em;
  font-weight: bolder;
  padding: 2rem 1rem 2rem 2.5rem;
  */
}

.btn-azul {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 2em;
  background: var(--azul);
  background: -webkit-linear-gradient(to right, var(--amarillo), var(--azul));
  background: linear-gradient(to right, var(--amarillo), var(--azul));
  -webkit-clip-path: polygon(0 10%, 100% 0, 95% 100%, 5% 99%);
  clip-path: polygon(0 10%, 100% 0, 95% 100%, 5% 99%);
  padding: .5rem 2.5rem;
  border: 8px solid #ccc;
  transition: all .4s ease;
}
.btn-azul:hover {
  border: 8px solid #ddd;
}

.media-icons {
  position: absolute;
  right: 6rem;
  top: 45vh;
 display: flex;
  flex-direction: column;
  align-items: center;
} 
.media-icons a img {
  margin-bottom: 1.5rem;
  transition: 0.3s ease;
}
.media-icons a img:hover {
  transform: scale(1.3);
  filter: grayscale(80%);
}


.email-div {
  background: repeating-linear-gradient( 135deg, #4fa8ed, #4fa8ed 10px, #fff 10px, #fff 20px, #f84d3b 20px, #f84d3b 30px, #fff 30px, #fff 40px );
  padding: 1rem;
}


section {
  padding: 5rem 1rem;
}

section h2 {
  font-size: 2.2em;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  padding-bottom: 2rem;
}

.familia-equipo {
  color: var(--azul);
  background-color: var(--background);
  font-size: 2em;
  text-transform: uppercase;
  letter-spacing: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

.background-header-title {
  -webkit-clip-path: polygon(0 40%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0 40%, 100% 0%, 100% 100%, 0% 100%);
  background-color: var(--background);
  min-height:200px;
  position: relative;
}


/* Nosotros */
#nosotros {
  color: var(--blanco);
  /*background-image: linear-gradient(rgba(86, 20, 176, 0.6),rgba(86, 20, 176, 0.9)),*/
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.9),rgba(86, 20, 176, 0.7)),
  url(../images/nosotros-hero.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;

  padding: 6rem 2rem;
  -webkit-clip-path: polygon(0 10%, 100% 0%, 100% 90%, 0% 100%);
  clip-path: polygon(0 10%, 100% 0%, 100% 90%, 0% 100%);
  overflow: hidden;
}

#nosotros p {
  font-size: 1.4em;
  line-height: 1.5;
  padding-bottom: 1rem;
}
.nosotros-izq {
  padding: 4rem;
}

.nosotros h2 {
  font-size: 1.8em;
}

.nosotros-der {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nosotros-der .big-cog {
  position: absolute;
  text-align: center;
  animation: rota-der 20s linear infinite;
  z-index: -1;
}
.nosotros-der .inner-logo {
  position: absolute;
  text-align: center;
}
.nosotros-der .small-cog {
  position: absolute;
  top: -2rem;
  right: 2rem;
  z-index: 2;
  animation: rota-izq 5s linear infinite;
}

@keyframes rota-der {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes rota-izq {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-359deg);
  }
}


/* Contacto */
#contacto {
  position: relative;
  color: var(--blanco);
  padding: 6rem 2rem 2rem 2rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0.95),rgba(0, 0, 0, 0.95)), url(../images/hero.jpg);
  background-position: center;
  background-size: cover;
  -webkit-clip-path: polygon(0 20%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0 20%, 100% 0%, 100% 100%, 0% 100%);
}

.contacto {
  padding: 0 4rem;
}
.contacto h3 {
  text-transform: uppercase;
  letter-spacing: 4px;
  text-align: center;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  position: relative;
}

.contacto h3::after {
  content: '';
  width: 50%;
  height: 3px;
  background-color: var(--blanco);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(50%);
}

.contacto ul li a {
  color: var(--blanco);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-bottom: 2rem;
}
.contacto ul li a:hover {
  color: var(--background);
}

.contacto ul li a img {
  padding-right: 1rem;
  max-width: 40px;
}

.redes-sociales {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.horario p {
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
}
.horario img {
  padding-right: 1rem;
}

.ti-conmigo {
  color: #fff;
  background-color: #000000;
  padding: 1rem 0;
}


/* 
        Pagina de articulos
*/

/* galeria de productos */
#catalogo {
  margin: 0;
}
.main-catalog {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  gap: 2rem;
}

.catalogo-content {
  /* background-color: var(--background); */
  background-color: rgba(0, 0, 0, 0.9);
  display: grid;
  grid-template-columns: 15% 85%;
}
.columna-cotizador {
  position: relative;
}
.filtrar-equipos {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  padding: 1rem;
}
.filtrar-equipos > h3 {
  color: var(--blanco);
  letter-spacing: 1px;
  text-align: center;
}
.catalogo {
  padding: 0 1rem;
  margin: 0;
  background-image: url("data:image/svg+xml,<svg id='patternId' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='a' patternUnits='userSpaceOnUse' width='60' height='60' patternTransform='scale(2) rotate(0)'><rect x='0' y='0' width='100%' height='100%' fill='hsla(240, 32%, 81%, 1)'/><path d='M29.998 26.65v6.693zm-6.837 3.347h3.488zm10.185 0h3.489zm0 0a3.349 3.346 0 01-3.348 3.346 3.349 3.346 0 01-3.349-3.346 3.349 3.346 0 013.349-3.346 3.349 3.346 0 013.348 3.346zm-3.173-6.832c-1.978-.032-3.976.786-5.29 2.287-1.986 2.163-2.275 5.629-.727 8.113 1.45 2.442 4.522 3.736 7.287 3.116 3.067-.607 5.45-3.561 5.392-6.684.045-2.643-1.642-5.173-4.042-6.245a6.489 6.489 0 00-2.62-.587zM59.995 52.87v14.25zm-14.557 7.125h7.428zm21.687 0h7.427zm0 0a7.13 7.124 0 01-7.13 7.124 7.13 7.124 0 01-7.13-7.124 7.13 7.124 0 017.13-7.125 7.13 7.124 0 017.13 7.125zm-6.757-14.547c-4.212-.069-8.465 1.673-11.262 4.869-4.23 4.606-4.845 11.985-1.55 17.274 3.09 5.2 9.628 7.954 15.517 6.635 6.53-1.292 11.604-7.583 11.48-14.231.096-5.628-3.495-11.014-8.606-13.298-1.757-.813-3.665-1.217-5.58-1.249zM-.005 52.87v14.25zm-14.557 7.125h7.428zm21.687 0h7.427zm0 0a7.13 7.124 0 01-7.13 7.124 7.13 7.124 0 01-7.13-7.124 7.13 7.124 0 017.13-7.125 7.13 7.124 0 017.13 7.125zM.368 45.447c-4.212-.069-8.465 1.673-11.262 4.869-4.23 4.606-4.845 11.985-1.55 17.274 3.09 5.2 9.628 7.954 15.517 6.635 6.53-1.292 11.604-7.583 11.48-14.231.096-5.628-3.495-11.014-8.606-13.298-1.757-.813-3.665-1.217-5.58-1.249zM59.995-7.13V7.12zM45.438-.006h7.428zm21.687 0h7.427zm0 0a7.13 7.124 0 01-7.13 7.124 7.13 7.124 0 01-7.13-7.124 7.13 7.124 0 017.13-7.125 7.13 7.124 0 017.13 7.125zm-6.757-14.547c-4.212-.069-8.465 1.673-11.262 4.869C44.876-5.078 44.26 2.3 47.556 7.59c3.09 5.2 9.628 7.954 15.517 6.635 6.53-1.292 11.604-7.583 11.48-14.231.096-5.628-3.495-11.014-8.606-13.298-1.757-.813-3.665-1.217-5.58-1.249zM-.005-7.13V7.12zM-14.562-.006h7.428zm21.687 0h7.427zm0 0a7.13 7.124 0 01-7.13 7.124 7.13 7.124 0 01-7.13-7.124 7.13 7.124 0 017.13-7.125 7.13 7.124 0 017.13 7.125zM.368-14.553c-4.212-.069-8.465 1.673-11.262 4.869-4.23 4.606-4.845 11.985-1.55 17.274 3.09 5.2 9.628 7.954 15.517 6.635 6.53-1.292 11.604-7.583 11.48-14.231.096-5.628-3.495-11.014-8.606-13.298-1.757-.813-3.665-1.217-5.58-1.249z'  stroke-width='1' stroke='hsla(249, 15%, 36%, 0.1)' fill='none'/></pattern></defs><rect width='800%' height='800%' transform='translate(0,0)' fill='url(%23a)'/></svg>");
}

.opciones-filtro {
  padding-bottom: 1rem;
}
.cotizador {
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid var(--gris);
  border-radius: 6px;
  background-color: var(--blanco);
}
.cotizador h3 {
  font-size: 1.1em;
  display: flex;
  align-items: center;
}
.cotizador h3 img {
  padding-right: .5rem;
}
.cotizador h3, .cotizador ul {
  margin-bottom: 1rem;
}

.cotizador img {
  max-width: 50px;
  max-height: 50px;
  display: inline-block;
}
.cotizador p {
  font-size: .8em;
}
.quitar-item {
  color: var(--rojo);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.opciones-filtro>button {
  color: var(--azul);
  border: 4px solid var(--background);
  margin-top: 1rem;
  padding: .5em .75em;
  width: 100%;
  cursor: pointer;
}

.filtrar-equipos select {
  margin-top: 1rem;
  margin-right: 1rem;
  padding: .5em .75em;
  color: var(--azul);
  /* color: var(--blanco);
  background: var(--azul);
  background: -webkit-linear-gradient(to right, var(--azul), var(--amarillo));
  background: linear-gradient(to right, var(--azul), var(--amarillo)); */
  border: 4px solid var(--background);
  width: 100%;
}

.filtrar-equipos input, .filtrar-equipos textarea {
  margin-top: 1rem;
  padding: .5em .75em;
  width: 100%;
  resize: none;
}

/* Input para busqueda de articulos */
.top-search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: relative;
}

.top-search-bar img {
  display: inline-block;
  margin-left: -1rem;
  margin-right: 1rem;
}

.top-search-bar input {
  position: relative;
  outline: none;
  color: var(--color-blanco);
  height: 2.2rem;
  padding: 0 2.5rem 0 .5rem;
}

.top-search-bar input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--azul);
  opacity: 1; /* Firefox */
}
.top-search-bar input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--azul);
}
.top-search-bar input::-ms-input-placeholder { /* Microsoft Edge */
  color: var(--azul);
}

.btn-search {
  position: absolute;
  bottom: .1rem;
  right: -.8rem;
  outline: none;
  border: none;
  background-color: transparent;

}
/* .btn-search img {
  background-color: var(--background);
  border-radius: 50%;
} */
.btn-search img:hover {
  background-color: #e6e6e6;
  border-radius: 50%;
  cursor: pointer;
}

.btn-solicita-coti {
  color: var(--blanco);
  background-color: var(--azul);
  font-size: .7em;
  text-transform: uppercase;
  border: none;
  outline: none;
  width: 100%;
  padding: .75rem 0;
  margin-top: 1rem;
  cursor: pointer;
  box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.3);
}

#form-cotizacion, .btn-enviando {
  display: none;
}
#form-cotizacion p {
  font-size: 1em;
  color: var(--azul);
}


.gracias {
  display: none;
}
.gracias p {
  font-size: 1em;
  color: var(--azul);
}


.muestra-equipos {
  padding: 2rem 0;
  display: grid;
  gap: .8rem;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.muestra-equipos > p {
  color: var(--blanco);
}
.border-card {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: .5rem;
  transition: box-shadow .3s ease;
}
.border-card:hover {
  box-shadow: rgba(255, 255, 255, 0.25) 0px 54px 55px, rgba(255, 255, 255, 0.12) 0px -12px 30px, rgba(255, 255, 255, 0.12) 0px 4px 6px, rgba(255, 255, 255, 0.17) 0px 12px 13px, rgba(255, 255, 255, 0.09) 0px -3px 5px;
}
.card {
  position: relative;
  background-color: var(--blanco);
}

.card-img {
  background-color: var(--blanco);
  display: flex;
  align-items: center;
  height: 300px;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}

.card-titulo {
  padding: 1rem;
  min-height: 144.5px;
}
.card-btn {
  width: 100%;
  min-height: 2rem;
  text-align: center;
  padding: 0 1rem 1rem 1rem;
  /* display: grid;
  align-items: center;
  grid-template-columns: .9fr 1.1fr;
  gap: 10px; */
}
.card-btn a img {
  height: 18px;
  width: 18px;
}
.btn-cotizar {
  color: var(--blanco);
  font-size: 1em;
  background: var(--azul);
  background: -webkit-linear-gradient(to right, var(--amarillo), var(--azul));
  background: linear-gradient(to right, var(--amarillo), var(--azul));
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  border-radius: 1px;
  border: none;
  width: 100%;
  padding: 5px 10px;
  letter-spacing: 2px;
  transition: all .5s ease;
}

.btn-cotizar:hover,
.btn-ver-mas:hover {
  box-shadow: 3px 4px 6px rgba(0, 0, 0, 0.3);
}

.btn-ver-mas {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border-radius: 100%;
  border : 1px solid #000;
  background-color: var(--blanco);
  padding: 5px;
  cursor: pointer;
  transition: all .5s ease;
}

.error {
  color: var(--rojo);
  display: none;
}

/*
  Página de detalle de equipos
*/
#detalle {
  padding: 2rem;
}

.detalle-content {
  display: grid;
  grid-template-columns: 40% 60%;
}

.imagen-detalle {
  display: flex;
  justify-content: center;
  padding: 2rem;
  border: 1px solid var(--azul);
  overflow: hidden;
}

.imagen-detalle img {
  max-height: 350px;
  transition: all .8s ease-in-out;
}
.imagen-detalle img:hover {
  scale: 2;
}

.thumbnails {
  display: flex;
  flex-direction: row;
}
.thumbnails img {
  padding-top: 1rem;
  padding-right: 1rem;
  max-width: 100px;
  max-height: 100px;
  cursor: pointer;
}

#mainvideo {
  display: none;
}

.detalle-left {
  position: relative;  
}
.detalle-right {
  position: relative;
  padding: 2rem;
}
.detalle-right > h3 {
  padding-bottom: 1rem;
}

.btn-detalle-cotiza {
  display: flex;
  justify-content: center;
  color: var(--blanco);
  background: var(--azul);
  background: -webkit-linear-gradient(to right, var(--amarillo), var(--azul));
  background: linear-gradient(to right, var(--amarillo), var(--azul));
  text-transform: uppercase;
  letter-spacing: 3px;
  border: none;
  outline: none;
  width: 50%;
  padding: .75rem 0;
  margin: 1rem 0;
  cursor: pointer;
  box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.3);
}

.btn-detalle-cotizado {
  text-align: center;
  color: var(--blanco);
  background-color: var(--azul);
  text-transform: uppercase;
  letter-spacing: 3px;
  border: none;
  outline: none;
  width: 50%;
  padding: .75rem 0;
  margin: 1rem 0;
  cursor: not-allowed;
  box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.3);
  display: none;
}


/* Divide el contenido en columnas iguales */
.split-columns {
  display: flex;
  flex-direction: column;
}
@media (min-width: 40em) {
  /* 40em = 640px */
  .split-columns {
    flex-direction: row;
  }
  .split-columns > * {
    flex-basis: 100%;
  }
}


/* Para centrar texto o div */
.centrado {
  display: flex;
  justify-content: center;
  align-items: center;
}


/*
  Botón flotante de WhatsApp
*/
.btn-whatsapp {
  position: fixed;
  bottom: 4rem;
  right: 4rem;
  background-color: #0df053;
  border-radius: 50px;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.5);
  z-index: 10;
  transition: background-color 0.3s ease;
}
.btn-whatsapp:hover {
  background-color: #0ac244;
}
.necesitas-ayuda {
  color: var(--negro);
  position: fixed;
  bottom: 2.5rem;
  right: 2rem;
  font-size: 0.7em;
  text-shadow: 2px 0 #ffffff50, -2px 0 #ffffff50, 0 2px #ffffff50,
    0 -2px #ffffff50, 1px 1px #ffffff50, -1px -1px #ffffff50, 1px -1px #ffffff50,
    -1px 1px #ffffff50;
  z-index: 10;
}

.btn-whatsapp::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #b6fbcc;
  border-radius: 50px;
  opacity: 0.7;
}
.btn-whatsapp::before {
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}


/*
    Adapatación a dispositivos móviles
*/

@media (max-width: 768px) {
  .mobile-menu {
    display: block;
  }

  /* .hero-info {
    width: 80%;
  }
  .hero-info h1 {
    padding: 4rem 0 0 1rem;
  } */

  .hero-info h2 {
    padding: 0 0 0 1rem;
  }

  .hero-info p {
    font-size: 1.2em;
    padding: 1rem 0.5rem;
    line-height: 1.1;
  }

  .cotizador {
    padding: 1rem 0;
  }

  .card-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .muestra-equipos {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .catalogo-content {
    grid-template-columns: 45% 55%;
  }


  /* .banner-content h1 {
    width: 90%;
    font-size: 2em;
  }

  .banner-content p {
    font-weight: 400;
    letter-spacing: 2px;
    text-align: center;
  } */
  
  .articulos {
    padding: 0;
    grid-template-columns: 1fr;
  }

  #nosotros {
    margin-top: 0;
    padding: 6rem 1rem;
  }

  #nosotros p {
    font-size: 1.2em;
  }

  .nosotros-izq {
    padding: 1rem;
  }

  .nosotros h2 {
    font-size: 1.8em;
  }
  
  .nosotros-der  {
    display: none;
  }

  #razones {
    margin: 0;
    padding: 1rem 0;
  }

  #razones .split-columns {
    flex-direction: row;
  }

  #razones h2 {
    font-size: 1.1em;
  }

  .razones svg {
    width: 75px;
    height: 75px;
  }

  .texto-sociales {
    margin: 0;
    padding: 2rem 0;
  }

  .tipos-pago {
    width: 100%;
  }

  .tabla-de-medidas {
    padding: 1rem;
  }

  .categoria-content {
    margin-bottom: 2rem;
  }
  .categoria-text {
    padding: 1rem;
  }

  .media-icons {
    right: 1rem;
  }

  .galeria {
    padding: 2rem 0;
  }

  .galeria-content {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  #detalle {
    padding: 2rem 1rem;
    width: 100vw;
  }
  .detalle-content {
    position: relative;

    display: grid;
    grid-template-columns: 1fr;
    overflow-x: hidden;
  }

  .detalle-left {
    width: 92vw;
  }
  .imagen-detalle {
    padding: .5rem;
  }

  .thumbnails img {
    max-height: 100px;
    max-width: 60px;
  }  
    
  .familia-equipo {
    font-size: 1.5em;
    letter-spacing: 2px;
  }
  .background-header-title {
    -webkit-clip-path: polygon(0 20%, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0 20%, 100% 0%, 100% 100%, 0% 100%);
    background-color: var(--background);
    min-height:200px;
    position: relative;
  }

  #contacto {
    -webkit-clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 100%);
    padding: 6rem 0rem 1rem 0rem;    
  }

  .contacto {
    padding: 0 1rem;
  }

  .text-contacto img {
    padding: 0 1rem 2rem 0;
  }

  .text-contacto p {
    font-size: 0.9em;
  }

  .text-contacto p {
    padding: 0;
  }

  .text-contacto > p {
    padding-bottom: 1rem;
  }

  .redes-sociales {
    padding-bottom: 2rem;
  }

  .btn-whatsapp {
    bottom: 1rem;
    right: 1rem;
  }
  .btn-whatsapp img {
    width: 36px;
  }
  .necesitas-ayuda {
    right: 0;
    bottom: 0;
  }

  #modalDetalle {
    max-width: 100vw;
    top: 100px;
    left: 2%;
    transform: translate(-2%, -50px);
  }
}

/*
  Letras Transparentes
*/
.texto-transparente svg {
	position: absolute;
	left: 50%;
	top: 0;
	width: 50%;
	height: 100%;
}

.texto-transparente svg .mask {
	fill: #5614B0;
}

.texto-transparente svg .mask-text {
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-size: 12em;
}