body {
  background-color: var(--background-color-2);
}

strong {
  font-weight: 500;
  color: var(--colorUno);
}

html {
  scroll-behavior: smooth;
}

:root {
  --color-1: #00a99d;
  --color-1-hover: #108f96;
  --color-2: #ffffff;
  --color-2: #eee;
  --background-color-1: #dedede;
  --background-color-2: #222222;
  --background-color-3: #00a99d1a;
  --box-shadow-1: 0px 1px 2px #00000040;
  --box-shadow-2: 0px 1px 10px #000000;
  --border-1: 1px solid #ccc;
  --dark-alt-color: #777777;
  --button-color: #333333;
  --transition: 0.5s ease-in-out;
  --bg-color: #121212;
  --text-color: #f0f0f0;
  --box-bg: #000;
  --que-color: #00ccff;
  --divider-gradient: linear-gradient(
    to right,
    transparent,
    var(--que-color),
    transparent
  );
}

* {
  -webkit-tap-highlight-color: transparent;
  -moz-tap-highlight-color: transparent;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  font-family: "Squada One", sans-serif;
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

/* ================================================== header ================================================== */

.marquee-container {
  width: 100%;
  overflow: hidden;
  background-color: var(--background-color-1);
  padding: 10px 0;
  box-shadow: var(--box-shadow-1);
}

.marquee {
  display: flex;
  align-items: center;
  width: 200%;
  animation: scroll-left 20s linear infinite;
}

.marquee-img {
  width: 40px;
  height: auto;
  margin: 0 15px;
}

.marquee span {
  display: flex;
  align-items: center;
  font-family: "Squada One", sans-serif;
  font-size: 1.25rem;
  color: var(--letter-color-black);
  letter-spacing: 2px;
  white-space: nowrap;
  width: 100%;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .marquee span {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }

  .marquee-img {
    width: 25px;
    margin: 0 10px;
  }
}

header {
  background-color: var(--background-color-1);
  box-shadow: var(--box-shadow-2);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  margin: 0px auto;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

.logo-icon {
  width: 250px;
  cursor: pointer;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-right: 25px;
  cursor: pointer;
  font-size: 20px;
  text-transform: uppercase;
}

nav ul li:last-child {
  margin-right: 0px;
}

nav ul li a {
  color: var(--textColor);
}

nav ul li img {
  height: 14px;
  margin-right: 5px;
}

.cta-button {
  display: flex;
  align-items: center;
  background-color: var(--color-1);
  color: var(--color-2);
  font-size: 20px;
  border-radius: 5px 5px 5px 0px;
  padding: 0.5rem 0.5rem;
  text-transform: uppercase;
  cursor: pointer;
}

.cta-button:hover {
  background-color: var(--color-1-hover);
}

.whatsapp-icon {
  width: 20px;
  margin-right: 5px;
}

.has-submenu {
  position: relative;
}

.submenu {
  z-index: 99;
  margin-top: 35.25px;
  position: absolute;
  top: 100%;
  width: max-content;
  overflow: hidden;
  max-height: 0;
  opacity: 1;
  transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
  padding: 0;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  background-color: var(--background-color-1);
}

.submenu li {
  padding: 0;
  margin: 0;
}

.submenu li a {
  padding: 10px 15px;
  display: block;
  color: var(--textColor);
  border-bottom: var(--border-1);
}

.has-submenu.show-submenu .submenu {
  max-height: 500px;
  opacity: 1;
  padding: 0;
}

.submenu-trigger {
  display: flex;
  align-items: center;
}

.toggle-submenu {
  position: relative;
  width: 25px;
  height: 25px;
  background: transparent;
  border: var(--border-1);
  cursor: pointer;
  margin-left: 5px;
}

.toggle-submenu::before,
.toggle-submenu::after {
  content: "";
  background-color: var(--color-1);
  position: absolute;
  transition: all 0.3s ease;
}

.toggle-submenu::before {
  width: 75%;
  height: 3px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.toggle-submenu::after {
  width: 3px;
  height: 75%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scaleY(1);
  transform-origin: center;
}

.has-submenu.show-submenu .toggle-submenu::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.hamburgler {
  display: none;
}

@media (max-width: 1024px) {
  .header-content {
    width: 98%;
  }

  .logo-icon {
    width: 180px;
  }

  nav ul li {
    margin-right: 10px;
  }

  .cta-button {
    padding: 0.25rem 0.25rem;
  }

  .submenu {
    margin-top: 31px;
  }
}

@media (max-width: 768px) {
  header {
    box-shadow: none;
  }

  .header-content {
    flex-direction: column;
    padding-top: 0px;
    padding-bottom: 0px;
    width: 100%;
    margin-bottom: 2px;
  }

  .logo-container {
    width: 100%;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: space-between;
    padding: 10px 10px;
    align-items: center;
  }

  .logo-icon {
    width: 220px;
    margin-right: 0px;
  }

  nav {
    width: 100%;
    margin-top: 2px;
    top: 100%;
    position: absolute;
    z-index: 9999;
  }

  .menu {
    flex-direction: column;
    background-color: var(--background-color-1);
    overflow: hidden;
    max-height: 0;
    opacity: 1;
    padding: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
  }

  .menu.open {
    max-height: 500px;
    opacity: 1;
  }

  .menu li {
    width: 100%;
  }

  .menu li a {
    display: inline-block;
    width: 100%;
    padding: 6px 0px 6px 8px;
    border-bottom: var(--border-1);
  }

  .submenu {
    margin-top: 0px;
    box-shadow: none;
    width: 100%;
    position: static;
    background-color: var(--background-color-3);
  }

  .cta-button {
    display: none;
  }

  .toggle-submenu {
    width: 34px;
    height: 33px;
    margin-left: 0px;
    border-top: 0;
  }

  .toggle-submenu::before {
    width: 60%;
  }

  .toggle-submenu::after {
    height: 50%;
  }

  .hamburgler {
    width: 25px;
    height: 25px;
    display: block;
    transition: 0.3s ease all;
    cursor: pointer;
  }

  .hamburgler.no-hamburgler {
    transform: rotate(-45deg);
  }

  .bun,
  .meat {
    display: block;
    width: 100%;
    background: var(--color-1);
    height: 20%;
    transition: 0.3s ease all;
    border-radius: 50px;
  }

  .meat {
    margin: 20% 0;
  }

  .hamburgler.no-hamburgler .top {
    height: 38%;
    width: 20%;
    margin-left: 40%;
    border-radius: 50px 50px 0 0;
  }

  .hamburgler.no-hamburgler .bottom {
    height: 38%;
    width: 20%;
    margin-left: 40%;
    border-radius: 0 0 50px 50px;
  }

  .hamburgler.no-hamburgler .meat {
    margin: 2% 0;
  }
}

/* ================================================== /index.html/portada ================================================== */

.hero {
  max-width: 100%;
  padding-inline: 2.5%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  padding-top: 10px;
  padding-bottom: 10px;
}

.hero__text {
  width: 50%;
}

.hero__title {
  text-align: center;
  margin: 0 0 1rem;
  font-size: 3.5vw;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-1);
}

.hero__lead,
.hero__body {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--color-2);
}

.hero__cta {
  padding-top: 40px;
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  font-size: 1.25rem;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--dark);
  color: var(--color-2);
  box-shadow: var(--shadow);
}

.btn--color-1 {
  background: var(--color-1);
  color: var(--color-2);
  box-shadow: var(--shadow);
}

.hero__image-wrapper {
  width: 50%;
  text-align: center;
}

.hero__image {
  width: 80%;
  max-width: 100%;
  height: auto;
}

.hero__image2 {
  width: 60%;
  max-width: 100%;
  height: auto;
}

.title-slider {
  font-size: 30px;
  margin: 20px 0;
  color: var(--letter-color);
  font-weight: bold;
  text-align: center;
  color: var(--color-2);
}

.separator {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #00a99d, #b1fffa);
  margin: 10px auto;
}

.cont-princ-slider {
  overflow: hidden;
  width: 100%;
  margin: auto;
  position: relative;
  cursor: grab;
}

.cont-princ-slider.dragging {
  cursor: grabbing;
}

.slier-prin {
  display: flex;
  transition: transform 0.5s ease;
}

.slide-img {
  flex: 0 0 25%;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  padding: 10px;
  text-align: center;
}

.slide-img img {
  max-height: 90px;
  width: auto;
  display: block;
  user-select: none;
  pointer-events: none;
}

.slide-title {
  font-size: 14px;
  margin-top: 5px;
  color: var(--color-2);
}

@media (max-width: 768px) {
  .hero__image {
    width: 70%;
  }

  .hero {
    flex-direction: column-reverse;
    gap: 1rem;
  }

  .slide-img {
    padding: 5px;
  }

  .title-slider {
    font-size: 22px;
  }

  .slide-img img {
    max-height: 60%;
  }

  .hero__image-wrapper,
  .hero__text {
    width: 100%;
  }

  .title-slider {
    font-size: 22px;
  }

  .hero__title {
    font-size: 22px;
  }

  .hero__lead,
  .hero__body {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .hero__image2 {
    display: none;
  }
}

/* ================================================== /index.html/planes ================================================== */

.custom-slider-center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 12vh;
  margin: 0;
  background: var(--background-color-1);
  padding: 20px;
  text-transform: uppercase;
}

#custom-slider {
  display: flex;
  gap: 12px;
  font-size: 28px;
  flex-wrap: wrap;
  text-align: center;
}

.slider-static {
  display: flex;
}

#custom-slider-value {
  color: var(--color-1);
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
}

.letter-hidden {
  opacity: 0;
}

.letter-animation {
  animation: fade-in 0.3s forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.text-hold-animation {
  animation: hold-visible 4s;
}

@keyframes hold-visible {
  0% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.pricing-page {
  background: linear-gradient(135deg, #004f4b, #007a75);
  color: var(--color-2);
  margin: 0px;
  text-align: center;
  min-height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.plans-container {
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.plan {
  background-color: #007a75;
  border: 3px solid #004f4b;
  border-radius: 8px;
  width: 30%;
  box-shadow: 0 0 8px rgba(0, 169, 157, 0.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease,
    background-color 0.3s ease;
  cursor: pointer;
}

.plan:hover {
  box-shadow: 0 10px 20px rgba(0, 169, 157, 0.9);
  background-color: #009688;
  transform: translateY(-10px);
}

.plan-header {
  background: rgba(0, 169, 157, 0.8);
  padding: 20px 5px 10px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  font-size: 1.6em;
}

.plan-cost {
  padding: 20px 15px 10px;
  text-align: right;
  position: relative;
}

.plan-from {
  position: absolute;
  top: 10px;
  left: 15px;
  font-weight: 600;
  font-size: 1em;
  text-transform: uppercase;
  opacity: 0.8;
}

.plan-price-original {
  text-decoration: line-through underline;
  font-size: 1.2em;
  opacity: 1;
  color: #ff4c4c;
  display: block;
}

.plan-price-discount {
  color: #00ffcc;
  font-weight: 600;
  font-size: 2.5em;
  display: inline-block;
}

.plan-type {
  font-size: 0.7em;
  opacity: 0.8;
  text-transform: uppercase;
  margin-left: 5px;
}

.plan-features {
  list-style: none;
  padding: 0 5% 20px;
  margin: 0;
  text-align: left;
  flex-grow: 1;
}

.plan-features li {
  padding: 8px 0 8px 30px;
  position: relative;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.plan-features li::before {
  position: absolute;
  left: 0;
  top: 8px;
  font-weight: bold;
}

.plan-features li.check::before {
  content: "✓";
  color: #00ffcc;
}

.plan-features li.cross::before {
  content: "✗";
  color: #ff4c4c;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-select {
  border-top: 1px solid rgba(0, 129, 124, 0.3);
  padding: 20px;
  text-align: center;
}

.plan-select a {
  background-color: #004f4b;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  font-size: 0.75em;
  font-weight: 600;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
}

.plan-select a img {
  height: 20px;
  width: 20px;
}

.plan-select a:hover {
  background-color: #007a75;
}

@media (max-width: 900px) {
  .plan {
    width: 45%;
  }
}

@media (max-width: 768px) {
  #custom-slider {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .plan {
    width: 95%;
  }
}

@media (max-width: 480px) {
  #custom-slider {
    font-size: 18px;
    flex-direction: column;
    align-items: center;
  }
}

/* ================================================== /index.html/servicios ================================================== */
/* ================================================== /servicios/index.html/servicios ================================================== */

.servicios {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #222222;
  gap: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.servicios-box {
  border: 2px solid white;
  color: white;
  padding: 10px 40px;
  font-size: 24px;
  width: 200px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.servicios-box:hover {
  background-color: white;
  color: #222222;
}

.container {
  width: 95%;
  margin: 0 auto;
}

.card-cyan {
  --clr: #3cd6c7;
}

.card-pink {
  --clr: #d5d5d5;
}

.card-blue {
  --clr: #5b98eb;
}

.card-purple {
  --clr: #7d5fff;
}

.card__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 90%;
  margin: 0px auto;
}

.card__bx {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2e2e2e;
  transition: var(--transition);
  box-sizing: border-box;
  border-radius: 8px;
  min-height: 350px;
  text-align: center;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.5);
}

.card__data {
  gap: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0px;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.card__icon {
  height: 80px;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2e2e2e;
  color: var(--clr);
  box-shadow: 0 0 0 4px #2e2e2e, 0 0 0 6px var(--clr);
  transition: var(--transition);
}

.card__bx:hover .card__icon {
  color: #2e2e2e;
  background-color: var(--clr);
  box-shadow: 0 0 0 4px #2e2e2e, 0 0 0 300px var(--clr);
}

.card__content {
  padding-inline: 10px;
  line-height: 1.5rem;
}

.card__content h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-2);
  transition: var(--transition);
}

.card__bx:hover .card__content h3 {
  color: #2e2e2e;
}

.card__content p {
  font-size: 0.9rem;
  color: var(--dark-alt-color);
  transition: var(--transition);
}

.card__bx:hover .card__content p {
  color: #2e2e2e;
}

.card__data a {
  display: inline-flex;
  padding: 8px 15px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  border: 2px solid var(--clr);
  color: #2e2e2e;
  background-color: var(--clr);
  transition: var(--transition);
}

.card__bx:hover .card__data a {
  color: var(--clr);
  background-color: #2e2e2e;
}

.card__bx:hover {
  background-color: var(--clr);
  transform: scale(1.05);
}

.card__bx.active {
  transform: scale(1.05);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
  background-color: var(--clr);
}

.card__bx.active .card__icon {
  color: #2e2e2e;
  background-color: var(--clr);
  box-shadow: 0 0 0 4px #2e2e2e, 0 0 0 300px var(--clr);
}

.card__bx.active .card__data a {
  color: var(--clr);
  background-color: #2e2e2e;
}

.card__bx.active .card__content h3,
.card__bx.active .card__content p {
  color: #2e2e2e;
}

@media (max-width: 1024px) {
  .card__container {
    gap: 25px;
    width: 100%;
  }

  .card__content h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 879px) {
  .card__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .card__content h3 {
    font-size: 0.9rem;
  }

  .card__content p {
    font-size: 0.9rem;
    line-height: 1rem;
  }

  .card__data a {
    padding: 4px 15px;
  }

  .card__bx {
    min-height: 250px;
  }

  .card__container {
    gap: 10px;
  }
}

@media (max-width: 425px) {
  .card__content h3 {
    font-size: 0.7rem;
    line-height: 1rem;
  }

  .card__content p {
    font-size: 0.6rem;
    line-height: 1rem;
  }
}

/* ================================================== footer ================================================== */

.site-footer {
  background-color: var(--background-color-1);
  color: var(--color-3);
  font-family: "Squada One", sans-serif;
  padding: 40px 20px 20px;
  font-size: 16px;
  text-align: center;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-icons img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.footer-icons img:hover {
  transform: scale(1.3);
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 15px;
  font-size: 14px;
  color: #666;
}

/* ==================================================  /contacto/index.html/formulario ================================================== */

.page_wrapper {
  background-color: #0a0a0a;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.form_wrapper {
  background: #1a1a1a;
  color: #fff;
  width: 100%;
  max-width: 500px;
  padding: 25px;
  margin: 0 auto;
  border-top: 5px solid var(--color-1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  border-radius: 8px;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form_wrapper .title_container {
  text-align: center;
  padding-bottom: 15px;
  color: #fff;
}

.input_field {
  position: relative;
  margin-bottom: 20px;
}

.input_field > span {
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 100%;
  border-right: 1px solid #444;
  color: #ccc;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.input_field > span i {
  font-size: 18px;
}

.input_field input,
.input_field textarea {
  width: 100%;
  padding: 10px 10px 10px 40px;
  box-sizing: border-box;
  border: 1px solid #444;
  background: transparent;
  color: #eee;
  outline: none;
  transition: 0.3s ease;
  font-family: inherit;
  font-size: 16px;
  border-radius: 4px;
}

.input_field input::placeholder,
.input_field textarea::placeholder {
  color: #888;
}

.input_field input:focus,
.input_field textarea:focus {
  border: 1px solid var(--color-1);
  box-shadow: 0 0 5px 2px rgba(26, 245, 234, 0.6);
  background: #222;
  color: #fff;
}

.input_field textarea {
  resize: vertical;
  height: 80px;
}

.input_field .no_icon {
  padding-left: 10px;
}

.input_field input[type="submit"] {
  background: var(--color-1);
  color: #ffffff;
  border: none;
  height: 40px;
  cursor: pointer;
  padding-left: 0;
  transition: 0.3s ease;
  width: 100%;
  border-radius: 4px;
  font-weight: bold;
  font-size: 16px;
}

.input_field input[type="submit"]:hover {
  background: var(--color-1);
}

@media (max-width: 480px) {
  .form_wrapper {
    padding: 20px;
    font-size: 15px;
  }

  .input_field > span i {
    font-size: 20px;
  }

  .input_field input,
  .input_field textarea {
    font-size: 15px;
    padding-left: 42px;
  }

  .input_field input[type="submit"] {
    font-size: 16px;
  }

  .title_container h2 {
    font-size: 20px;
  }
}

.mensaje-exito {
  color: #155724;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  padding: 10px;
  border-radius: 6px;
}

.mensaje-error {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  padding: 10px;
  border-radius: 6px;
}

/* ================================================== /servcios/diseño-grafico.html/portada ================================================== */

.fondo-portada-ds {
  background-image: url("/img/diseñoGraficoFondo.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 60vw;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
}

.fondo-portada-ds h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: #5b98eb;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 1px 1px 0 #4776b8, 2px 2px 0 #406fad, 3px 3px 0 #3a66a2,
    4px 4px 0 #345e98, 5px 5px 0 #2f578e, 6px 6px 0 #2a5085, 7px 7px 0 #25487b,
    8px 8px 0 #1f4072, 9px 9px 0 #1a3968, 10px 10px 6px rgba(0, 0, 0, 0.3);
}

@media (max-width: 600px) {
  .fondo-portada-ds h1 {
    text-shadow: 1px 1px 0 #4776b8, 2px 2px 0 #406fad, 3px 3px 0 #3a66a2,
      4px 4px 0 #345e98, 5px 5px 4px rgba(0, 0, 0, 0.25);
  }
}

/* ================================================== /servcios/diseño-grafico.html/AI y PS ================================================== */

.diseño-grafico-ai {
  display: flex;
  align-items: stretch;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0px 5px 10px #000000;
  overflow: hidden;
  margin: 40px auto;
  width: 95%;
}

.segundo-ai {
  flex-direction: row-reverse;
}

.slider {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.slides img:first-child {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 1;
  animation: fadeOut 12s infinite;
  z-index: 1;
  position: relative;
}

.slides img:nth-child(2) {
  width: 100%;
  height: auto;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  animation: fadeIn 12s infinite;
  z-index: 2;
}

@keyframes fadeOut {
  0%,
  40% {
    opacity: 1;
  }
  55%,
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0%,
  40% {
    opacity: 0;
  }
  55%,
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.diseño-grafico-ai > div:last-child {
  flex: 1;
  padding: 1.25rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.primer-ai > div:last-child {
  background: linear-gradient(135deg, #330000, #ff9a00);
}

.segundo-ai > div:last-child {
  background: linear-gradient(135deg, #31a8ff, #001e36);
}

.diseño-grafico-ai h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.diseño-grafico-ai p {
  font-size: 1.25rem;
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .diseño-grafico-ai h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .diseño-grafico-ai p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (max-width: 768px) {
  .diseño-grafico-ai {
    flex-direction: column;
  }

  .diseño-grafico-ai > div:last-child {
    padding: 1rem;
  }

  .diseño-grafico-ai > div:last-child {
    text-align: center;
  }
}

@media (max-width: 425px) {
  .diseño-grafico-ai h1 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .diseño-grafico-ai p {
    font-size: 0.8rem;
    line-height: 1.6;
  }

  .diseño-grafico-ai > div:last-child {
    padding: 1rem;
  }
}

/* ================================================== /servcios/diseño-grafico.htmml/gallery ================================================== */
.galleryContainer {
  position: relative;
}
.gallery-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem;
  padding: 0.25rem;
  will-change: transform;
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
}

.card {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

.card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  will-change: transform;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.modal.visible {
  display: flex;
}

.modal img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
}

.controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 30px;
}

.controls button,
.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.controls button:hover,
.close-btn:hover {
  transform: scale(1.1);
}

.close-btn {
  top: 20px;
  right: 30px;
  position: absolute;
  font-size: 2rem;
}

@media (max-width: 800px) {
  .gallery-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .gallery-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================================================== spinner ================================================== */

@keyframes spin-clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin-counterclockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

#loader-overlay {
  position: fixed;
  inset: 0;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2147483647;
}

.spinner-container {
  position: relative;
  width: 60px;
  height: 60px;
}

.spinner-outer {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 4px solid transparent;
  border-top-color: #3498db;
  border-right-color: #3498db;
  border-radius: 50%;
  animation: spin-clockwise 1.2s linear infinite;
}

.spinner-inner {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 44px;
  height: 44px;
  border: 4px solid transparent;
  border-bottom-color: #272727;
  border-left-color: #272727;
  border-radius: 50%;
  animation: spin-counterclockwise 0.8s linear infinite;
}

body.loading main {
  visibility: hidden;
}

/* ================================================== /servicios/bloques-codigo.html/iframes ================================================== */

.bloques-frames {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 20px;
  padding: 20px 10px;
  width: 95vw;
  margin: 0 auto;
  box-sizing: inherit;
}

.proyecto-contenedor {
  box-sizing: content-box;
  border: 1px solid #000000b4;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  box-shadow: 0px 4px 10px #000000f2;
  background: #2a2a2a;
}

.proyecto {
  position: relative;
  width: 100%;
  aspect-ratio: 1024 / 600;
  overflow: hidden;
  border: none;
  box-shadow: none;
}

.proyecto iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 1024px;
  height: 600px;
  transform-origin: top left;
  border: none;
  box-shadow: none;
  pointer-events: auto;
}

.info-proyecto {
  font-family: "Squada One", cursive;
  color: #eee;
  border-bottom: 1px solid #000000b4;
  padding: 10px 15px;
  width: 100%;
  box-sizing: border-box;
  background-color: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.info-proyecto a:first-child {
  text-decoration: none;
  color: #eee;
  font-size: 1.2em;
  white-space: nowrap;
  flex-grow: 1;
}

.boton-proyecto {
  display: inline-flex;
  align-items: stretch;
  text-decoration: none;
  font-size: 1em;
  background-color: #3a3a3a;
  color: #eee;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 0 5px #00000080;
  transition: background-color 0.3s, transform 0.2s;
}

.boton-proyecto:hover {
  background-color: #444;
  transform: translateY(-1px);
}

.icono-boton {
  background-color: #4a4a4a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-right: 1px solid #666;
}

.icono-boton img {
  width: 20px;
  height: 20px;
}

.texto-boton {
  padding: 5px 10px;
  display: flex;
  align-items: center;
}

@media (max-width: 1024px) {
  .bloques-frames {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 670px) {
  .bloques-frames {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 450px) {
  .bloques-frames {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .info-proyecto a:first-child {
    font-size: 1em;
  }

  .icono-boton {
    padding: 0 5px;
  }

  .texto-boton {
    padding: 5px 5px;
  }

  .info-proyecto {
    padding: 10px 10px;
    gap: 0px;
  }
}

/* ================================================== /servcios/mantenimiento.html/portada ================================================== */

.fondo-portada-mg {
  background-image: url("/img/configuracionesYMantenimiento.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 60vw;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
}

.fondo-portada-mg h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: #d5d5d5;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 1px 1px 0 #bfbfbf, 2px 2px 0 #aaaaaa, 3px 3px 0 #959595,
    4px 4px 0 #808080, 5px 5px 0 #6b6b6b, 6px 6px 0 #565656, 7px 7px 0 #414141,
    8px 8px 0 #2c2c2c, 9px 9px 0 #171717, 10px 10px 6px rgba(0, 0, 0, 0.3);
}

@media (max-width: 600px) {
  .fondo-portada-mg h1 {
    text-shadow: 1px 1px 0 #bfbfbf, 2px 2px 0 #aaaaaa, 3px 3px 0 #959595,
      4px 4px 0 #808080, 5px 5px 4px rgba(0, 0, 0, 0.25);
  }
}

/* ================================================== /servcios/mantenimiento.html/services-grid ================================================== */

body.light-mode {
  --bg-color: #f9f9f9;
  --text-color: #111;
  --box-bg: #fff;
  --que-color: #0077cc;
}
.services-grid-mayor {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: "Inter", sans-serif;
  margin: 0;
  transition: background 0.3s, color 0.3s;
}
#main-content {
  padding: 40px 5%;
}
.services-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}
.services-grid.two {
  grid-template-columns: repeat(2, 1fr);
}
.services-grid.three {
  grid-template-columns: repeat(3, 1fr);
}
.services-grid.one {
  grid-template-columns: 1fr;
}
.service-box {
  background-color: var(--box-bg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  padding: 30px 25px;
  border-radius: 12px;
  transition: 0.3s;
}
.service-title {
  text-align: center;
  font-size: 1rem;
  color: var(--que-color);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.divider {
  height: 2px;
  width: 80%;
  margin: 0 auto 20px auto;
  background-image: var(--divider-gradient);
}
.service-box p {
  line-height: 1.7;
  font-size: 0.9rem;
  text-align: justify;
}
.theme-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 20%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 40, 100, 0.5);
  cursor: pointer;
  z-index: 1000;
}
.theme-icon img {
  width: 40px;
  height: 40px;
}
.whatsapp-btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 999;
}
.whatsapp-btn img {
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  box-shadow: none;
}
@media (max-width: 900px) {
  .services-grid.two,
  .services-grid.three {
    grid-template-columns: 1fr;
  }
}

/* ================================================== /servcios/diseño-web.html/portada ================================================== */

.fondo-portada-mg-2 {
  background-image: url("/svg/responsive.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 60vw;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
}

.fondo-portada-mg-2 h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: #4db8ff;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 1px 1px 0 #44a6e6, 2px 2px 0 #3c94cc, 3px 3px 0 #337fb3,
    4px 4px 0 #2b6b99, 5px 5px 0 #225880, 6px 6px 0 #1a4666, 7px 7px 0 #12334d,
    8px 8px 0 #0a2133, 9px 9px 0 #01101a, 10px 10px 6px rgba(0, 0, 0, 0.3);
}

@media (max-width: 600px) {
  .fondo-portada-mg-2 h1 {
    text-shadow: 1px 1px 0 #44a6e6, 2px 2px 0 #3c94cc, 3px 3px 0 #337fb3,
      4px 4px 0 #2b6b99, 5px 5px 4px rgba(0, 0, 0, 0.25);
  }
}

iframe.iframe-lazy {
  background: #f0f0f0 url("/svg/spinner.svg") center center no-repeat;
  min-height: 300px;
  border: none;
}
iframe.iframe-lazy.loaded {
  background: none;
}

/* ================================================== /index.html/hosting ================================================== */

.hosting {
  padding-top: 50px;
  padding-bottom: 50px;
  min-width: 100%;
  width: 100%;
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
  padding-inline: 40px;
  margin: 0;
  display: flex;
  justify-content: center;
}
.wrapper-hostinger {
  display: flex;
  gap: 24px;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
}

.card-hostinger {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.text-card-hostinger {
  flex: 2;
  min-width: 280px;
}

.image-card-hostinger {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-card-hostinger img {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.text-card-hostinger h2 {
  margin-top: 0;
  color: #673de6;
  font-size: 1.4em;
}

.title-desktop-hostinger {
  display: block;
}

.title-mobile-hostinger {
  display: none;
}

.text-card-hostinger p {
  line-height: 1.6;
}

.text-card-hostinger a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 18px;
  background-color: #673de6;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  max-width: 100%;
  overflow-wrap: break-word;
}

.text-card-hostinger a:hover {
  background-color: #502bbd;
}

.text-card-hostinger a img {
  width: 16px;
  height: 16px;
}

.disclaimer-hostinger {
  font-size: 0.85rem;
  color: #666;
  margin-top: 10px;
}

.copy-section-hostinger {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.copy-section-hostinger code {
  background-color: #775fd8;
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 0.95rem;
  font-family: "Courier New", monospace;
  word-break: break-word;
  overflow-x: auto;
  max-width: 100%;
  flex: 1 1 auto;
}

.copy-section-hostinger button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 0.9rem;
  background-color: #673de6;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.copy-section-hostinger button:hover {
  background-color: #502bbd;
}

.copy-section-hostinger button img {
  width: 16px;
  height: 16px;
}

#copyMsg {
  color: green;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hosting {
    padding-inline: 10px;
  }
  .wrapper-hostinger {
    flex-direction: column;
    align-items: stretch;
    gap: 0px;
  }

  .text-card-hostinger,
  .image-card-hostinger {
    width: 100%;
  }

  .image-card-hostinger {
    margin-bottom: 20px;
  }

  .image-card-hostinger img {
    max-width: 150px;
  }

  .copy-section-hostinger {
    flex-direction: column;
    align-items: stretch;
  }

  .copy-section-hostinger code,
  .copy-section-hostinger button {
    width: 100%;
  }

  .copy-section-hostinger button {
    justify-content: center;
  }

  .title-desktop-hostinger {
    display: none;
  }

  .title-mobile-hostinger {
    display: block;
  }
}

/* ================================================== /index.html/FAQ ================================================== */

.accordion-container {
  margin: 0 auto;
  padding: 20px 0;
  background-color: #161616;
  border-bottom: 1px solid #a1a1a1;
}

.accordion-title-main {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--color-2);
}

.accordion-item {
  width: 95%;
  margin: 10px auto;
  border: 1px solid #000000;
  border-radius: 8px;
  overflow: hidden;
  background-color: #1f1f1f;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  cursor: pointer;
  background-color: #1f1f1f;
  border-bottom: 1px solid #000000;
  margin-bottom: -1px;
}

.accordion-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.icon {
  position: relative;
  width: 16px;
  height: 16px;
}

.icon span {
  position: absolute;
  background-color: #ffffff;
  transition: transform 0.6s ease;
}

.icon .horizontal {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.icon .vertical {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%) scaleY(1);
  transform-origin: center;
}

.accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.6s ease;
}

.accordion-inner {
  padding: 16px;
  color: #e9e9e9;
  line-height: 1.6;
}

.accordion-item.active .vertical {
  transform: translateX(-50%) scaleY(0);
}

.note {
  background-color: #f1f5f9;
  border-left: 4px solid #3182ce;
  padding: 0.75rem;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #2a4365;
  border-radius: 4px;
}

@media (max-width: 600px) {
  .accordion-title {
    font-size: 14px;
  }

  .accordion-header {
    padding: 12px;
  }

  .accordion-inner {
    padding: 12px;
  }

  .accordion-title-main {
    font-size: 20px;
  }
}
