html {
  scroll-behavior: smooth;
}

.cta {
  border-radius: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.0666666667);
  border: 1px rgba(255, 255, 255, 0.4) solid;
  text-decoration: none;
  color: inherit;
  font-weight: bold;
}

h1, h2, h3 {
  font-weight: normal;
}

h1 {
  letter-spacing: -0.05em;
  font-size: 2.5rem;
}

h2 {
  letter-spacing: -0.05em;
  font-size: 2rem;
}

h3 {
  font-weight: bold;
  letter-spacing: -0.04em;
  font-size: 1.2rem;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  background: #EEE;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

strong {
  font-style: italic;
}

html {
  letter-spacing: -0.02em;
  font-size: clamp(15px, 0.4464285714vw + 13.5714285714px, 20px);
  font-family: "calibri";
}

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

.svg {
  max-height: 2rem;
  width: 100%;
  fill: #EEE;
  position: absolute;
}
.svg .curve_mid {
  fill: rgba(255, 255, 255, 0.5);
}
.svg.top {
  transform: rotate(180deg);
  top: 0;
}
.svg.bottom {
  bottom: 0;
}

.seccion-estandar .card_diferencias {
  display: grid;
  grid-template-areas: "icono titulo" "descripcion descripcion";
  place-items: center;
  gap: 0.5rem;
  padding: 1rem;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
}
.seccion-estandar .card_diferencias .icono {
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.3), 0 0 0.2rem rgba(0, 0, 0, 0.21), 0 0 0.3rem rgba(0, 0, 0, 0.12);
  border-radius: 100%;
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  min-height: 2rem;
  grid-area: icono;
}
@media (max-width: 426px) {
  .seccion-estandar .card_diferencias .icono {
    justify-self: start;
  }
}
.seccion-estandar .card_diferencias .titulo {
  text-align: left;
  justify-self: start;
  grid-area: titulo;
}
.seccion-estandar .card_diferencias .descripcion {
  place-self: start;
  grid-area: descripcion;
}
@media (max-width: 426px) {
  .seccion-estandar .card_diferencias {
    grid-template-areas: "icono" "titulo" "descripcion";
  }
}

.seccion-estandar .card_estandar {
  overflow: hidden;
  border-radius: 0.5rem;
  display: grid;
  background: white;
  gap: 0.5rem;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1333333333);
}
.seccion-estandar .card_estandar .subtitulo {
  color: white;
  background: linear-gradient(rgba(17, 17, 51, 0.7333333333), rgba(17, 17, 51, 0.7333333333)), radial-gradient(circle at top center, white, black);
  text-align: center;
  padding: 5px 0px;
  white-space: nowrap;
}
.seccion-estandar .card_estandar .descripcion {
  padding: 1rem 1rem;
}
.seccion-estandar .card_estandar .imagen {
  aspect-ratio: 16/9;
}

.card_servicio {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1333333333);
}
.card_servicio .descuento {
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.5), 0 0 0.4rem rgba(0, 0, 0, 0.35), 0 0 0.6rem rgba(0, 0, 0, 0.2);
  font-weight: bold;
  font-size: 1.2rem;
  transform: rotate(-10deg);
  position: absolute;
  background: red;
  color: white;
  left: 0.5rem;
  top: 1rem;
  padding: 0.5rem;
  border-radius: 1rem;
}
.card_servicio .precio_original {
  text-align: center;
  font-size: 0.8rem;
  color: gray;
  min-height: 1rem;
  font-style: italic;
}
.card_servicio .arriba {
  position: relative;
}
.card_servicio .arriba .titulo {
  color: rgba(255, 255, 255, 0.8666666667);
  background: linear-gradient(rgba(17, 17, 51, 0.7333333333), rgba(17, 17, 51, 0.7333333333)), radial-gradient(circle at top center, white, black);
  text-align: center;
  padding: 0.5rem 0;
  font-weight: bold;
}
.card_servicio .abajo {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
  padding: 1rem;
}
.card_servicio .abajo .precio {
  text-align-last: center;
}
.card_servicio .abajo .ticket {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.card_servicio .abajo .icono {
  width: 1rem;
}
.card_servicio .abajo .descripcion {
  flex: 1;
  place-items: center;
}
.card_servicio .call {
  text-decoration: none;
  text-align: center;
  padding: 0.5rem 0;
  font-weight: bold;
  background: linear-gradient(rgba(17, 17, 51, 0.7333333333), rgba(17, 17, 51, 0.7333333333)), radial-gradient(circle at top center, white, black);
  color: white;
}

.card_proceso {
  border-radius: 1rem;
  overflow: hidden;
  display: grid;
  background: white;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1333333333);
  align-content: start;
  grid-template-rows: auto auto 1fr auto;
}
.card_proceso .imagen {
  padding: 0;
}
.card_proceso > * {
  padding: 0 1rem;
}
.card_proceso .descripcion {
  padding-top: 1rem;
}
.card_proceso .titulo {
  background: linear-gradient(rgba(17, 17, 51, 0.7333333333), rgba(17, 17, 51, 0.7333333333)), radial-gradient(circle at top center, white, black);
  color: rgba(255, 255, 255, 0.8666666667);
  text-align: center;
  font-size: 1.2rem;
  padding: 0.5rem 0;
  font-weight: bold;
}
.card_proceso .tickets {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: grid;
  gap: 0.5rem;
}
.card_proceso .icono {
  width: 1rem;
}
.card_proceso .ticket {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.card_faq {
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1333333333);
  background: white;
}
.card_faq .pregunta {
  padding: 0.5rem 0rem;
  background: linear-gradient(rgba(17, 17, 51, 0.7333333333), rgba(17, 17, 51, 0.7333333333)), radial-gradient(circle at top center, white, black);
  color: white;
  text-align: center;
}
.card_faq .respuesta {
  padding: 1rem;
}

.card_portafolio {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1333333333);
  background: white;
}
.card_portafolio .url {
  color: white;
  width: 100%;
  text-align: center;
  font-weight: bold;
  padding: 0.5rem 0rem;
  display: block;
  text-decoration: none;
  background: linear-gradient(rgba(17, 17, 51, 0.7333333333), rgba(17, 17, 51, 0.7333333333)), radial-gradient(circle at top center, white, black);
}
.card_portafolio .cuerpo {
  display: grid;
  gap: 0.5rem;
  justify-items: center;
  align-items: start;
  padding: 0.5rem 1rem;
}
.card_portafolio .cliente {
  color: rgba(0, 0, 0, 0.5333333333);
}
.card_portafolio .avatar {
  border-radius: 100%;
  width: 5rem;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.5), 0 0 0.4rem rgba(0, 0, 0, 0.35), 0 0 0.6rem rgba(0, 0, 0, 0.2);
}
.card_portafolio .estrellas {
  display: flex;
}
.card_portafolio .estrella {
  width: 1rem;
}
.card_portafolio .testimonio {
  text-align: center;
  font-style: italic;
}

.seccion-elementos {
  position: relative;
  background: linear-gradient(rgba(17, 17, 51, 0.7333333333), rgba(17, 17, 51, 0.7333333333)), radial-gradient(circle at top center, white, black);
  color: rgba(255, 255, 255, 0.8666666667);
  padding: 1rem 3%;
}
.seccion-elementos strong {
  color: #FF7;
}
.seccion-elementos {
  position: relative;
  place-items: center;
  padding-bottom: 4rem;
  padding-top: 4rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 3fr;
  grid-template-areas: "imagen titulo" "imagen cards";
}
.seccion-elementos .titulo {
  text-align: center;
  grid-area: titulo;
}
.seccion-elementos .imagen {
  border-radius: 1rem;
  max-width: 15rem;
  grid-area: imagen;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.5), 0 0 0.4rem rgba(0, 0, 0, 0.35), 0 0 0.6rem rgba(0, 0, 0, 0.2);
}
@media (max-width: 1025px) {
  .seccion-elementos {
    grid-template-columns: 1fr;
    grid-template-areas: "titulo" "imagen" "cards";
  }
}

.seccion-elementos .cards {
  display: grid;
  gap: 1rem;
  grid-area: cards;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 426px) {
  .seccion-elementos .cards {
    grid-template-columns: 1fr;
  }
}

.seccion-elementos .card {
  display: grid;
  grid-template-areas: "icono subtitulo" ". descripcion";
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  gap: 0.4rem;
}
.seccion-elementos .card .icono {
  border-radius: 100%;
  place-self: center;
  grid-area: icono;
  width: 1.5rem;
  height: auto;
  box-shadow: 0 0 0.1rem rgba(255, 255, 255, 0.5), 0 0 0.2rem rgba(255, 255, 255, 0.35), 0 0 0.3rem rgba(255, 255, 255, 0.2);
}
@media (max-width: 769px) {
  .seccion-elementos .card .icono {
    justify-self: start;
  }
}
.seccion-elementos .card .subtitulo {
  grid-area: subtitulo;
}
.seccion-elementos .card .descripcion {
  grid-area: descripcion;
}
@media (max-width: 769px) {
  .seccion-elementos .card {
    grid-template-areas: "icono" "subtitulo" "descripcion";
  }
}

.seccion-estandar {
  display: grid;
  gap: 2rem;
  padding: 2rem 2%;
  margin: 0 auto;
}
.seccion-estandar > .titulo {
  text-align: center;
}
.seccion-estandar p {
  color: #777;
}
.seccion-estandar .card {
  width: 100%;
}

.seccion-estandar .cards {
  display: grid;
  justify-content: center;
  justify-items: center;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 427px) and (max-width: 1025px) {
  .seccion-estandar .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .seccion-estandar .cards > :last-child:nth-child(odd) {
    grid-column: span 2;
    max-width: 400px;
  }
}
@media (max-width: 426px) {
  .seccion-estandar .cards {
    grid-template-columns: 1fr;
  }
}

.seccion-hero1 {
  position: relative;
  background: linear-gradient(rgba(17, 17, 51, 0.7333333333), rgba(17, 17, 51, 0.7333333333)), radial-gradient(circle at top center, white, black);
  color: rgba(255, 255, 255, 0.8666666667);
  padding: 1rem 3%;
}
.seccion-hero1 strong {
  color: #FF7;
}
.seccion-hero1 {
  gap: 1rem;
  grid-template-columns: auto 3fr 1fr 1fr;
  place-items: center;
  display: grid;
  padding-bottom: 3rem;
  grid-template-areas: "empresa		menu	contacto	contacto" "titulo	titulo		pc	pc" "descripcion		descripcion	pc	pc" "cta		cta	phone	tablet";
}
.seccion-hero1 a {
  color: inherit;
  text-decoration: none;
}
.seccion-hero1 .empresa {
  height: 2rem;
  display: grid;
  grid-auto-flow: column;
  place-items: center;
  gap: 0.5rem;
}
.seccion-hero1 .empresa .marca {
  font-size: 2rem;
  margin: 0px;
  padding: 0px;
  line-height: 1;
}
.seccion-hero1 .empresa .logo {
  min-height: 2rem;
  height: 2rem;
  min-width: 1.5rem;
  width: 1.5rem;
}
.seccion-hero1 .menu {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  text-transform: capitalize;
  grid-area: menu;
  gap: 0.5rem;
}
.seccion-hero1 .menu .enlace {
  padding: 0.1rem 0.5rem;
  border-radius: 1rem;
  border: 1px white solid;
}
.seccion-hero1 .contactos {
  display: flex;
  grid-area: contacto;
  gap: 0.5rem;
}
.seccion-hero1 .contactos img {
  width: 1.5rem;
  height: auto;
}
.seccion-hero1 .contactos .contacto {
  display: grid;
  place-items: center;
  grid-auto-flow: column;
  gap: 0.2rem;
}
.seccion-hero1 .titulo {
  place-self: end start;
  grid-area: titulo;
}
.seccion-hero1 .descripcion {
  place-self: start start;
  grid-area: descripcion;
}
.seccion-hero1 .cta {
  grid-area: cta;
}
.seccion-hero1 .fotografia {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.5), 0 0 0.4rem rgba(0, 0, 0, 0.35), 0 0 0.6rem rgba(0, 0, 0, 0.2);
}
.seccion-hero1 .fotografia.pc {
  grid-area: pc;
}
.seccion-hero1 .fotografia.tablet {
  grid-area: tablet;
}
.seccion-hero1 .fotografia.phone {
  grid-area: phone;
}
@media (max-width: 1025px) {
  .seccion-hero1 {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "	logo	marca	contacto	" "	menu	menu	menu	" "	titulo	titulo	titulo	" "	descripcion	descripcion	descripcion	" "	pc	pc	phone	" "	pc	pc	tablet	" "	cta	cta	cta	";
  }
  .seccion-hero1 .empresa {
    place-self: center start;
  }
  .seccion-hero1 .contactos {
    place-self: center end;
  }
  .seccion-hero1 .menu {
    width: 100%;
    flex-wrap: wrap;
  }
  .seccion-hero1 .menu .enlace {
    flex: 1;
    text-align: center;
    white-space: nowrap;
  }
  .seccion-hero1 .logo {
    place-self: center end;
  }
  .seccion-hero1 .texto {
    display: none;
  }
}
@media (max-width: 426px) {
  .seccion-hero1 {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "	empresa	contacto	" "	titulo	titulo	" "	descripcion	descripcion	" "	menu	menu	" "	pc	pc	" "	phone	tablet	" "	cta	cta	";
  }
}

.seccion-hero2 {
  position: relative;
  display: grid;
  place-items: center;
  position: relative;
  background: linear-gradient(rgba(17, 17, 51, 0.7333333333), rgba(17, 17, 51, 0.7333333333)), radial-gradient(circle at top center, white, black);
  color: rgba(255, 255, 255, 0.8666666667);
  padding: 1rem 3%;
}
.seccion-hero2 strong {
  color: #FF7;
}
.seccion-hero2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.seccion-hero2 .container {
  place-items: center start;
  gap: 1rem;
  text-align: left;
  margin: 0 auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: grid;
  grid-template-areas: "titulo imagen" "subtitulo imagen" "descripcion imagen " "cta imagen";
  --pc:block;
  --tablet:none;
  --phone:none;
}
.seccion-hero2 .container .titulo {
  grid-area: titulo;
}
.seccion-hero2 .container .subtitulo {
  grid-area: subtitulo;
  font-style: italic;
}
.seccion-hero2 .container .descripcion {
  max-width: 20rem;
  grid-area: descripcion;
}
.seccion-hero2 .container .imagen {
  border-radius: 1rem;
  height: 100%;
  width: 100%;
  max-width: 20rem;
  object-fit: cover;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.5), 0 0 0.4rem rgba(0, 0, 0, 0.35), 0 0 0.6rem rgba(0, 0, 0, 0.2);
  grid-area: imagen;
}
.seccion-hero2 .container .imagen.pc {
  display: var(--pc);
}
.seccion-hero2 .container .imagen.tablet {
  display: var(--tablet);
}
.seccion-hero2 .container .imagen.phone {
  display: var(--phone);
}
@media (max-width: 1025px) {
  .seccion-hero2 .container {
    --pc:none;
    --tablet:block;
    --phone:none;
  }
}
@media (max-width: 426px) {
  .seccion-hero2 .container {
    text-align: center;
    place-items: center;
    grid-template-columns: 1fr;
    grid-template-areas: "titulo" "imagen" "subtitulo" "descripcion" "cta";
    --pc:none;
    --tablet:none;
    --phone:none;
  }
}

.seccion_footer {
  background: linear-gradient(rgba(17, 17, 51, 0.7333333333), rgba(17, 17, 51, 0.7333333333)), radial-gradient(circle at top center, white, black);
  color: white;
  text-align: center;
  position: relative;
  display: grid;
  gap: 2rem;
  height: 90vh;
  align-content: center;
}
.seccion_footer .icono {
  width: 2rem;
}
.seccion_footer .contactos {
  display: grid;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.seccion_footer .contacto {
  display: flex;
  gap: 0.5rem;
  place-items: center;
}
.seccion_footer .copyright {
  font-weight: bold;
}
.seccion_footer a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.body {
  position: relative;
}

.whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
}
.whatsapp img {
  width: 3rem;
}

strong {
  display: inline-block;
}
