/* Utilidades */
@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

* {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
  background: radial-gradient(circle, rgb(18, 6, 28) 0%, rgb(10, 10, 10) 100%);
  color: #fff;
}
body h1, body h2 {
  font-size: 50px;
}

a {
  text-decoration: none;
}

ul, li {
  list-style: none;
}

.invisible {
  display: none;
}

.oculto {
  visibility: hidden;
  opacity: 0;
}

.bg-blur {
  backdrop-filter: blur(10px);
  box-shadow: 2px 2px 4px #000;
  transition: 0.3s;
}

.btn-animado {
  position: relative;
  background: #fff;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.5em;
  letter-spacing: 0.1em;
  font-weight: 400;
  padding: 18px 30px;
  transition: 0.5s;
  cursor: pointer;
  margin-top: 80px;
  border: none;
  outline: none;
}
.btn-animado:hover {
  background: #c6b626;
  color: #c6b626;
  letter-spacing: 0.2em;
  box-shadow: 0 0 35px #c6b626;
}
.btn-animado:before {
  content: "";
  position: absolute;
  inset: 2px;
  background: #1e1e1e;
}
.btn-animado span {
  position: relative;
  z-index: 1;
}
.btn-animado i {
  position: absolute;
  inset: 0;
  display: block;
}
.btn-animado i::before {
  content: "";
  position: absolute;
  top: 0;
  left: 80%;
  width: 10px;
  height: 4px;
  background: #27282c;
  transform: translateX(-50%) skewX(325deg);
  transition: 0.5s;
}
.btn-animado:hover i::before {
  width: 20px;
  left: 20%;
}
.btn-animado i::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 10px;
  height: 4px;
  background: #27282c;
  transform: translateX(-50%) skewX(325deg);
  transition: 0.5s;
}
.btn-animado:hover i::after {
  width: 20px;
  left: 80%;
}

.bloquear {
  overflow-y: hidden;
}

/* From Uiverse.io by ArturCodeCraft */
/* <reset-style> ============================ */
.enlace-underline {
  text-decoration: none;
}

/* <main-style> ============================ */
.menu__link {
  color: #fff;
  line-height: 2;
  position: relative;
  transition: 0.3s;
}
.menu__link:hover {
  color: #c6b626;
}

.menu__link::before {
  content: "";
  width: 0;
  height: 2px;
  border-radius: 2px;
  background-color: #c6b626;
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  transition: width 0.4s, left 0.4s;
}

.menu__link:hover::before {
  width: 100%;
  left: 0;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-column {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.rotar-arrow {
  transform: rotate(-180deg);
}

.filtro-general {
  color: #fff;
  border: 1px solid #fff;
}

.filtro-elegido {
  color: #c6b626;
  border: 1px solid #c6b626;
}

.container-titulo h1 {
  color: #fff;
  font-size: 80px;
  letter-spacing: 4px;
  line-height: 110px;
  text-transform: uppercase;
  position: relative;
  text-shadow: -5px 5px 5px #000;
}
.container-titulo h1::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  color: #c6b626;
  overflow: hidden;
  animation: textanim 6s linear infinite;
  white-space: nowrap;
}
@keyframes textanim {
  0%, 30%, 100% {
    width: 0;
  }
  70%, 90% {
    width: 100%;
  }
}

/** Media Queries **/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Plantillas */
/** Media Queries **/
:root {
  --color: #ffffff;
  --velocity: 0.3s;
}

/* contexto */
.wrapper {
  width: 35px;
  height: 35px;
  display: flex;
  filter: drop-shadow(-2px 2px 2px #000);
}
.wrapper .centered {
  margin: auto;
}

/* burguer */
.button-burguer {
  position: relative;
  width: 35px;
  height: 35px;
  cursor: pointer;
  transition: all var(--velocity) ease-in-out;
}
.button-burguer .line {
  position: absolute;
  background-color: var(--color);
  height: 15%;
  border-radius: 20px;
  width: 100%;
  transition: all var(--velocity) ease-in-out;
}
.button-burguer .line:nth-child(1) {
  top: 12.5%;
}
.button-burguer .line:nth-child(2) {
  top: 42.5%;
}
.button-burguer .line:nth-child(3) {
  top: 70.5%;
}
.button-burguer.open {
  transform: rotate(-180deg);
}
.button-burguer.open .line:nth-child(1) {
  transform: rotate(25deg) translate(15%, 10%);
}
.button-burguer.open .line:nth-child(2) {
  transform: rotate(90deg) translate(0%, 180%) scale(-0.9);
}
.button-burguer.open .line:nth-child(3) {
  transform: rotate(-25deg) translate(15%, -10%);
}

@media (max-width: 500px) {
  .button-burguer {
    left: 20px;
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 501px) and (max-width: 1024px) {
  .button-burguer {
    left: 20px;
    width: 30px;
    height: 30px;
  }
}
/** Media Queries **/
.nav-vertical {
  background-color: #0f0e10;
  border-top: 1px solid #c6b626;
  border-right: 1px solid #c6b626;
  width: 280px;
  position: absolute;
  top: -10px;
  left: 0;
  bottom: 0;
  margin-top: 59px;
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  position: fixed;
  z-index: 199;
}
.nav-vertical .enlaces-responsive {
  border-top: 1px solid rgb(91, 91, 91);
  margin-top: 50px;
  width: 100%;
  height: 200px;
  display: none;
}
.nav-vertical .enlaces-v {
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
}
.nav-vertical .enlaces-v li {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.nav-vertical .enlace-v {
  line-height: 1;
  font-weight: 600;
  color: #fff;
  text-shadow: 2px 2px 2px #000;
  font-size: 17px;
  padding: 5px 10px;
  width: 100%;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: end;
}
.nav-vertical .enlace-v:hover {
  background-color: #606060;
}
.nav-vertical ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 35px;
  margin-top: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.desplegar {
  transform: translate(-100%);
}

.icono-enlace {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 10px 0px 10px 30px;
  gap: 10px;
  cursor: pointer;
  transition: 0.3s;
}

@media (max-width: 1500px) {
  .nav-vertical {
    top: -5px;
  }
}
@media (min-width: 501px) and (max-width: 1024px) {
  .nav-vertical {
    top: -30px;
    overflow-y: scroll;
    width: 400px;
  }
  .nav-vertical .enlaces-responsive {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
  }
  .nav-vertical .enlaces-responsive .enlaces-v {
    padding: 0 0 40px 10px;
  }
}
@media (max-width: 500px) {
  .nav-vertical {
    top: -30px;
    overflow-y: scroll;
    width: 100%;
  }
  .nav-vertical .enlaces-responsive {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
  }
  .nav-vertical .enlaces-responsive .enlaces-v {
    padding: 0 0 40px 10px;
  }
}
/* Layout */
/** Media Queries **/
#inicio {
  scroll-margin-top: 100px;
}

.barra-bg {
  background-color: #0f0e10;
  box-shadow: 0px 1px 4px 1px #c6b626;
  z-index: 200;
  position: fixed;
  width: 100%;
  top: 0;
}
.barra-bg .barra {
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  max-width: 1700px;
  padding: 10px 0;
  margin: auto;
}
.barra-bg .barra .navegacion-horizontal ul {
  gap: 25px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
}

.hero-index {
  margin: 100px auto 0 auto;
  height: 700px;
  width: 100%;
}

.animacion-index {
  width: 1600px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 250px;
}

.titulo-index {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.titulo-index h1 {
  padding-bottom: 120px;
}
.titulo-index h1::before {
  white-space: normal;
}

.iconos-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  position: absolute;
  bottom: 60px;
  left: 0;
}
.iconos-hero .icono-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.iconos-hero .icono-hero svg {
  border-radius: 100%;
  padding: 10px;
  background: radial-gradient(circle, #2b2338 0%, rgb(28, 19, 43) 100%);
  box-shadow: -4px 4px 4px #000;
  width: 70px;
  height: 70px;
}
.iconos-hero .icono-hero h3 {
  font-size: 20px;
  letter-spacing: 2px;
  background: radial-gradient(circle, #2b2338 0%, rgb(28, 19, 43) 100%);
  text-transform: uppercase;
  padding: 5px 30px;
  border-radius: 8px;
  box-shadow: -4px 4px 4px #000;
  text-shadow: -2px 2px 2px #000;
  text-align: center;
}

.telefonos-index {
  border: 1px solid transparent;
  width: 600px;
  height: 600px;
}
.telefonos-index img {
  width: 600px;
  height: 100%;
}

#phone-i1 {
  z-index: 1;
  position: relative;
}

#phone-i2 {
  position: absolute;
  bottom: 20px;
  animation: aparecer-i 2s forwards;
  height: 560px;
}

#phone-i3 {
  position: absolute;
  bottom: 20px;
  animation: aparecer-d 2s forwards;
  height: 560px;
}

@keyframes aparecer-i {
  0% {
    bottom: 20px;
  }
  100% {
    bottom: 80px;
    transform: rotate(-30deg) translateX(-120px);
  }
}
@keyframes aparecer-d {
  0% {
    bottom: 20px;
  }
  100% {
    bottom: 80px;
    transform: rotate(30deg) translateX(120px);
  }
}
@media (max-width: 1500px) {
  .hero-index {
    margin: -40px auto;
    width: 900px;
  }
  .animacion-index {
    width: 900px;
    gap: 0;
  }
  .barra-bg .barra {
    max-width: 1100px;
    gap: 50px;
  }
  .titulo-index {
    margin-top: 100px;
  }
  .titulo-index h1 {
    font-size: 60px;
    line-height: 70px;
  }
  .telefonos-index {
    transform: scale(0.7) !important;
    width: 500px;
  }
  .iconos-hero {
    width: 1000px;
    margin: 0 auto;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: -50px;
  }
  .iconos-hero .icono-hero {
    gap: 10px;
    bottom: 0;
  }
}
@media (max-width: 500px) {
  .hero-index {
    margin: -40px auto;
    width: 100%;
  }
  .animacion-index {
    width: 100%;
    gap: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .barra-bg .barra {
    max-width: 500px;
    padding: 4px;
    box-shadow: 0px 1px 4px 1px #c6b626;
  }
  .barra-bg .barra .navegacion-horizontal {
    display: none;
  }
  .titulo-index {
    flex-direction: column;
    position: absolute;
    top: 0;
  }
  .titulo-index h1 {
    padding-bottom: 0;
    font-size: 45px;
    line-height: 60px;
  }
  .iconos-hero {
    display: grid;
    width: 350px;
    height: 200px;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
    position: absolute;
    top: 550px;
    left: -10px;
    transform: scale(0.75) !important;
  }
  .iconos-hero .icono-hero {
    gap: 10px;
    bottom: 0;
  }
  .iconos-hero .icono-hero svg {
    width: 60px;
    height: 60px;
  }
  .iconos-hero .icono-hero h3 {
    font-size: 20px;
  }
  .telefonos-index {
    transform: scale(0.55) !important;
    position: absolute;
    top: 140px;
    width: 600px;
    margin: 0 auto;
  }
  .telefonos-index img {
    width: 600px;
    height: 100%;
  }
  .titulo-seccion {
    width: 350px;
    font-size: 40px;
    text-align: center;
  }
}
@media (min-width: 501px) and (max-width: 1024px) {
  .hero-index {
    margin: -40px auto;
    width: 100%;
  }
  .animacion-index {
    width: 100%;
    gap: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .barra-bg .barra {
    padding: 4px;
    box-shadow: 0px 1px 4px 1px #c6b626;
  }
  .barra-bg .barra .navegacion-horizontal {
    display: none;
  }
  .titulo-index {
    flex-direction: column;
    position: absolute;
    top: 0;
  }
  .titulo-index h1 {
    padding-bottom: 0;
    font-size: 45px;
    line-height: 60px;
  }
  .iconos-hero {
    display: grid;
    width: 350px;
    height: 200px;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
    position: absolute;
    top: 550px;
    left: -10px;
    transform: scale(0.75) !important;
  }
  .iconos-hero .icono-hero {
    gap: 10px;
    bottom: 0;
  }
  .iconos-hero .icono-hero svg {
    width: 60px;
    height: 60px;
  }
  .iconos-hero .icono-hero h3 {
    font-size: 20px;
  }
  .telefonos-index {
    transform: scale(0.55) !important;
    position: absolute;
    top: 140px;
    width: 600px;
    margin: 0 auto;
  }
  .telefonos-index img {
    width: 600px;
    height: 100%;
  }
  .titulo-seccion {
    width: 350px;
    font-size: 40px;
    text-align: center;
  }
}
/** Media Queries **/
.terminales {
  color: #fff;
  margin-top: 200px;
  transform: scale(0.9);
  scroll-margin-top: 100px;
}
.terminales h1 {
  letter-spacing: 3px;
}

.terminales-container {
  gap: 160px;
  width: 100%;
  margin-top: 100px;
  grid-template-columns: 1fr;
}
.terminales-container .card {
  width: 250px;
  height: 355px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 2500px;
  cursor: pointer;
  border-radius: 30px;
}
.terminales-container .card .wrapper-img {
  padding: 0 18px;
  transition: all 0.5s;
  position: absolute;
  width: 300px;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle, #2b2338 0%, rgb(21, 10, 40) 100%);
  border-radius: 30px;
  border: 1px solid #41354b;
}
.terminales-container .card .wrapper-img .img-base {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.terminales-container .card .wrapper-img img {
  border-radius: 30px;
}
.terminales-container .card:hover .wrapper-img {
  transform: perspective(900px) translateY(-5%) rotateX(25deg) translateZ(0);
  box-shadow: 2px 35px 32px -8px rgba(0, 0, 0, 0.75);
}
.terminales-container .wrapper-img::before,
.terminales-container .wrapper-img::after {
  content: "";
  opacity: 0;
  width: 100%;
  height: 80px;
  transition: all 0.5s;
  border-radius: 30px;
  position: absolute;
  left: 0;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}
.terminales-container .wrapper-img::before {
  top: 0;
  height: 100%;
  background-image: linear-gradient(to top, transparent 46%, rgba(12, 13, 19, 0.5) 68%, rgb(12, 13, 19) 97%);
}
.terminales-container .wrapper-img::after {
  bottom: 0;
  opacity: 1;
  background-image: linear-gradient(to bottom, transparent 46%, rgba(12, 13, 19, 0.5) 68%, rgb(12, 13, 19) 97%);
}
.terminales-container .card:hover .wrapper-img::before,
.terminales-container .wrapper-img::after {
  opacity: 1;
}
.terminales-container .card:hover .wrapper-img::after {
  height: 120px;
}
.terminales-container .card:hover .img-base {
  opacity: 0.3;
}
.terminales-container .img-3d {
  width: 100%;
  opacity: 0;
  transition: all 0.5s;
  filter: drop-shadow(2px 2px 2px #000);
  position: absolute;
  z-index: -1;
}
.terminales-container .samsung {
  width: 300px;
  height: 250px;
}
.terminales-container .card:hover .img-3d {
  opacity: 1;
  transform: translate3d(1%, -15%, 670px);
}

.terminal h3 {
  font-size: 25px;
  margin: 35px auto;
  text-align: center;
  width: 250px;
  line-height: 40px;
  letter-spacing: 2px;
  text-shadow: -4px 4px 4px #000;
  text-transform: uppercase;
}

.btn-terminales {
  text-align: center;
}

@media (max-width: 1500px) {
  .terminales {
    margin-top: 150px;
  }
  .terminales-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
  }
  .btn-terminales {
    font-size: 20px;
  }
}
@media (min-width: 501px) and (max-width: 1024px) {
  .terminales {
    margin-top: 250px;
  }
}
@media (max-width: 500px) {
  .terminales {
    margin-top: 200px;
  }
  .terminales-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .btn-terminales {
    font-size: 20px;
  }
}
/** Media Queries **/
#servicios {
  margin-top: 200px;
  width: 100%;
  scroll-margin-top: 250px;
}

.servicios-container {
  margin-top: 80px;
  gap: 50px;
  transform: scale(0.9);
  width: 100%;
}
.servicios-container .servicio {
  border: 1px solid #41354b;
  padding: 30px;
  border-radius: 8px;
  transition: 0.5s;
}
.servicios-container .servicio:hover {
  box-shadow: 0px 0px 50px 15px #2b2338;
}
.servicios-container .servicio .servicio-card {
  gap: 50px;
  background: radial-gradient(circle, #2b2338 0%, rgb(28, 19, 43) 100%);
  padding: 70px 50px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px 4px #000000;
}
.servicios-container .servicio .servicio-card svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(-4px 4px 4px #000);
}
.servicios-container .servicio .servicio-card h3 {
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  filter: drop-shadow(-4px 4px 4px #000);
  width: 250px;
  text-align: center;
}

.btn-servicio {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  border: 1px solid #c6b626;
  padding: 18px 20px;
  background-color: #171717;
  position: relative;
  overflow: hidden;
  width: 200px;
  height: 20px;
  text-align: center;
  transition: 0.3s;
}
.btn-servicio:hover {
  background-color: #301546;
  box-shadow: 0px 0px 5px 2px rgb(198, 182, 38);
}
.btn-servicio:hover .slide-abajo {
  transform: translateY(100px);
}
.btn-servicio:hover .slide-derecha {
  transform: translateX(-1px);
}
.btn-servicio span {
  display: inline-block;
  position: absolute;
  inset: 0;
  text-align: center;
  top: 7px;
  transition: 0.5s;
}
.btn-servicio .slide-derecha {
  transform: translateX(-300px);
}

.fade-effect {
  gap: 50px;
}

@media (max-width: 1500px) {
  #servicios {
    scroll-margin-top: 80px;
  }
  .servicios-container {
    flex-direction: column;
    margin-top: 20px;
  }
}
@media (max-width: 500px) {
  #servicios {
    margin-top: 80px;
    scroll-margin-bottom: -150px;
  }
  .servicios-container {
    flex-direction: column;
    margin-top: -90px;
  }
  .servicios-grupo {
    flex-direction: column;
  }
  .servicio {
    transform: scale(0.8);
  }
}
@media (min-width: 501px) and (max-width: 1024px) {
  .servicio {
    transform: scale(0.8);
  }
  .servicios-grupo {
    gap: 10px;
  }
}
/** Media Queries **/
.clientes {
  gap: 120px;
  margin-top: 300px;
  transform: scale(0.9);
}
.clientes a {
  margin-top: 0;
}
.clientes .clientes-container {
  gap: 50px;
}
.clientes .clientes-container .cliente {
  border: 1px solid #c6b626;
  transition: 1s;
  width: 480px;
  height: 120px;
}
.clientes .clientes-container .cliente:hover {
  transform: scale(1.1);
}
.clientes .clientes-container .cliente img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1500px) {
  .clientes h1 {
    margin-bottom: 0;
  }
  .clientes-container {
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  .clientes {
    margin-top: 80px;
  }
  .clientes h1 {
    margin-bottom: 0;
  }
  .clientes .clientes-container {
    flex-direction: column;
  }
  .clientes .clientes-container .cliente {
    width: 350px;
    height: 90px;
  }
}
@media (min-width: 501px) and (max-width: 1024px) {
  .clientes {
    margin-top: 80px;
  }
  .clientes h1 {
    margin-bottom: 0;
  }
  .clientes .clientes-container {
    flex-direction: column;
  }
  .clientes .clientes-container .cliente {
    width: 400px;
    height: 90px;
  }
}
/** Media Queries **/
#horario {
  margin: 300px auto;
  width: 800px;
  text-transform: uppercase;
  border: 1px solid #5f4883;
  letter-spacing: 2px;
  border-radius: 8px;
  transition: 0.3s;
  background: radial-gradient(circle, #271d36 0%, rgb(26, 14, 43) 100%);
  text-shadow: -2px 2px 2px #000;
  scroll-margin-top: 220px;
}
#horario:hover {
  box-shadow: 0px 0px 20px 10px #2b2338;
}
#horario h1 {
  border: 1px solid white;
  width: 100%;
  text-align: center;
  margin: 0;
  background-color: #492485;
  border: 1px solid #5f4883;
  border-radius: 8px 8px 0 0;
}

.state {
  border-bottom: 1px solid #5f4883;
  width: 100%;
  padding: 20px 0;
  gap: 30px;
  margin-top: 30px;
}
.state .estado-container {
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 450px;
  margin: 0 auto;
  border-bottom: 1px solid #fff;
}
.state .estado-container .estado-color {
  display: block;
  filter: drop-shadow(-4px 4px 4px #000);
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.state p {
  font-size: 35px;
  gap: 30px;
}
.state .fecha {
  gap: 180px;
}

.horario-info-container {
  margin-top: 20px;
  width: 100%;
  padding: 20px;
  gap: 50px;
}
.horario-info-container .horario-info {
  width: 100%;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  border-bottom: 1px solid white;
  padding-bottom: 30px;
}
.horario-info-container .horario-info:last-child {
  border: none;
}
.horario-info-container .horario-info h3 {
  font-size: 30px;
}
.horario-info-container .horario-info p {
  font-size: 25px;
}
.horario-info-container .horario-info .horario-info-horas {
  width: 100%;
  gap: 20px;
}
.horario-info-container .horario-info .horario-info-horas .horario-info-turno {
  width: 100%;
  gap: 20px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  place-items: start end;
}

@media (max-width: 1500px) {
  #horario {
    scroll-margin-top: 130px;
  }
}
@media (max-width: 500px) {
  #horario {
    width: 350px;
    margin-top: 200px;
    transform: scale(0.8);
  }
  .state {
    width: 100%;
  }
  .state .estado-container {
    width: 100%;
    padding-bottom: 10px;
  }
  .state p {
    font-size: 25px;
    gap: 30px;
  }
  .state .fecha {
    gap: 70px;
  }
  .horario-info-container {
    margin-top: 20px;
    width: 100%;
    padding: 10px;
    gap: 20px;
  }
  .horario-info-container .horario-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid white;
    padding-bottom: 30px;
    gap: 50px;
  }
  .horario-info-container .horario-info:last-child {
    border: none;
  }
  .horario-info-container .horario-info h3 {
    font-size: 30px;
    margin-top: 18px;
  }
  .horario-info-container .horario-info p {
    font-size: 22px;
  }
  .horario-info-container .horario-info .horario-info-horas {
    width: 100%;
    gap: 50px;
  }
  .horario-info-container .horario-info .horario-info-horas .horario-info-turno {
    width: 100%;
    gap: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 501px) and (max-width: 1024px) {
  #horario {
    transform: scale(0.8);
    margin-top: 200px;
  }
}
/** Media Queries **/
#contacto {
  margin: 300px auto 0 auto;
  width: 800px;
  height: 900px;
  scroll-margin-top: -50px;
}
#contacto h1 {
  margin-bottom: 100px;
}

.contacto-container {
  border: 1px solid #41354b;
  border-radius: 8px;
  transition: 0.5s;
  transform: scale(0.85);
}
.contacto-container:hover {
  box-shadow: 0px 0px 20px 10px #2b2338;
}

.datos-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background: radial-gradient(circle, #2b2338 0%, rgb(28, 19, 43) 100%);
}
.datos-container .datos-contacto {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.datos-container .datos-contacto h2 {
  margin: 0;
  text-align: center;
  width: 100%;
  background-color: #492485;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px;
  text-shadow: -1.5px 1.5px 4px #000;
  border-bottom: 1px solid #5f4883;
  border-radius: 0 4px 0 0;
}
.datos-container .datos-contacto .dato-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  width: 530px;
  margin: auto;
  gap: 30px;
}
.datos-container .datos-contacto .dato-container .dato {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  width: 100%;
  border-bottom: 1px solid white;
  padding-bottom: 10px;
}
.datos-container .datos-contacto .dato-container .dato svg {
  width: 35px;
  height: 35px;
}
.datos-container .datos-contacto .dato-container .dato p {
  font-size: 20px;
  letter-spacing: 2px;
}
.datos-container .datos-contacto .dato-container .dato a .icono-anim {
  top: 0;
  left: 0;
  transform: translateY(-100px);
}
.datos-container .datos-contacto .dato-container .dato a:hover .icono-anim {
  transform: translateX(2%) rotate(1080deg);
}

.formulario-container {
  border-right: 1px solid #41354b;
  padding: 60px;
  background: radial-gradient(circle, #2b2338 0%, rgb(28, 19, 43) 100%);
}
.formulario-container form {
  gap: 60px;
}
.formulario-container form .input-container {
  width: 500px;
  position: relative;
}
.formulario-container form .input-container input {
  color: #fff;
  width: 100%;
  padding: 10px;
  font-size: 20px;
  outline: none;
  background: #111111;
  border-radius: 8px;
  border: 2px solid #c6b626;
  transition: 0.3s;
}
.formulario-container form .input-container input:focus {
  box-shadow: 0px 0px 10px 8px #2b2338;
}
.formulario-container form .input-container input:focus ~ label, .formulario-container form .input-container input:valid ~ label {
  transform: translateY(-40px) rotate(-360deg);
  text-shadow: -2px 2px 2px #000;
}
.formulario-container form .input-container input:focus ~ label span, .formulario-container form .input-container input:valid ~ label span {
  opacity: 1;
  visibility: visible;
}
.formulario-container form .input-container label {
  position: absolute;
  font-size: 20px;
  left: 10px;
  transition: 0.3s;
}
.formulario-container form .input-container label span {
  color: red;
  opacity: 0;
  visibility: hidden;
  font-size: 25px;
  transition: 0.3s;
}
.formulario-container form .input-container svg {
  position: absolute;
  right: 10px;
}
.formulario-container form .textarea {
  position: relative;
  width: 500px;
  font-size: 20px;
}
.formulario-container form .textarea label {
  position: absolute;
  font-size: 20px;
  left: 10px;
  top: 10px;
  transition: 0.3s;
}
.formulario-container form .textarea textarea {
  color: #fff;
  width: 100%;
  padding: 10px;
  font-size: 20px;
  outline: none;
  background: #111111;
  border-radius: 8px;
  border: 2px solid #c6b626;
  transition: 0.3s;
  height: 300px;
  resize: none;
}
.formulario-container form .textarea textarea:focus {
  box-shadow: 0px 0px 10px 8px #2b2338;
}
.formulario-container form .textarea:focus-within label, .formulario-container form .textarea textarea:not(:placeholder-shown) + label {
  transform: translateY(-40px) rotate(-360deg);
  text-shadow: -2px 2px 2px #000;
}
.formulario-container form .submit-container {
  width: 500px;
}
.formulario-container form .submit-container input {
  width: 100%;
  padding: 15px 0;
  font-size: 25px;
  font-weight: bold;
  background-color: #492485;
  color: #fff;
  cursor: pointer;
  margin-top: -100px;
  transition: 0.3s;
  border-radius: 8px;
  border: none;
  box-shadow: -2px 2px 4px #000;
  letter-spacing: 2px;
}
.formulario-container form .submit-container input:hover {
  background-color: #5f4883;
}

.maps {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.maps iframe {
  height: 350px;
}
.maps a {
  font-size: 22px;
  color: #000;
  text-transform: uppercase;
  padding: 30px 0;
  width: 100%;
  text-align: center;
  background-color: #d0a31d;
  border-top: 2px solid #2b2338;
  font-weight: bold;
  letter-spacing: 2px;
  transition: 0.3s;
  border-radius: 0 0 4px 0;
}
.maps a:hover {
  background-color: #ceac46;
  letter-spacing: 4px;
}

.dato-tel {
  display: flex;
  flex-direction: column;
}
.dato-tel .dato-tel__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.btn-chat:hover {
  background-color: #1f9e25;
}

@media (max-width: 1500px) {
  #contacto {
    scroll-margin-top: -100px;
  }
  #contacto h1 {
    margin-bottom: -20px;
  }
  .contacto-container {
    transform: scale(0.75);
  }
}
@media (max-width: 500px) {
  #contacto {
    margin-top: -150px;
    margin-bottom: -300px;
    width: 350px;
    height: auto;
    scroll-margin-top: -50px;
    transform: scale(1);
  }
  #contacto h1 {
    margin-bottom: -250px;
  }
  .contacto-container {
    flex-direction: column;
    width: 100%;
    gap: 50px;
    border: none;
  }
  .formulario-container {
    width: 350px;
    border-radius: 8px;
    order: 2;
  }
  .formulario-container form {
    gap: 60px;
  }
  .formulario-container form .input-container {
    width: 320px;
  }
  .formulario-container form .textarea {
    position: relative;
    width: 320px;
    font-size: 20px;
    scroll-margin-top: 300px;
  }
  .formulario-container form .submit-container {
    width: 320px;
  }
  .datos-container {
    height: 100%;
    width: 100%;
    order: 1;
  }
  .datos-container .datos-contacto {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .datos-container .datos-contacto h2 {
    margin: 0;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid #5f4883;
    border-top: 1px solid #5f4883;
    border-radius: 8px 8px 0 0;
  }
  .datos-container .datos-contacto .dato-container {
    width: 100%;
  }
  .datos-container .datos-contacto .dato-container .dato {
    flex-direction: column;
    width: 100%;
    padding-bottom: 20px;
  }
  .datos-container .datos-contacto .dato-container .dato:first-child {
    margin-top: 20px;
  }
  .datos-container .datos-contacto .dato-container .dato p {
    text-align: center;
  }
  .dato-tel .dato-tel__btn {
    flex-direction: column;
    gap: 30px;
  }
  .maps iframe {
    width: 100%;
    padding-top: 50px;
  }
  .maps a {
    border-radius: 0 0 4px 4px;
  }
}
@media (min-width: 501px) and (max-width: 1024px) {
  #contacto {
    transform: scale(0.8);
    width: 600px;
  }
}
/** Media Queries **/
.footer-index {
  background-color: #0f0e10;
  margin-top: 300px;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.footer-index .footer-container {
  max-width: 1800px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  transform: scale(0.9);
}
.footer-index .footer-container .fb1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.footer-index .footer-container .fb1 img {
  width: 40px;
}
.footer-index .footer-container .fb1 svg {
  width: 30px;
  height: 30px;
  padding: 5px 5px 0 5px;
  background-color: #004c9d;
  border-radius: 100%;
}
.footer-index .footer-container .fb2 p {
  font-size: 18px;
  letter-spacing: 2px;
  text-align: center;
}
.footer-index .footer-container .fb2 .politicas-links {
  margin-top: 30px;
  gap: 50px;
}
.footer-index .footer-container .fb2 .politicas-links a {
  color: #fff;
  text-decoration: underline;
  font-size: 16px;
}
.footer-index .footer-container .fb3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.footer-index .footer-container .fb3 p {
  font-size: 18px;
  letter-spacing: 2px;
  text-align: center;
}
.footer-index .footer-container .fb3 a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}
.footer-index .footer-container .fb3 a svg {
  filter: invert(100%);
}

@media (max-width: 500px) {
  .footer-index .footer-container {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 50px;
  }
  .footer-index .footer-container .fb1 {
    flex-direction: row;
    order: 3;
  }
  .footer-index .footer-container .fb2 {
    order: 1;
  }
  .footer-index .footer-container .fb2 .politicas-links {
    margin-top: 10px;
  }
  .footer-index .footer-container .fb3 {
    order: 2;
  }
}
@media (min-width: 501px) and (max-width: 1024px) {
  .footer-index .footer-container {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 50px;
  }
  .footer-index .footer-container .fb1 {
    flex-direction: row;
    order: 3;
  }
  .footer-index .footer-container .fb2 {
    order: 1;
  }
  .footer-index .footer-container .fb2 .politicas-links {
    margin-top: 10px;
  }
  .footer-index .footer-container .fb3 {
    order: 2;
  }
}
/** Media Queries **/
.cookie-banner {
  background: transparent;
  border-top: 1px solid #fff;
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 98;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 0;
  font-size: 20px;
  gap: 20px;
  transition: 0.1s;
}
.cookie-banner .botones-cookies {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.cookie-banner .botones-cookies button, .cookie-banner .botones-cookies a {
  padding: 5px 8px;
  font-weight: 600;
  border: 1px solid #280e59;
  color: #000;
  background-color: #fff;
  cursor: pointer;
  border-radius: 4px;
}

.cookie-banner.deslizar-abajo {
  transform: translateY(100%) !important;
}

@media (max-width: 500px) {
  .cookie-banner {
    padding: 30px 10px;
    font-size: 18px;
    line-height: 20px;
  }
  .cookie-banner .botones-cookies {
    gap: 30px;
    text-align: center;
  }
}
/* Internas */
/** Media Queries **/
.grid-modelo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: start center;
  gap: 120px;
}

.telefonos {
  text-transform: uppercase;
  margin-top: 300px;
  gap: 350px;
  width: 100%;
  scroll-margin-top: 80px;
  overflow-y: hidden;
  overflow-x: hidden;
}

.hero-telefonos {
  font-size: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding-top: 100px;
}
.hero-telefonos .container-titulo-tel h1 {
  color: #fff;
  font-size: 80px;
  letter-spacing: 4px;
  line-height: 110px;
  text-transform: uppercase;
  position: relative;
  text-shadow: -5px 5px 5px #000;
}

.catalogo-btn-container .btn-catalogo {
  width: 500px;
  font-size: 30px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 60px;
  border-radius: 8px;
}
.catalogo-btn-container .btn-catalogo:hover {
  background-color: #0fbd1d;
}
.catalogo-btn-container .btn-catalogo span {
  top: 12px;
}
.catalogo-btn-container .btn-catalogo .logo-whatsapp {
  top: 4px;
}
.catalogo-btn-container .btn-catalogo:hover .logo-whatsapp {
  transform: translateX(3px) rotate(1080deg);
}

.hero-telefono {
  width: 400px;
  height: 600px;
}

.scroll-nav-tel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}

.down-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: -80px auto;
  width: 100px;
}
.down-section svg {
  width: 80px;
  height: 80px;
  transition: 0.3s;
}

.seccion-tf h1 {
  font-size: 60px;
}

.modelo {
  letter-spacing: 2px;
  border: 1px solid #41354b;
  border-radius: 8px;
  width: 700px;
  margin-top: 100px;
  background: radial-gradient(circle, #2b2338 0%, rgb(28, 19, 43) 100%);
  transition: 0.5s;
}
.modelo:hover {
  box-shadow: 0px 0px 50px 15px #2b2338;
}
.modelo img {
  width: 350px;
  height: 350px;
  padding: 20px;
  filter: drop-shadow(-4px 4px 4px #000);
}
.modelo .modelo__desc {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  width: 100%;
  text-shadow: -2px 2px 2px #000;
}
.modelo .modelo__desc h2 {
  font-size: 35px;
}
.modelo .modelo__desc h3 {
  font-size: 28px;
}
.modelo .modelo__desc button:last-child {
  margin-top: 30px;
  transform: scale(0.9);
}
.modelo .modelo__desc .info-tel-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  padding: 8px 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  gap: 5px;
  margin-top: 20px;
  cursor: pointer;
  border: 1px solid #c6b626;
  background-color: #131313;
  color: #fff;
  transition: 0.3s;
  border-radius: 4px;
  transition: 0.3s;
}
.modelo .modelo__desc .info-tel-btn svg {
  transition: 0.3s;
}
.modelo .modelo__desc .info-tel-btn:hover {
  background-color: #15082d;
}

table, tr, td {
  margin-top: 30px;
  border-top: none;
  border-bottom: none;
  border-collapse: collapse;
  text-align: center;
  padding: 10px;
}

tr {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid #41354b;
}
tr:last-child {
  border-bottom: none;
}

td {
  font-size: 20px;
  padding: 20px;
}
td:first-child {
  border-right: 2px solid #41354b;
  font-weight: bold;
  width: 50%;
}
td:last-child {
  border-bottom: none;
}

.mem-select-td {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 0;
  gap: 10px;
}
.mem-select-td select {
  background-color: #15082d;
  border: 1px solid #c6b626;
  color: white;
  text-align: center;
  text-transform: uppercase;
  padding: 5px;
  outline: none;
  cursor: pointer;
}

#sga25 {
  width: 450px;
  height: 350px;
}

#sga16 {
  width: 300px;
  height: 350px;
}

#mb-700 {
  width: 200px;
  height: 350px;
}

.filtro-telefonos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
}
.filtro-telefonos a, .filtro-telefonos #mostrar-todo {
  padding: 10px 20px;
  border-radius: 4px;
  transition: 0.3s;
}
.filtro-telefonos a:hover, .filtro-telefonos #mostrar-todo:hover {
  box-shadow: 0px 0px 5px 2px #c6b626;
}

#mostrar-todo {
  color: #fff;
  border: 1px solid #fff;
}

.interes-contacto {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.interes-contacto .interes-contacto__container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  width: 100%;
  text-align: end;
}
.interes-contacto .interes-contacto__container p {
  width: 300px;
  font-size: 18px;
}
.interes-contacto .interes-contacto__container .btn-chat-interes {
  padding: 0 50px;
  border: 1px solid #c6b626;
  background-color: #131313;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.interes-contacto .interes-contacto__container .btn-chat-interes:hover {
  background-color: #280e59;
  transform: scale(1.1);
}
.interes-contacto .interes-contacto__container .btn-whatsapp:hover {
  background-color: #1f9e25;
}

.solicitar-info {
  margin-top: 50px;
  gap: 10px;
}
.solicitar-info p {
  font-size: 23px;
  font-weight: 600;
}

#xiaomi, #samsung, #tcl, #basicos {
  scroll-margin-top: 170px;
}

@media (max-width: 1500px) {
  .hero-telefonos {
    margin-top: -50px;
    transform: scale(0.8);
  }
  .down-section {
    margin-top: -220px;
  }
  .down-section svg {
    width: 60px;
    height: 60px;
  }
  .filtro-telefonos {
    gap: 10px;
    font-size: 11px;
  }
  .filtro-telefonos a, .filtro-telefonos #mostrar-todo {
    padding: 11px 8px;
    font-size: 10px;
    border-radius: 4px;
    transition: 0.3s;
  }
  .grid-modelo {
    transform: scale(0.8);
    margin-top: -120px;
  }
  .telefonos {
    gap: 100px;
  }
}
@media (max-width: 500px) {
  .telefonos {
    gap: 200px;
  }
  .filtro-telefonos {
    display: none;
  }
  .hero-telefonos {
    font-size: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding-top: 100px;
    text-align: center;
    transform: scale(1);
    margin-top: 0;
  }
  .hero-telefonos img {
    display: none;
  }
  .hero-telefonos .container-titulo-tel {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .hero-telefonos .container-titulo-tel h1 {
    color: #fff;
    font-size: 50px;
    margin: 0;
    letter-spacing: 4px;
    line-height: 110px;
    text-transform: uppercase;
    position: relative;
    text-shadow: -5px 5px 5px #000;
  }
  .catalogo-btn-container {
    position: absolute;
    top: 280px;
  }
  .catalogo-btn-container .btn-catalogo {
    width: 320px;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 60px;
    border-radius: 8px;
  }
  .catalogo-btn-container .btn-catalogo:hover {
    background-color: #0fbd1d;
  }
  .catalogo-btn-container .btn-catalogo span {
    top: 18px;
  }
  .catalogo-btn-container .btn-catalogo .logo-whatsapp {
    top: 4px;
  }
  .catalogo-btn-container .btn-catalogo:hover .logo-whatsapp {
    transform: translateX(3px) rotate(1080deg);
  }
  .down-section {
    margin-top: 220px;
  }
  .down-section svg {
    width: 80px;
    height: 80px;
  }
  .grid-modelo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 120px;
    transform: scale(1);
    margin-top: 0;
  }
  .modelo {
    width: 350px;
    margin-top: 100px;
    overflow: hidden;
    transform: scale(0.9);
  }
  .modelo .modelo__desc {
    gap: 10px;
    width: 100%;
    text-shadow: -2px 2px 2px #000;
  }
  .modelo .modelo__desc h2 {
    font-size: 25px;
  }
  .modelo .modelo__desc h3 {
    font-size: 18px;
  }
  .modelo .modelo__desc button:last-child {
    margin-top: 30px;
    transform: scale(0.9);
  }
  .modelo table, .modelo tr, .modelo td {
    margin-top: 30px;
  }
  .modelo td {
    font-size: 18px;
    text-align: center;
  }
  .interes-contacto {
    margin-top: 20px;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  .interes-contacto .interes-contacto__container {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    text-align: center;
  }
  .interes-contacto .interes-contacto__container p {
    width: 320px;
    font-size: 18px;
  }
  .solicitar-info {
    margin-top: 50px;
    gap: 10px;
    text-align: center;
  }
  .solicitar-info p {
    font-size: 20px;
    font-weight: 600;
  }
  .mem-select-td {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 0;
    gap: 10px;
  }
  .mem-select-td select {
    background-color: #15082d;
    border: 1px solid #c6b626;
    color: white;
    text-align: center;
    width: 150px;
    text-transform: uppercase;
    padding: 5px 2px;
    outline: none;
    cursor: pointer;
    font-size: 15px;
  }
}
@media (min-width: 501px) and (max-width: 1024px) {
  .telefonos {
    gap: 200px;
  }
  .hero-telefonos {
    font-size: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding-top: 100px;
    text-align: center;
    transform: scale(0.8);
    margin-top: 0;
  }
  .hero-telefonos .container-titulo-tel {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .hero-telefonos .container-titulo-tel h1 {
    color: #fff;
    font-size: 50px;
    margin: 0;
    letter-spacing: 4px;
    line-height: 110px;
    text-transform: uppercase;
    position: relative;
    text-shadow: -5px 5px 5px #000;
  }
  .catalogo-btn-container {
    position: absolute;
    top: 280px;
  }
  .catalogo-btn-container .btn-catalogo {
    width: 320px;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 60px;
    border-radius: 8px;
  }
  .catalogo-btn-container .btn-catalogo:hover {
    background-color: #0fbd1d;
  }
  .catalogo-btn-container .btn-catalogo span {
    top: 18px;
  }
  .catalogo-btn-container .btn-catalogo .logo-whatsapp {
    top: 4px;
  }
  .catalogo-btn-container .btn-catalogo:hover .logo-whatsapp {
    transform: translateX(3px) rotate(1080deg);
  }
  .down-section {
    margin-top: -80;
  }
  .down-section svg {
    width: 80px;
    height: 80px;
  }
  .grid-modelo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 120px;
    transform: scale(1);
    margin-top: 0;
    margin-bottom: 80px;
  }
  .modelo {
    width: 600px;
    margin-top: 100px;
    overflow: hidden;
    transform: scale(0.9);
  }
  .modelo .modelo__desc {
    gap: 10px;
    width: 100%;
    text-shadow: -2px 2px 2px #000;
  }
  .modelo .modelo__desc h2 {
    font-size: 25px;
  }
  .modelo .modelo__desc h3 {
    font-size: 18px;
  }
  .modelo .modelo__desc button:last-child {
    margin-top: 30px;
    transform: scale(0.9);
  }
  .modelo table, .modelo tr, .modelo td {
    margin-top: 30px;
  }
  .modelo td {
    font-size: 18px;
    text-align: center;
  }
  .interes-contacto {
    margin-top: 20px;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  .interes-contacto .interes-contacto__container {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    text-align: center;
  }
  .interes-contacto .interes-contacto__container p {
    width: 320px;
    font-size: 18px;
  }
  .solicitar-info {
    margin-top: 50px;
    gap: 10px;
    text-align: center;
  }
  .solicitar-info p {
    font-size: 20px;
    font-weight: 600;
  }
  .mem-select-td {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 0;
    gap: 10px;
  }
  .mem-select-td select {
    background-color: #15082d;
    border: 1px solid #c6b626;
    color: white;
    text-align: center;
    width: 150px;
    text-transform: uppercase;
    padding: 5px 2px;
    outline: none;
    cursor: pointer;
    font-size: 15px;
  }
}
/** Media Queries **/
.hero-fibra {
  margin-top: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.hero-fibra-animacion {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 50px;
}
.hero-fibra-animacion svg {
  transform: translateY(-50px);
}

.cable-titulo {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}
.cable-titulo .titulo-fibra h1 {
  margin-top: -130px;
}

.cable-fibra {
  width: 400px;
  height: 40px;
  border-radius: 8px;
  background-color: black;
  border: 3px solid #fff;
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  margin-top: -10px;
}
.cable-fibra .luz {
  position: absolute;
  background-color: #c6b626;
  inset: 0;
  animation: cargando 0.5s ease-in;
}

@keyframes cargando {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.fibra-icon {
  filter: drop-shadow(5px 5px 10px #c6b626);
  transition: 0.5s;
}

#main-fibra {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  gap: 50px;
}

#main-fibra h2 {
  text-align: center;
}

#main-fibra p {
  font-size: 25px;
  line-height: 35px;
}

#main-fibra a {
  background-color: #7e3dff;
  color: #ffffff;
  padding: 0 4px;
  border-radius: 4px;
  cursor: pointer;
  transition: .3s;
  border: 2px solid #fff;
}


@media (max-width: 500px) { 
  .hero-fibra {
  margin-top: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.hero-fibra-animacion {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  gap: 50px;
}
.hero-fibra-animacion svg {
  transform: translateY(-50px);
}

.cable-titulo {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}
.cable-titulo .titulo-fibra h1 {
  margin-top: -130px;
  font-size: 40px;
}

.cable-fibra {
  width: 300px;
  height: 40px;
  border-radius: 8px;
  background-color: black;
  border: 3px solid #fff;
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  margin-top: -10px;
}
.cable-fibra .luz {
  position: absolute;
  background-color: #c6b626;
  inset: 0;
  animation: cargando 0.5s ease-in;
}

  #main-fibra {
    margin-top: 80px;
  }

  #main-fibra h2 {
    font-size: 35px;
  }

  #main-fibra p {
  font-size: 20px;
  line-height: 30px;
  width: 300px;
}

#main-fibra img {
  width: 300px;
  height: 200px;
}

}


.hero-energia {
  margin: 100px auto;
  width: 50%;
  height: 300px;
}

.energia-animacion {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.energia-animacion .lampara {
  order: 2;
}
.energia-animacion .lampara svg {
  transition: 0.3s;
  position: relative;
  z-index: 4;
}
.energia-animacion .lampara .cuerda {
  width: 10px;
  height: 60px;
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  position: absolute;
  top: 150px;
  left: 200px;
  transition: 0.2s;
}
.energia-animacion .lampara .tirar-cuerda {
  animation: tirar 0.4s ease-in-out alternate;
}

.lampara-container {
  position: relative;
}

.lampara-encendida {
  stroke: #c6b626;
  filter: drop-shadow(-2px 2px 5px #c6b626);
}

@keyframes tirar {
  0% {
    height: 60px;
  }
  50% {
    height: 75px;
  }
  100% {
    height: 60px;
  }
}
.titulo-energia {
  left: 850px;
  top: 60px;
  order: 1;
}

.header-energia-mm {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.iconos-energia-mm {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  letter-spacing: 2px;
}
.iconos-energia-mm .icono {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  gap: 10px;
}
.iconos-energia-mm .icono svg {
  width: 50px;
  height: 50px;
}

.main-energia {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 390px;
  gap: 80px;
}
.main-energia .energia-mm {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
  border-bottom: 2px solid #fff000;
}
.main-energia .energia-mm .btn-energia {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20px;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.3s;
  color: #fff;
  border: 2px solid #fff000;
  background-color: #171717;
}
.main-energia .energia-mm .btn-energia:hover {
  letter-spacing: 2px;
  background-color: #303030;
}
.main-energia .energia-mm h2 {
  position: absolute;
  top: -200px;
  font-size: 60px !important;
  color: #fff000;
}
.main-energia .energia-mm .titulo-energia-mm {
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 2px;
}
.main-energia .energia-mm .titulo-energia-mm span {
  font-weight: bold;
  background-color: #fff000;
  color: #000;
}
.main-energia .energia-mm .bloque-fin-mm {
  margin-top: 50px;
  font-size: 25px;
  color: #000;
  font-weight: bold;
  width: 250px;
  height: 220px;
  text-align: center;
  order: 3;
}
.main-energia .energia-mm .bloque-fin-mm p:first-child {
  background-color: #fff000;
}
.main-energia .energia-mm .bloque-fin-mm p:last-child {
  background-color: #fff;
  margin-top: 10px;
  border: 2px dashed #000;
  padding: 8px 20px;
}
.main-energia .energia-mm-contenido {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 80px;
  gap: 80px;
}
.main-energia .energia-mm-contenido .bulb-container {
  order: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.main-energia .energia-mm-contenido .bulb-container svg {
  width: 150px;
  height: 150px;
}
.main-energia .energia-mm-contenido .bulb-container span {
  font-size: 60px;
  position: absolute;
  left: 55px;
  top: 20px;
  transform: rotate(-20deg);
  color: #fff000;
  text-shadow: -2px 2px 4px #726600;
}
.main-energia .bloque-energia-mm {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  order: 1;
}
.main-energia .bloque-energia-mm #bemm {
  font-size: 25px;
  background-color: #fff000;
  color: #000;
  font-weight: bold;
}
.main-energia .bloque-energia-mm .oferta-energia-mm {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px dashed #000;
  background-color: #fff;
  color: #000;
  width: 100%;
  padding-bottom: 30px;
}
.main-energia .bloque-energia-mm .oferta-energia-mm p {
  font-size: 60px;
  position: relative;
  font-weight: bold;
  margin-right: 80px;
}
.main-energia .bloque-energia-mm .oferta-energia-mm p span {
  font-size: 30px;
  position: absolute;
  top: 5px;
  font-weight: bold;
}
.main-energia .bloque-energia-mm .oferta-energia-mm p span span {
  font-size: 20px;
  position: absolute;
  top: 8px;
  font-weight: 300;
}
.main-energia .bloque-energia-mm .oferta-energia-mm p span span span {
  font-size: 18px;
  position: absolute;
  left: -15px;
  top: 28px;
  width: 100px;
}
.main-energia .bloque-energia-mm .oferta-energia-mm p span span span span {
  position: absolute;
  top: 30px;
  width: 300px;
  left: -110px;
  font-size: 15px;
}
.main-energia .pepeenergy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-top: 80px;
}
.main-energia .pepeenergy .btn-energia {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20px;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.3s;
  color: #000000;
  border: 2px solid #ff0000;
  background-color: #ffffff;
}
.main-energia .pepeenergy .btn-energia:hover {
  letter-spacing: 2px;
}
.main-energia .pepeenergy .container-up {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
.main-energia .pepeenergy .container-up .img-pepeenergy img {
  filter: drop-shadow(-8px 8px 10px #000);
}
.main-energia .precio-1 {
  font-size: 40px;
  text-align: center;
  border: 2px solid #ff0000;
  padding: 20px 80px;
  color: #000;
  background-color: #fff;
  border-radius: 8px;
}
.main-energia .precio-1 p:first-child {
  font-weight: bold;
}
.main-energia .precio-1 p:first-child span {
  font-size: 20px;
  color: #303030;
  font-weight: 300;
}
.main-energia .precio-1 p:last-child {
  font-size: 20px;
  color: #303030;
}
.main-energia .precio-2 {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 30px;
  margin-top: 50px;
}
.main-energia .precio-2 .icono {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 20px;
  font-size: 25px;
  line-height: 30px;
  letter-spacing: 2px;
}
.main-energia .precio-2 .icono svg {
  stroke: #ff0000;
  width: 40px;
  height: 40px;
}

@media (max-width: 1500px) {
  .hero-energia {
    margin-top: 50px;
    transform: scale(0.8);
  }
}
@media (max-width: 500px) {
  .hero-energia {
    margin: 20px auto;
    width: 280px;
    transform: scale(1);
  }
  .titulo-energia {
    order: 1;
    margin-left: 20px;
  }
  .titulo-energia h1 {
    font-size: 40px;
    text-align: center;
  }
  .energia-animacion {
    width: 250px;
    margin: auto;
    gap: 0;
  }
  .energia-animacion .lampara svg {
    width: 150px;
    height: 150px;
  }
  .energia-animacion .lampara .cuerda {
    transform: scale(0.5);
    background-color: #fff;
    border-radius: 0 0 8px 8px;
    position: absolute;
    top: 60px;
    left: 100px;
    transition: 0.2s;
  }
  .header-energia-mm {
    flex-direction: column;
  }
  .header-energia-mm .titulo-energia-mm {
    font-size: 25px !important;
    line-height: 35px !important;
    text-align: center;
  }
  .header-energia-mm p:first-child {
    font-size: 15px;
  }
  .energia-mm-contenido {
    flex-direction: column;
  }
  .pepeenergy .container-up {
    flex-direction: column;
  }
  .pepeenergy .container-up .img-pepeenergy {
    order: 2;
  }
  .pepeenergy .container-up .precio {
    padding: 0 20px;
  }
  .pepeenergy .container-up .precio .precio-1 {
    width: 350px;
  }
}
@media (min-width: 501px) and (max-width: 1024px) {
  .main-energia {
    margin-top: 300px;
  }
  .header-energia-mm {
    flex-direction: column;
  }
  .header-energia-mm .titulo-energia-mm {
    font-size: 25px !important;
    line-height: 35px !important;
    text-align: center;
  }
  .header-energia-mm p:first-child {
    font-size: 15px;
  }
  .energia-mm {
    width: 600px;
  }
  .energia-mm-contenido {
    flex-direction: column;
  }
  .pepeenergy .container-up {
    flex-direction: column;
  }
  .pepeenergy .container-up .img-pepeenergy {
    order: 2;
  }
  .pepeenergy .container-up .precio {
    padding: 0 20px;
  }
  .pepeenergy .container-up .precio .precio-1 {
    width: 700px;
  }
}
/** Media Queries **/
.hero-reparaciones {
  margin-top: 0;
  height: 600px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.arreglar {
  width: 600px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  transition: 1s;
}

.titulo-reparaciones {
  transform: scale(0.8);
  transition: 2s;
  position: absolute;
}

.icono-telefono-container-rep {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.animacion-reparaciones {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.animacion-reparaciones .icono-telefono {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 0;
  left: 50px;
  z-index: 10;
  width: 180px;
  height: 300px;
  border-radius: 10px;
  transition: 1s !important;
  background: linear-gradient(135deg, #4e4e4e 0%, #898989 40%, #d8d8d8 70%, #333333 100%);
}
.animacion-reparaciones .icono-telefono .altavoz-rep {
  width: 100px;
  height: 8px;
  background-color: #000;
  position: absolute;
  top: 10px;
  border-radius: 20px;
}
.animacion-reparaciones .icono-telefono .pantalla-rep {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  letter-spacing: 2px;
  text-shadow: -2px 2px 2px #000;
  text-transform: uppercase;
  position: absolute;
}
.animacion-reparaciones .icono-telefono .pantalla-rep .apagada-rep {
  position: relative;
  width: 150px;
  height: 240px;
  background-color: #000;
}
.animacion-reparaciones .icono-telefono .pantalla-rep .encendida-rep {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 50px 15px #433954;
  background: linear-gradient(to bottom, #001a33 0%, #005f99 35%, #00aaff 70%, #00d4ff 100%);
  transition: 0.5s;
}
.animacion-reparaciones .icono-telefono .pantalla-rep .encendida-rep h4 {
  font-size: 20px;
  margin-left: 4px;
}
.animacion-reparaciones .icono-telefono .boton-tel-rep {
  width: 20px;
  height: 20px;
  background-color: #000;
  position: absolute;
  bottom: 5px;
  border-radius: 100%;
}

.raja-1, .raja-2, .raja-3 {
  width: 150px;
  height: 1px;
  background-color: #898989;
  z-index: 5;
  position: absolute;
}

.raja-1 {
  transform: rotate(-55deg);
  top: 100px;
  left: 20px;
}

.raja-2 {
  top: 150px;
  left: 65px;
  width: 100px;
  transform: rotate(-120deg);
}

.raja-3 {
  top: 110px;
  left: 30px;
  width: 120px;
}

.martillo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 300px;
  position: relative;
  left: -50px;
  transition: 1s;
  z-index: 11;
}
.martillo-container .martillo {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}
.martillo-container .martillo .cabeza {
  position: absolute;
  z-index: 9;
  width: 200px;
  height: 100px;
  top: 10px;
  background: linear-gradient(145deg, #0e0e0e, #1a1a1a, #2a2a2a, #4d4d4d);
  border-radius: 6px 6px 2px 2px;
  box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.05), inset -2px -2px 5px rgba(0, 0, 0, 0.3);
}
.martillo-container .martillo .mango {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #8b5e3c, #c48a5a, #eac18a);
  border-radius: 10px;
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.2);
  width: 30px;
  height: 100%;
  position: absolute;
  top: 0;
}

.martillear {
  animation: arreglar 1s ease-in;
}

@keyframes arreglar {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-30deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.alejar-martillo {
  transform: translate(350px);
}

.alejar-telefono {
  transform: translate(-350px);
}

.main-reparaciones {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 80px;
  width: 1600px;
  margin: 200px auto;
}

.container-rep-1, .container-rep-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  width: 100%;
  height: 620px;
}
.container-rep-1 .img, .container-rep-2 .img {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  gap: 20px;
}
.container-rep-1 .img .img-effect, .container-rep-2 .img .img-effect {
  width: 250px;
  height: 290px;
  overflow: hidden;
  transition: 0.3s;
}
.container-rep-1 .img .img-effect:hover, .container-rep-2 .img .img-effect:hover {
  box-shadow: 0px 1px 10px 2px rgba(255, 255, 255, 0.75);
}
.container-rep-1 .img img, .container-rep-2 .img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  transition: 0.3s;
  object-fit: cover;
}
.container-rep-1 .img img:hover, .container-rep-2 .img img:hover {
  transform: scale(1.1);
}
.container-rep-1 .text, .container-rep-2 .text {
  font-size: 20px;
  color: #fff;
  width: 600px;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 50px;
}
.container-rep-1 .text h2, .container-rep-2 .text h2 {
  font-size: 50px;
}
.container-rep-1 .text p, .container-rep-2 .text p {
  width: 100%;
  line-height: 30px;
  letter-spacing: 1px;
}
.container-rep-1 .text p a, .container-rep-2 .text p a {
  font-weight: bold;
  color: #fff;
  text-decoration: underline;
}

.container-rep-2 .img {
  order: 2;
}
.container-rep-2 .img .img-effect {
  width: 300px;
  height: 350px;
}
.container-rep-2 .text {
  order: 1;
}

.antes-despues h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.antes-despues h2 svg {
  width: 40px;
  height: 40px;
}
.antes-despues img {
  border-radius: 8px;
}
.antes-despues .ejemplos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 180px;
  text-align: center;
  margin-top: 80px;
}
.antes-despues .ejemplos h3 {
  font-size: 30px;
  margin-bottom: 30px;
}
.antes-despues .ejemplos .ejemplo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 200px;
  position: relative;
}
.antes-despues .ejemplos .ejemplo .ejemplo-img {
  overflow: hidden;
}
.antes-despues .ejemplos .ejemplo .ejemplo-img img {
  object-fit: cover;
  transition: 0.3s;
}
.antes-despues .ejemplos .ejemplo .ejemplo-img img:hover {
  transform: scale(1.1);
}
.antes-despues .ejemplos .ejemplo .antes img {
  width: 200px;
  height: 250px;
}
.antes-despues .ejemplos .ejemplo svg {
  position: absolute;
  left: 225px;
  top: 120px;
}
.antes-despues .ejemplos .ejemplo .draw {
  stroke: greenyellow;
  fill: none;
  stroke-width: 3px;
  animation: rate 5s linear infinite;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}
@keyframes rate {
  to {
    stroke-dashoffset: 0;
  }
}
.antes-despues .ejemplos .ejemplo .despues img {
  width: 150px;
  height: 250px;
}
.antes-despues .ejemplos .ejemplo:last-child svg {
  left: 205px;
}
.antes-despues .ejemplos .ejemplo:last-child .antes img {
  width: 180px;
}

.btn-reparaciones {
  color: #000;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 1px;
  background-color: #fff;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.3s;
  margin-top: 30px;
}
.btn-reparaciones:hover {
  letter-spacing: 4px;
}

@media (max-width: 1500px) {
  .hero-reparaciones {
    transform: scale(0.8);
    margin-top: -30px;
  }
  .main-reparaciones {
    width: 900px;
    margin-top: 100px;
  }
  .ejemplos {
    transform: scale(0.9);
  }
}
@media (min-width: 501px) and (max-width: 1024px) {
  .hero-reparaciones {
    transform: scale(0.6);
    margin-top: -30px;
  }
  .main-reparaciones {
    width: 700px;
    gap: 300px;
    margin: 200px auto;
  }
  .main-reparaciones h2 {
    text-align: center !important;
  }
  .ejemplos {
    transform: scale(0.9);
  }
  .antes-despues {
    margin-top: -300px;
  }
  .antes-despues h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.7);
    gap: 10px;
    margin-top: 150px;
    text-align: center;
  }
  .antes-despues h2 svg {
    width: 40px;
    height: 40px;
  }
  .antes-despues .ejemplos {
    flex-direction: column;
    margin-top: 0;
    gap: 80px;
  }
  .btn-reparaciones {
    margin-top: -200px;
  }
}
@media (max-width: 500px) {
  .hero-reparaciones {
    transform: scale(1);
    margin-top: 0;
  }
  .arreglar {
    width: 350px;
    height: 200px;
    margin-top: 80px;
  }
  .titulo-reparaciones h1 {
    font-size: 50px;
  }
  .icono-telefono-container-rep {
    transform: scale(0.5);
  }
  .icono-telefono-container-rep .icono-telefono {
    left: 30px;
  }
  .martillo-container {
    width: 100px;
    height: 160px;
    left: -30px;
  }
  .martillo-container .martillo .cabeza {
    width: 120px;
    height: 50px;
  }
  .alejar-container {
    transform: translate(-10px);
  }
  .alejar-martillo-r {
    transform: translate(30px);
  }
  .alejar-telefono-r {
    transform: translate(-30px);
  }
  .main-reparaciones {
    width: 350px;
    gap: 700px;
    margin: 300px auto;
  }
  .container-rep-1, .container-rep-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    width: 100%;
  }
  .container-rep-1 .img, .container-rep-2 .img {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    order: 2;
  }
  .container-rep-1 .img .img-effect, .container-rep-2 .img .img-effect {
    width: 250px;
    height: 290px;
    overflow: hidden;
    transition: 0.3s;
  }
  .container-rep-1 .img .img-effect:hover, .container-rep-2 .img .img-effect:hover {
    box-shadow: 0px 1px 10px 2px rgba(255, 255, 255, 0.75);
  }
  .container-rep-1 .img img, .container-rep-2 .img img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    transition: 0.3s;
    object-fit: cover;
  }
  .container-rep-1 .img img:hover, .container-rep-2 .img img:hover {
    transform: scale(1.1);
  }
  .container-rep-1 .text, .container-rep-2 .text {
    font-size: 20px;
    color: #fff;
    width: 350px;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    order: 1;
  }
  .container-rep-1 .text h2, .container-rep-2 .text h2 {
    font-size: 30px;
    text-align: center;
  }
  .container-rep-1 .text p, .container-rep-2 .text p {
    width: 100%;
    line-height: 30px;
    letter-spacing: 1px;
  }
  .container-rep-1 .text p a, .container-rep-2 .text p a {
    font-weight: bold;
    color: #fff;
    text-decoration: underline;
  }
  .antes-despues {
    margin-top: -300px;
  }
  .antes-despues h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .antes-despues h2 svg {
    width: 40px;
    height: 40px;
  }
  .antes-despues .ejemplos {
    flex-direction: column;
    transform: scale(0.65);
    margin-top: -100px;
  }
  .btn-reparaciones {
    margin-top: -700px;
  }
}
/** Media Queries **/
.hero-recargas {
  margin: 100px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 600px;
}

.titulo-recargas {
  margin-top: 40px;
}

.recargas-animacion {
  display: flex;
  justify-content: center;
  align-items: start;
  width: 800px;
  height: 500px;
  gap: 100px;
}
.recargas-animacion svg {
  transition: 2s;
}
.recargas-animacion .animacion-display-telefono {
  display: flex;
  flex-direction: column;
}
.recargas-animacion .animacion-display-telefono .display-telefono {
  width: 150px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #001a33 0%, #005f99 35%, #00aaff 70%, #00d4ff 100%);
}
.recargas-animacion .animacion-display-telefono .display-telefono h4 {
  text-transform: uppercase;
  text-shadow: -2px 2px 2px #000;
  letter-spacing: 2px;
  transition: 0.5s;
}

.anim-recarga {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 150px;
}

.rodar {
  transform: translateX(-320px) rotate(-360deg);
}

.icono-telefono-container {
  display: flex;
  flex-direction: column;
  z-index: 4;
}

.tel-encendido {
  box-shadow: 0px 0px 50px 15px #2b2338;
}

.icono-telefono {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 0;
  width: 180px;
  height: 300px;
  border-radius: 10px;
  transition: 0.5s;
  background: linear-gradient(135deg, #4e4e4e 0%, #898989 40%, #d8d8d8 70%, #333333 100%);
}
.icono-telefono .altavoz {
  width: 100px;
  height: 8px;
  background-color: #000;
  position: absolute;
  top: 10px;
  border-radius: 20px;
}
.icono-telefono .pantalla {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 23.5px;
  letter-spacing: 2px;
  text-shadow: -2px 2px 2px #000;
  text-transform: uppercase;
  position: absolute;
}
.icono-telefono .pantalla .apagada {
  position: relative;
  width: 150px;
  height: 240px;
  background-color: #000;
}
.icono-telefono .pantalla .encendida {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 50px 15px #433954;
  background: linear-gradient(to bottom, #001a33 0%, #005f99 35%, #00aaff 70%, #00d4ff 100%);
  transition: 0.5s;
}
.icono-telefono .pantalla .encendida h4 {
  font-size: 23px;
  margin-left: 4px;
}
.icono-telefono .boton-tel {
  width: 20px;
  height: 20px;
  background-color: #000;
  position: absolute;
  bottom: 5px;
  border-radius: 100%;
  cursor: pointer;
}

.main-prepago {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 80px;
  font-size: 20px;
}
.main-prepago a {
  font-size: 30px;
  color: #fff;
  padding: 10px 30px;
  background-color: #531a74;
  border-radius: 4px;
  font-weight: bold;
  transition: 0.3s;
}
.main-prepago a:hover {
  background-color: #604270;
  letter-spacing: 4px;
}

.operadores {
  letter-spacing: 2px;
  background-image: url(../../src/img/prepago/bg-companias.webp);
  width: 100%;
  height: 700px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  margin-top: 200px;
}
.operadores .operadores__container {
  position: absolute;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.operadores .operadores__container h3 {
  font-size: 60px;
  text-shadow: -4px 4px 4px #000;
}
.operadores .operadores__container .operadores-contenido {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 100px;
  row-gap: 50px;
  backdrop-filter: blur(20px);
  padding: 30px 100px;
  border-radius: 8px;
  box-shadow: -5px 5px 10px #000;
}

.card-prep {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  gap: 5px;
}
.card-prep .card-prep-img {
  width: 120px;
  height: 120px;
  transition: 0.3s;
  border-radius: 4px;
  overflow: hidden;
}
.card-prep .card-prep-img:hover {
  box-shadow: 0px 1px 20px 2px rgba(255, 255, 255, 0.75);
}
.card-prep .card-prep-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-prep {
  font-size: 30px;
  width: 1600px;
  margin: 100px auto 200px;
  letter-spacing: 2px;
  line-height: 40px;
}

.contenidos-digitales {
  letter-spacing: 2px;
  background-image: url(../../src/img/prepago/bg-contenidos.webp);
  width: 100%;
  height: 700px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
.contenidos-digitales .card-prep .card-prep-img {
  width: 100px;
  height: 100px;
}
.contenidos-digitales .amazon-logo {
  background-color: #fff;
}
.contenidos-digitales .contenidos-container {
  position: absolute;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.contenidos-digitales .contenidos-container h3 {
  font-size: 60px;
  text-shadow: -4px 4px 4px #000;
}
.contenidos-digitales .contenidos-container .contenidos-contenido {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 100px;
  row-gap: 50px;
  backdrop-filter: blur(20px);
  padding: 30px 100px;
  border-radius: 8px;
  box-shadow: -5px 5px 10px #000;
}

.explicacion-prep {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  font-size: 30px;
  gap: 50px;
  margin-top: 50px;
}
.explicacion-prep h3 {
  text-align: center;
  font-size: 50px;
  width: 100%;
}
.explicacion-prep .list {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 2px solid #41354b;
  border-bottom: 2px solid #41354b;
  padding: 30px 0;
}
.explicacion-prep .list ol {
  line-height: 60px;
}
.explicacion-prep .list img {
  width: 300px;
  height: 300px;
  transform: rotateY(180deg);
}
.explicacion-prep p {
  width: 900px;
  line-height: 45px;
}

@media (max-width: 1500px) {
  .hero-recargas {
    margin-top: 50px;
    transform: scale(0.8);
  }
  .text-prep {
    width: 900px;
  }
  .main-prepago {
    margin-top: -150px;
  }
}
@media (max-width: 500px) {
  .hero-recargas {
    margin: 100px auto;
    flex-direction: column;
    transform: scale(1);
  }
  .titulo-recargas {
    margin-top: 0;
  }
  .titulo-recargas h1 {
    font-size: 50px;
  }
  .recargas-animacion {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    width: 350px;
    height: 500px;
    margin: 0 auto;
    top: 10px;
    gap: 0;
  }
  .anim-recarga {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform: scale(0.8);
    position: relative;
    top: -50px;
    gap: 150px;
  }
  .rodar {
    transform: translateY(-320px) rotateX(0);
  }
  .main-prepago {
    margin-top: 80px;
  }
  .main-prepago a {
    margin-top: 200px;
  }
  .explicacion-prep {
    width: 350px;
    font-size: 25px;
    margin: 0 auto;
  }
  .explicacion-prep h3 {
    padding: 0;
    margin: 0;
    font-size: 42px;
  }
  .explicacion-prep p {
    width: 350px;
    font-size: 20px;
    padding: 20px;
    line-height: 30px;
  }
  .explicacion-prep .list {
    flex-direction: column;
    font-size: 25px;
    gap: 50px;
  }
  .explicacion-prep .list ol {
    line-height: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 40px;
  }
  .operadores, .contenidos-digitales {
    background: transparent;
  }
  .operadores h3, .contenidos-digitales h3 {
    font-size: 50px !important;
    text-align: center;
  }
  .operadores .operadores__container, .contenidos-digitales .operadores__container {
    width: 300px;
    margin: auto;
    background: transparent;
  }
  .operadores .operadores__container .operadores-contenido, .contenidos-digitales .operadores__container .operadores-contenido {
    grid-template-columns: 1fr 1fr;
    background: transparent;
    column-gap: 50px;
  }
  .text-prep {
    width: 350px;
    font-size: 20px;
    padding: 20px;
    line-height: 30px;
  }
  .contenidos-digitales {
    margin-top: 0;
  }
  .contenidos-container {
    width: 300px;
    margin: auto;
    background: transparent !important;
  }
  .contenidos-container .contenidos-contenido {
    grid-template-columns: 1fr 1fr !important;
    background: transparent;
  }
}
@media (min-width: 501px) and (max-width: 1024px) {
  .hero-recargas {
    margin: 100px auto;
    flex-direction: column;
    transform: scale(1);
  }
  .titulo-recargas {
    margin-top: 0;
  }
  .titulo-recargas h1 {
    font-size: 50px;
  }
  .recargas-animacion {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    width: 350px;
    height: 500px;
    margin: 0 auto;
    top: 10px;
    gap: 0;
  }
  .anim-recarga {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform: scale(0.8);
    position: relative;
    top: -50px;
    gap: 150px;
  }
  .rodar {
    transform: translateY(-320px) rotateX(0);
  }
  .main-prepago {
    margin-top: -40px;
  }
  .main-prepago a {
    margin-top: 200px;
  }
  .explicacion-prep {
    width: 600px;
    font-size: 25px;
    margin: 0 auto;
  }
  .explicacion-prep h3 {
    padding: 0;
    margin: 0;
    font-size: 42px;
  }
  .explicacion-prep p {
    width: 600px;
    font-size: 25px;
    padding: 20px;
    line-height: 30px;
  }
  .explicacion-prep .list {
    flex-direction: column;
    font-size: 25px;
    gap: 50px;
  }
  .explicacion-prep .list ol {
    line-height: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 40px;
  }
  .operadores, .contenidos-digitales {
    background: transparent;
  }
  .operadores h3, .contenidos-digitales h3 {
    font-size: 50px !important;
    text-align: center;
  }
  .operadores .operadores__container, .contenidos-digitales .operadores__container {
    width: 600px;
    margin: auto;
    background: transparent;
  }
  .operadores .operadores__container .operadores-contenido, .contenidos-digitales .operadores__container .operadores-contenido {
    grid-template-columns: 1fr 1fr;
    background: transparent;
    column-gap: 100px;
  }
  .text-prep {
    width: 600px;
    font-size: 25px;
    padding: 20px;
    line-height: 30px;
  }
  .contenidos-digitales {
    margin-top: 0;
  }
  .contenidos-container {
    width: 600px;
    margin: auto;
    background: transparent !important;
  }
  .contenidos-container .contenidos-contenido {
    grid-template-columns: 1fr 1fr !important;
    background: transparent !important;
  }
}
/** Media Queries **/
.hero-paqueteria {
  margin-top: 100px;
  width: 100%;
}

.animacion-paqueteria {
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: start;
  align-items: center;
}

.camion {
  width: 600px;
  height: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 3s;
  left: 0;
  top: -50px;
  z-index: 7;
  transform: scale(1.1);
}

.contenedor-camion {
  width: 300px;
  height: 150px;
  background: linear-gradient(135deg, #f7be56, #e8a935);
  position: absolute;
}

.cabina {
  width: 120px;
  height: 100px;
  background: linear-gradient(135deg, #e56353, #d94c3f);
  position: absolute;
  border-radius: 0 50px 0 0;
  left: 449px;
  top: 124px;
}

.chasis {
  position: relative;
}
.chasis .ventana {
  width: 50px;
  height: 40px;
  background: linear-gradient(135deg, #27a2db, #1c82b0);
  position: absolute;
  border-radius: 0 100% 0 0;
  top: 10px;
  left: 50px;
}
.chasis .luz-cabina {
  width: 20px;
  height: 10px;
  right: 0;
  top: 70px;
  position: absolute;
  background-color: #e6d300;
}

.ruedas {
  position: relative;
  width: 420px;
  height: 10px;
  top: 70px;
  left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: #2c2c2c;
}
.ruedas .rueda-a, .ruedas .rueda-b, .ruedas .rueda-c, .ruedas .rueda-d {
  width: 50px;
  height: 50px;
  background-color: #181818;
  border-radius: 100%;
  position: absolute;
  top: -5px;
}
.ruedas .llantas {
  width: 420px;
  height: 10px;
  top: 70px;
  left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 8;
}
.ruedas .rueda-a {
  right: 20px;
}
.ruedas .rueda-b {
  left: 230px;
}
.ruedas .rueda-c {
  left: 20px;
}
.ruedas .rueda-d {
  left: 80px;
}

.llanta-a, .llanta-b, .llanta-c, .llanta-d {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #959595;
  border-radius: 100%;
  position: absolute;
  top: 5px;
}

.llanta-a {
  right: 29.5px;
}

.llanta-b {
  left: 240px;
}

.llanta-c {
  left: 30px;
}

.llanta-d {
  left: 90px;
}

.caja-container {
  position: relative;
  width: 150px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  bottom: 40px;
  transition: 1s;
}
.caja-container .caja {
  width: 150px;
  height: 120px;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #d6a25e, #b77b35);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 6;
}
.caja-container .asa-izquierda {
  width: 75px;
  height: 10px;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #d6a25e, #b77b35);
  position: absolute;
  left: 0;
  top: -10px;
  transition: 0.3s;
}
.caja-container .asa-derecha {
  width: 75px;
  height: 10px;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #d6a25e, #b77b35);
  position: absolute;
  right: 0;
  top: -10px;
  transition: 0.3s;
}

.asa-izquierda-abierta {
  transform: rotate(-150deg) translateY(-25px) translatex(60px);
}

.asa-derecha-abierta {
  transform: rotate(150deg) translateY(-25px) translatex(-60px);
}

.mover-camion {
  transform: translateX(100vw);
}

.titulo-paqueteria {
  position: absolute;
  left: -190px;
  top: -50px;
  transform: scale(0.25);
  opacity: 0;
  visibility: hidden;
  transition: 2s;
}

.subir-titulo {
  top: -250px;
  opacity: 1;
  visibility: visible;
}

.aumentar-titulo {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.main-paqueteria {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}
.main-paqueteria a {
  width: 200px;
  height: 50px;
  background-color: #fff;
  border-radius: 4px;
  font-weight: bold;
  transition: 0.3s;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-top: 50px;
}
.main-paqueteria a span:nth-child(1) {
  font-size: 30px;
  color: #000;
  position: absolute;
  transition: 0.5s;
}
.main-paqueteria a span:nth-child(2) {
  position: absolute;
  transition: 0.5s;
  transform: translateY(5px) translateX(-300px);
}
.main-paqueteria a span:nth-child(2) img {
  width: 70px;
  height: 60px;
}
.main-paqueteria a span:nth-child(3) {
  font-size: 20px;
  color: #fff;
  position: absolute;
  transition: 0.5s;
  right: -100px;
  top: 15px;
}
.main-paqueteria a:hover {
  background-color: #531a74;
  transform: scale(1.2);
}
.main-paqueteria a:hover span:nth-child(1) {
  transform: translateY(100px);
}
.main-paqueteria a:hover span:nth-child(2) {
  transform: translateX(-40px) translateY(5px);
}
.main-paqueteria a:hover span:nth-child(3) {
  right: 10px;
}

.container-paq-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 25px;
  line-height: 40px;
  gap: 100px;
  letter-spacing: 2px;
}
.container-paq-1 h3 {
  font-size: 50px;
}
.container-paq-1 .contenido-dibujo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.container-paq-1 .contenido-dibujo img {
  width: 300px;
  height: 300px;
}
.container-paq-1 .contenido-dibujo .imagenes-paq {
  position: relative;
}
.container-paq-1 .contenido-dibujo .imagenes-paq .img-camion {
  position: absolute;
  bottom: -10px;
  left: 150px;
  width: 220px;
  height: 200px;
}
.container-paq-1 .contenido-dibujo .imagenes-paq .img-camion img {
  width: 100%;
  height: 100%;
  transform: rotateY(180deg);
  filter: drop-shadow(19px 7px 10px #000000);
}

.container-paq-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  gap: 50px;
  margin-top: 200px;
}
.container-paq-2 h3 {
  font-size: 50px;
}
.container-paq-2 .contenido-paq-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
}
.container-paq-2 .contenido-paq-2 .recogida-entrega {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  margin-top: 50px;
  padding-bottom: 80px;
  border-bottom: 2px solid #41354b;
  width: 900px;
}
.container-paq-2 .contenido-paq-2 .recogida {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
}
.container-paq-2 .contenido-paq-2 .recogida .amazon-img {
  background-color: #fff;
}

.cards-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
}

.empresa-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.empresa-card img {
  width: 150px;
  height: 150px;
  border-radius: 4px;
  transition: 0.3s;
}
.empresa-card img:hover {
  box-shadow: -4px 4px 8px #fff;
}
.empresa-card p {
  font-size: 25px;
  font-weight: bold;
}

.container-paq-3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  gap: 50px;
  letter-spacing: 2px;
  margin-top: 200px;
}
.container-paq-3 h3 {
  font-size: 50px;
}
.container-paq-3 .list-paq-3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  line-height: 40px;
}
.container-paq-3 .list-paq-3 .img-paq-3 {
  position: relative;
}
.container-paq-3 .list-paq-3 .img-paq-3 img:last-child {
  width: 300px;
  height: 300px;
}
.container-paq-3 .list-paq-3 .img-paq-3 img:first-child {
  position: absolute;
  width: 100px;
  height: 100px;
  left: 30px;
  bottom: 40px;
  filter: drop-shadow(9px -2px 10px #000000);
}

@media (max-width: 1500px) {
  .aumentar-titulo {
    transform: scale(0.8);
  }
  .main-paqueteria {
    margin-top: 0;
  }
  .container-paq-1 .contenido-dibujo {
    width: 900px;
  }
  .container-paq-1 .contenido-dibujo ul {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
  .container-paq-3 .list-paq-3 {
    width: 900px;
  }
  .container-paq-3 .list-paq-3 ol {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
}
@media (min-width: 501px) and (max-width: 1024px) {
  .aumentar-titulo {
    transform: scale(0.8);
  }
  .main-paqueteria {
    margin-top: 0;
  }
  .container-paq-1 h3 {
    text-align: center;
  }
  .container-paq-1 .contenido-dibujo {
    width: 600px;
  }
  .container-paq-1 .contenido-dibujo ul {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
  .container-paq-2 {
    margin-top: 150px;
    transform: scale(0.8) !important;
  }
  .container-paq-3 {
    margin-top: 120px;
  }
  .container-paq-3 .list-paq-3 {
    transform: scale(0.8);
  }
}
@media (max-width: 500px) {
  .subir-titulo-r {
    animation: titPaq 1s forwards;
  }
  @keyframes titPaq {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1.5) translateY(-120px);
    }
  }
  .animacion-paqueteria {
    display: none;
  }
  .caja-responsive {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 300px;
  }
  .caja-responsive .titulo-paqueteria-responsive {
    position: absolute;
    transform: scale(0.8);
    transition: 1s;
  }
  .caja-responsive .titulo-paqueteria-responsive h1 {
    font-size: 20px;
  }
  .caja-responsive .caja {
    width: 150px;
    height: 120px;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #d6a25e, #b77b35);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 6;
  }
  .caja-responsive .caja .asa-izquierda-r {
    width: 75px;
    height: 10px;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #d6a25e, #b77b35);
    position: absolute;
    left: 0;
    top: -10px;
    transition: 0.3s;
  }
  .caja-responsive .caja .asa-derecha-r {
    width: 75px;
    height: 10px;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #d6a25e, #b77b35);
    position: absolute;
    right: 0;
    top: -10px;
    transition: 0.3s;
  }
  .main-paqueteria {
    margin-top: 200px;
  }
  .container-paq-1 h3 {
    text-align: center;
    font-size: 40px;
  }
  .container-paq-1 .contenido-dibujo {
    width: 350px;
    gap: 0;
    flex-direction: column;
  }
  .container-paq-1 .contenido-dibujo ul {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
  .container-paq-1 .contenido-dibujo .imagenes-paq {
    transform: scale(0.8);
  }
  .container-paq-2 {
    margin-top: 200px;
    width: 350px;
  }
  .container-paq-2 h3 {
    font-size: 40px;
    text-align: center;
  }
  .container-paq-2 .recogida-entrega, .container-paq-2 .recogida {
    width: 350px !important;
    text-align: center;
  }
  .container-paq-2 .recogida-entrega .cards-container {
    flex-direction: column;
  }
  .container-paq-2 .recogida .cards-container {
    flex-direction: column;
  }
  .container-paq-3 {
    margin-top: 200px;
    width: 350px;
  }
  .container-paq-3 h3 {
    text-align: center;
  }
  .container-paq-3 .list-paq-3 {
    width: 350px;
    flex-direction: column;
  }
  .container-paq-3 .list-paq-3 ol {
    font-size: 25px;
  }
}
/** Media Queries **/
.politica-cookies {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  gap: 80px;
}
.politica-cookies h1 {
  font-size: 60px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}
.politica-cookies section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  border: 1px solid #41354b;
  padding: 30px;
  width: 900px;
}
.politica-cookies section h2 {
  font-size: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}
.politica-cookies section p {
  width: 800px !important;
  font-size: 20px;
  line-height: 30px;
}

@media (min-width: 501px) and (max-width: 1024px) {
  .politica-cookies h1 {
    font-size: 40px;
  }
  .politica-cookies section {
    width: 600px;
  }
  .politica-cookies section p {
    width: 500px !important;
  }
}
@media (max-width: 500px) {
  .politica-cookies h1 {
    font-size: 40px;
  }
  .politica-cookies section {
    width: 350px;
  }
  .politica-cookies section h2 {
    font-size: 30px;
  }
  .politica-cookies section p {
    width: 300px !important;
  }
}
/** Media Queries **/
.aviso-legal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  gap: 80px;
}
.aviso-legal h1 {
  font-size: 60px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}
.aviso-legal section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  border: 1px solid #41354b;
  padding: 30px;
  width: 900px;
}
.aviso-legal section h2 {
  font-size: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}
.aviso-legal section p {
  width: 800px !important;
  font-size: 20px;
  line-height: 30px;
}

@media (min-width: 501px) and (max-width: 1024px) {
  .aviso-legal section {
    width: 600px;
  }
  .aviso-legal section p {
    width: 500px !important;
  }
}
@media (max-width: 500px) {
  .aviso-legal section {
    width: 350px;
  }
  .aviso-legal section p {
    width: 300px !important;
  }
}
/** Media Queries **/
/* Importing Google Fonts - Inter */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

#chatbot-toggler {
  transform: scale(1.2);
  z-index: 101;
  box-shadow: -4px 4px 4px #000;
  position: fixed;
  bottom: 30px;
  right: 35px;
  border: none;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  background: #5350C4;
  transition: all 0.2s ease;
}
#chatbot-toggler:hover {
  transform: scale(1.4);
}

body.show-chatbot #chatbot-toggler {
  transform: rotate(90deg);
}

#chatbot-toggler span {
  color: #fff;
  position: absolute;
}

body.show-chatbot #chatbot-toggler span:first-child,
#chatbot-toggler span:last-child {
  opacity: 0;
}

body.show-chatbot #chatbot-toggler span:last-child {
  opacity: 1;
}

.chatbot-popup {
  z-index: 100;
  box-shadow: -8px 8px 8px #000;
  position: fixed;
  right: 35px;
  bottom: 90px;
  width: 420px;
  background: #fff;
  overflow: hidden;
  border-radius: 15px;
  opacity: 0;
  transform: scale(0.2);
  transform-origin: bottom right;
  pointer-events: none;
  transition: all 0.1s ease;
  color: #000;
}

body.show-chatbot .chatbot-popup {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.chat-header {
  display: flex;
  align-items: center;
  background: #5350C4;
  box-shadow: 0px 1px 4px 1px #000;
  padding: 15px 22px;
  justify-content: space-between;
  position: relative;
}

.chat-header .header-info {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header-info {
  padding: 6px;
  fill: #5350C4;
  flex-shrink: 0;
  border-radius: 50%;
}

.chatbot-logo {
  position: absolute;
  height: 40px;
  width: 40px;
  left: 20px;
  border-radius: 50%;
}

.header-info .logo-text {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  position: absolute;
  left: 70px;
}

.chat-header #close-chatbot {
  border: none;
  color: #fff;
  height: 40px;
  width: 40px;
  font-size: 1.9rem;
  margin-right: -10px;
  padding-top: 2px;
  cursor: pointer;
  border-radius: 50%;
  background: none;
  transition: 0.2s ease;
}

.chat-header #close-chatbot:hover {
  background-color: #3d39ac;
}

.chat-body {
  padding: 25px 22px;
  background: rgb(255, 255, 255);
  display: flex;
  gap: 20px;
  height: 460px;
  margin-bottom: 82px;
  overflow-y: auto;
  flex-direction: column;
  scrollbar-width: thin;
  scrollbar-color: #ccccf5 transparent;
}

.chat-body .message {
  display: flex;
  gap: 11px;
  justify-content: start;
  align-items: flex-end;
}

.chat-body .bot-message .bot-avatar {
  height: 45px;
  width: 45px;
  padding: 6px;
  fill: #fff;
  flex-shrink: 0;
  margin-bottom: 2px;
  align-items: flex-end;
  border-radius: 50%;
}

.chat-body .user-message {
  flex-direction: column;
  align-items: flex-end;
}

.chat-body .message .message-text {
  padding: 12px 16px;
  max-width: 75%;
  font-size: 0.95rem;
}

.chat-body .bot-message.thinking .message-text {
  padding: 2px 16px;
}

.chat-body .bot-message .message-text {
  background: #e1e1ff;
  border-radius: 13px 13px 13px 3px;
}

.chat-body .user-message .message-text {
  color: #fff;
  background: #5350C4;
  border-radius: 13px 13px 3px 13px;
}

.chat-body .user-message .attachment {
  width: 50%;
  margin-top: -7px;
  border-radius: 13px 3px 13px 13px;
}

.chat-body .bot-message .thinking-indicator {
  display: flex;
  gap: 4px;
  padding-block: 15px;
}

.chat-body .bot-message .thinking-indicator .dot {
  height: 7px;
  width: 7px;
  opacity: 0.7;
  border-radius: 50%;
  background: #6F6BC2;
  animation: dotPulse 1.8s ease-in-out infinite;
}

.chat-body .bot-message .thinking-indicator .dot:nth-child(1) {
  animation-delay: 0.2s;
}

.chat-body .bot-message .thinking-indicator .dot:nth-child(2) {
  animation-delay: 0.3s;
}

.chat-body .bot-message .thinking-indicator .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotPulse {
  0%, 44% {
    transform: translateY(0);
  }
  28% {
    opacity: 0.4;
    transform: translateY(-4px);
  }
  44% {
    opacity: 0.2;
  }
}
.chat-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px 22px 20px;
}

.chat-footer .chat-form {
  display: flex;
  position: relative;
  align-items: center;
  background: #fff;
  border-radius: 32px;
  outline: 1px solid #5350C4;
}

.chat-footer .chat-form:focus-within {
  outline: 2px solid #5350C4;
}

.chat-form .message-input {
  border: none;
  outline: none;
  height: 47px;
  width: 100%;
  resize: none;
  max-height: 180px;
  white-space: pre-line;
  font-size: 0.95rem;
  padding: 14px 0 13px 18px;
  border-radius: 0;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

.chat-form .message-input:hover {
  scrollbar-color: #ccccf5 transparent;
}

.chat-form .chat-controls {
  display: flex;
  height: 47px;
  gap: 0;
  align-items: center;
  align-self: flex-end;
}

.chat-form .chat-controls button {
  height: 35px;
  width: 35px;
  border: none;
  font-size: 1.15rem;
  cursor: pointer;
  color: #706DB0;
  background: none;
  border-radius: 50%;
  transition: 0.2s ease;
}

.chat-form .chat-controls #send-message {
  color: #fff;
  display: none;
  background: #5350C4;
  margin-right: 5px;
}

.chat-form .chat-controls #send-message:hover {
  background: #3d39ac;
}

.chat-form .message-input:valid ~ .chat-controls #send-message {
  display: block;
}

.chat-form .chat-controls button:hover {
  background: #f1f1ff;
}

.chat-form .file-upload-wrapper {
  height: 35px;
  width: 35px;
  position: relative;
}

.chat-form .file-upload-wrapper :where(img, button) {
  position: absolute;
}

.chat-form .file-upload-wrapper img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.chat-form .file-upload-wrapper #file-cancel {
  color: red;
  background: #fff;
}

.chat-form .file-upload-wrapper :where(img, #file-cancel),
.chat-form .file-upload-wrapper.file-uploaded #file-upload {
  display: none;
}

.chat-form .file-upload-wrapper.file-uploaded img,
.chat-form .file-upload-wrapper.file-uploaded:hover #file-cancel {
  display: block;
}

em-emoji-picker {
  position: absolute;
  left: 50%;
  top: -337px;
  width: 100%;
  max-width: 350px;
  max-height: 330px;
  visibility: hidden;
  transform: translateX(-50%);
}

body.show-emoji-picker em-emoji-picker {
  visibility: visible;
}

@media (max-width: 1500px) {
  .chatbot-popup {
    position: fixed;
    right: 35px;
    bottom: 90px;
    width: 420px;
    height: 500px;
  }
  .chat-body {
    height: calc(100vh - 400px);
    overflow-y: auto;
    padding: 10px;
  }
}
@media (max-width: 500px) {
  #chatbot-toggler {
    transform: scale(1);
    right: 15px;
    bottom: 15px;
    width: 50px;
    height: 50px;
  }
  #chatbot-toggler:hover {
    transform: scale(1);
  }
  .chatbot-popup {
    z-index: 201;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    max-width: 100%;
  }
  .chatbot-popup .chat-header {
    padding: 14px 18px;
    font-size: 16px;
  }
  .chat-body {
    height: calc(100vh - 250px);
    overflow-y: auto;
    padding: 10px;
  }
  .chat-form {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .chat-form input {
    flex: 1;
    padding: 10px;
    font-size: 14px;
    border-radius: 6px;
  }
  .chat-form .file-upload-wrapper.file-uploaded #file-cancel {
    opacity: 0;
  }
}
.micro-activo {
  animation: animate 1.5s infinite;
}

@keyframes animate {
  0% {
    stroke: #706DB0;
  }
  50% {
    stroke: red;
  }
  100% {
    stroke: #706DB0;
  }
}

/*# sourceMappingURL=app.css.map */
