:root {
  --font-uno: "Orbitron";
  --font-dos: "Molengo";
}

* {
  margin: 0;
  padding: 0;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.05em;
}

input,
input,
textarea {
  border: none;
  outline: none;
  font: inherit;
  color: black; /* Texto siempre negro para que se vea */
  background-color: #d9d9d9; /* El gris de tus campos de arriba */
  padding: 10px 15px; /* Les damos cuerpo */
  border-radius: 15px; /* Estilo redondeado D&A */
  width: 100%; /* Para que no se encojan */
  box-sizing: border-box; /* Para que el padding no desborde el ancho */
}


/* Estilo para campos de texto, EXCLUYENDO el checkbox */
input:not([type="checkbox"]),
textarea {
  border: none;
  outline: none;
  font: inherit;
  color: black !important;
  background-color: #d9d9d9 !important;
  padding: 10px 15px;
  border-radius: 15px;
  width: 100%; /* El 100% ahora solo afecta a los de texto */
  box-sizing: border-box;
  display: block;
  margin-bottom: 15px;
}

/* Estilo específico y forzado para el CHECKBOX */
.content-checkbox {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px;
  margin: 20px 0;
  width: 100%;
}

input[type="checkbox"] {
  all: revert !important; /* Recupera su forma de cuadro */
  appearance: checkbox !important;
  -webkit-appearance: checkbox !important;
  width: 20px !important;  /* Tamaño fijo */
  height: 20px !important;
  min-width: 20px !important;
  cursor: pointer !important;
  margin: 0 !important;
  display: inline-block !important;
}

.content-checkbox label {
  color: white !important;
  font-family: var(--font-dos);
  font-size: 0.9rem;
  cursor: pointer;
  user-select: none;
}


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

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

button {
  all: unset;
  display: inline-block;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

body {
  background: linear-gradient(
      180deg,
      rgba(26, 46, 53, 0.87) 0%,
      rgba(169, 208, 205, 0.82) 100%
    ),
    url("../img/fondos.jpeg");
  background-size: 25%;
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.position-none {
  position: static;
}
/* NAVBAR */

.header-nav {
  background: #1a2e35;
  position: absolute;
  width: 100%;
}

.header-nav > .container-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  position: relative;
  z-index: 10;
}

.container-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.container-logo > img {
  width: 2rem;
}

.container-logo > p {
  font-size: 1rem;
  color: white;
}
.container-svg-navbar > svg {
  color: white;
}

.hidden {
  display: none;
}

header > nav {
  color: white;
  position: absolute;
  top: 0;
  background: #1a2e35;
  width: 100%;
  height: 100vh;
}

header > nav > ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 4px;
}

ul > li {
  display: flex;
  align-items: end;
}

ul > li > a {
  display: flex;
  align-items: end;
  font-size: 1.5rem;
  font-weight: 300;
}

ul > li > a > svg {
  padding: 2px 0;
  width: 2rem;
  height: 2rem;
  viewbox: 0 0 100 100;
  preserveaspectratio: none;
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  header > nav {
    margin-top: 0rem;
    padding: 0 1rem 0rem 0;
    height: fit-content;
    position: relative;
    width: auto;
  }

  header > nav > ul {
    flex-direction: row;
    gap: 2rem;
    align-items: end;
  }

  .container-svg-navbar > svg {
    display: none;
  }

  ul > li > a {
    display: flex;
    align-items: end;
    font-size: 1rem;
  }

  ul > li > a > svg {
    width: 1.4rem;
    height: 1.4rem;
    viewbox: 0 0 100 100;
    preserveaspectratio: none;
  }

  .hidden {
    display: flex !important; /* En PC no queremos nada oculto */
  }
}

/* FOOTER */

footer {
  position: relative;
  z-index: 1;
  color: white;
  background-color: #1a2e35;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  padding: 1rem 1rem;
}

/* COLUMN 1 */

footer > .column1 {
  display: flex;
  flex-direction: column;
}

.column1 > .container-logo-footer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.column1 > .container-logo-footer > p {
  font-size: 1.3rem;
}

.container-logo-footer > img {
  width: 2rem;
}

.column1 > .container-social-footer {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.column1 > .container-social-footer > img {
  width: 2rem;
}

/* COLUMNA 2 */

footer > .column2 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  text-align: center;
  margin-top: 1rem;
  gap: 1rem;
}

.column2 > .container-link-footer > h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.column2 > .container-link-footer > p {
  font-size: 0.8rem;
  font-weight: 400;
}

.column2 > .container-link-footer > form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.column2 > .container-link-footer > form > input {
  width: fit-content;
  border-radius: 6px;
  padding: 5px 10px;
  background: #d9d9d9;
  border: 1px black solid;
  text-align: left;
  color: black;
}

.column2 > .container-link-footer > form > button {
  width: fit-content;
  padding: 6px 30px;
  border-radius: 6px;
  background: #a9d0cd;
  color: white;
  border: 1px black solid;
}

/* COLUMNA 3 */

footer > .column3 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  text-align: center;
  margin-top: 1rem;
  gap: 1rem;
}

.column3 > .content-comunicate {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
}

.column3 > .content-comunicate > img {
  width: 1.5rem;
}

.column3 > .content-comunicate > p {
  font-size: 0.9rem;
}
.privacy {
  background-color: #c1bfbf;
  padding: 0.5rem 1rem;
  text-align: center;
}

.privacy > h3 {
  font-size: 0.2rem;
  color: black;
  padding: 6px;
}

@media (min-width: 425px) {
  footer {
    padding: 1rem 2rem;
  }
}

@media (min-width: 768px) {
  footer > .column1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  footer > .column1 > .container-logo-footer {
    grid-column: span 2 / span 2;
  }

  footer > .column1 > .container-logo-footer {
    display: flex;
    justify-content: left;
  }

  footer > .column2 {
    grid-template-columns: repeat(3, 1fr);
  }

  footer > .column2 > .col-3 {
    grid-column: span 3 / span 3;
  }

  footer > .column3 {
    grid-template-columns: repeat(2, 1fr);
  }

  footer > .column3 > .col-2 {
    grid-column: span 2 / span 2;
  }
}

@media (min-width: 1024px) {
  footer > .column1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  footer > .column1 > .container-logo-footer {
    grid-column: span 3 / span 3;
  }

  footer > .column2 {
    grid-template-columns: repeat(4, 1fr);
  }

  footer > .column2 > .col-3 {
    grid-column: span 1 / span 1;
  }

  footer > .column3 {
    grid-template-columns: repeat(3, 1fr);
  }

  footer > .column3 > .col-2 {
    grid-column: span 1 / span 1;
  }
}

/* HERO */

.hero-index {
  display: flex;
  padding: 6rem 1rem 0 1rem;
  flex-direction: column;
}

.text-hero-index {
  color: white;
}

.text-hero-index > h1 {
  font-size: 2rem;
  text-align: center;
  font-family: var(--font-uno);
}

.text-hero-index > p {
  font-size: 1rem;
  margin: 1.5rem 0;
  text-align: center;
  font-family: var(--font-dos);
}

.container-phone-index {
  display: flex;
  justify-content: center;
  width: 100%;
}

.container-phone-index > iframe {
  border: none;
  margin: auto;
  height: 30rem;
}

@media (min-width: 425px) {
}

@media (min-width: 768px) {
  .hero-index {
    margin: auto;
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .hero-index {
    width: 90%;
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
  }

  .text-hero-index {
    display: flex;
    width: 35%;
    margin-left: -3rem;
    margin-right: 4rem;
    flex-direction: column;
    justify-content: center;
  }
  .container-phone-index {
    display: flex;
    justify-content: center;
    width: fit-content;
  }
}

@media (min-width: 1281px) {
  .hero-index {
    width: 80%;
  }
  .text-hero-index > h1 {
    font-size: 2.2rem;
  }

  .text-hero-index > p {
    font-size: 1.2rem;
  }
  .header-quienes-somos-index > h2 {
    font-size: 2.2rem;
  }
}

/* quienes somos */

.quienes-somos-index {
  padding: 1rem;
}
.header-quienes-somos-index > h2 {
  font-size: 2rem;
  text-align: center;
  color: white;
}

.container-quienes-somos {
  display: flex;
  flex-direction: column;
}

.image-container {
  padding: 1rem;
  display: flex;
  justify-content: center;
}

.image-container > img {
  width: 100%;
}

.text-container {
  color: white;
  gap: 1rem;
  text-align: center;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.text-container > div {
}

.text-container-principal {
  grid-column: span 2 / span 2;
}

.text-container > div > h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.text-container > div > p {
  font-size: 0.8rem;
  font-weight: 400;
}

.text-container > div > p {
  font-size: 0.8rem;
  font-weight: 400;
  font-family: var(--font-dos);
}

@media (min-width: 425px) {
  .quienes-somos-index {
    padding: 2rem;
  }
  .image-container > img {
    width: 15rem;
  }
}

@media (min-width: 768px) {
  .quienes-somos-index {
    width: 60%;
    margin: auto;
  }

  .header-quienes-somos-index {
    display: flex;
    justify-content: center;
  }

  .text-container {
    gap: 1rem;
  }
  .text-container > div {
    display: flex;
    flex-direction: column;
    justify-content: end;
  }
}

@media (min-width: 1024px) {
  .quienes-somos-index {
    width: 70%;
  }
  .image-container > img {
    width: 19rem;
  }
  .container-quienes-somos {
    margin-top: 1rem;
    flex-direction: row;
    gap: 4rem;
  }

  .text-container-principal {
    display: flex;
    flex-direction: column;
    justify-content: end;
  }
}

@media (min-width: 1281px) {
  .quienes-somos-index {
    width: 60%;
  }
  .header-quienes-somos-index > h2 {
    font-size: 2.2rem;
    text-align: center;
    color: white;
  }
}

@media (min-width: 1440px) {
  .quienes-somos-index {
    width: 60%;
  }
  .text-container > div > h2 {
    font-size: 1.7rem;
  }

  .text-container > div > p {
    font-size: 1rem;
  }
}

/* TESTIMONIOS */
.testimonios-index {
  padding: 1rem;
  margin-bottom: 2.5rem;
}

.header-testimonios-index {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
}
.header-testimonios-index > h2 {
  color: white;
  text-align: center;
  font-size: 2rem;
}

.testimonio-items {
  background-color: white;
  border-radius: 1rem;
  padding: 1rem 1rem;
}

.testimonio-items > h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.testimonio-items > p {
  font-size: 0.9rem;
}

.testimonio-items > .testimonio-img {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

@media (min-width: 425px) {
  .testimonios-index {
    padding: 2rem;
  }
}

@media (min-width: 768px) {
  .testimonios-index {
    margin: auto;
    width: 60%;
  }
}

@media (min-width: 1024px) {
  .testimonio-items {
    text-align: center;
    width: 30rem;
    margin: auto;
    padding: 2rem;
  }
  .testimonio-items > p {
    font-size: 0.9rem;
    margin: 0.5rem 0 1.5rem 0;
  }
}

@media (min-width: 1281px) {
  .header-testimonios-index > h2 {
    font-size: 2.3rem;
  }
}

@media (min-width: 1440px) {
  .testimonio-items {
    background-color: white;
    width: 29rem;
    border-radius: 1rem;
    padding: 1.5rem 2rem;
  }

  .testimonio-items > h3 {
    font-size: 1.6rem;
  }

  .testimonio-items > p {
    font-size: 1.2rem;
  }
  .testimonio-items > .testimonio-img {
    margin-top: 1.5rem;
  }

  .testimonio-img > img {
    width: 2rem;
  }
}
/* PORTAFOLIO */

/* HERO - PORTAFOLIO */
.hero-portafolio {
  padding: 5rem 1rem 0 1rem;
  color: white;
}

.hero-portafolio > .header-portafolio {
  margin: 1rem 0rem 2rem 0;
  text-align: center;
  display: flex;
  justify-content: center;
  font-size: 1.2rem;
}

.container-hero-portafolio {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.container-hero-portafolio > .hero-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-items > .hero-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hero-items > .hero-item > .title-hero-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0;
}

.title-hero-item > h2 {
  font-size: 1.3rem;
}

.hero-item > p {
  font-size: 0.8rem;
  font-weight: 400;
  font-family: var(--font-dos);
}

.hero-video > iframe {
  width: 100%;
  border-radius: 6px;
  height: 10rem;
}

@media (min-width: 425px) {
  .hero-portafolio {
  }
}

@media (min-width: 767px) {
  .hero-portafolio {
    width: 70%;
    margin: auto;
    padding: 1rem 1rem 0 1rem;
  }

  .hero-video > iframe {
    height: 17rem;
  }
}

@media (min-width: 1024px) {
  .hero-portafolio {
    width: 60%;
    margin: auto;
  }

  .hero-video > iframe {
    height: 20rem;
  }
}

@media (min-width: 1440px) {
  .hero-portafolio {
    width: 80%;
    margin: auto;
  }

  .hero-portafolio > .header-portafolio {
    margin: 1rem 0rem 5rem 0;
  }
  .container-hero-portafolio {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

/* FORMA DE TRABAJO - PORTAFOLIO */
.forma-trabajo-portafolio {
  padding: 1rem 2rem;
  color: white;
}

.forma-trabajo-portafolio > header {
  text-align: center;
  margin: 0 0 2rem 0;
  display: flex;
  justify-content: center;
}

.container-forma-trabajo {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
}

.card-forma-trabajo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.card-forma-trabajo > .img-forma-trabajo {
  width: 12rem;
  height: 13rem;
  background: #c9c6c6;
  border-radius: 10px;
}
.card-forma-trabajo > h3 {
  font-size: 1.4rem;
}
.card-forma-trabajo > p {
  font-size: 0.8rem;
  text-align: center;
  font-weight: 400;
  font-family: var(--font-dos);
}

.container-button-forma-trabajo {
  display: flex;
  justify-content: end;
  margin-top: 2rem;
}

.container-button-forma-trabajo > button {
  background-color: #1a2e35;
  font-size: 0.8rem;
  padding: 10px 15px 10px 15px;
  border-radius: 16px;
}

@media (min-width: 425px) {
  .forma-trabajo-portafolio {
    padding: 2.2rem;
  }
}

@media (min-width: 768px) {
  .forma-trabajo-portafolio {
    width: 70%;
    margin: auto;
  }
  .forma-trabajo-portafolio > header {
    margin: 0 0 5rem 0;
    font-size: 1.2rem;
  }
  .container-forma-trabajo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .forma-trabajo-portafolio {
    width: 60%;
  }
}

@media (min-width: 1440px) {
  .forma-trabajo-portafolio {
    width: 80%;
  }
  .container-forma-trabajo {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
  }
}

/* DESTACADOS - PORTAFOLIO */

.destacados-portafolio {
  padding: 1rem;
  color: white;
}

.destacados-portafolio > .header-destacados {
  text-align: center;
  font-size: 1rem;
  margin: 2rem 1rem;
}

.container-card-destacados {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-destacados {
  background: #2d2f30;
  padding: 0 1rem 1rem 1rem;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.card-destacados > .container-img {
  padding: 1rem 3rem;
  margin: auto;
}

.card-destacados > .container-img > img {
  width: 10rem;
}

.card-destacados > h2 {
  font-size: 1rem;
}

.card-destacados > .subtitle > h3 {
  font-size: 1rem;
}

.card-destacados > .subtitle > span {
  font-size: 0.8rem;
  font-weight: 400;
}

.card-destacados > p {
  font-size: 0.7rem;
  font-family: var(--font-dos);
}

.card-destacados > .button-destacados {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 1rem;
}

.card-destacados > .button-destacados > button {
  background: #1a2e35;
  padding: 13px 0;
  font-size: 0.8rem;
  border-radius: 10px;
  text-align: center;
}

.destacados-portafolio > .container-buttons-paginate {
  margin-top: 1rem;
  display: flex;
  justify-content: end;
  gap: 0.4rem;
}

.destacados-portafolio > .container-buttons-paginate > button {
  display: flex;
  padding: 0.9rem;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  background-color: #1a2e35;
}

.destacados-portafolio > .container-buttons-paginate > button > img {
  width: 10px;
}

@media (min-width: 425px) {
  .destacados-portafolio {
    padding: 2.2rem;
  }
}
@media (min-width: 768px) {
  .container-card-destacados {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .card-destacados {
    padding: 0 1rem 7.8rem 1rem;
  }

  .card-destacados > .container-img {
    padding: 1rem 0rem;
    margin: 0;
    display: flex;
    justify-content: center;
  }

  .card-destacados > .button-destacados {
    position: absolute;
    display: flex;
    width: 100%;
    bottom: 0;
    margin-bottom: 1rem;
    left: 0;
  }

  .card-destacados > .button-destacados > button {
    margin: 0.1rem 1rem;
  }
}

@media (min-width: 1024px) {
  .destacados-portafolio {
    width: 60%;
    margin: auto;
  }
}

/* BOYSENG - PORTAFOLIO */
.boyseng-portafolio {
  padding: 1rem;
  color: white;
}

.container-text-boyseng {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.container-text-boyseng > .container-title-text-boyseng {
  display: flex;
  flex-direction: column;
  width: fit-content;
  gap: 0.5rem;
  align-items: center;
}

.container-text-boyseng > .container-title-text-boyseng > img {
  width: 3.5rem;
  height: 3.5rem;
}

.container-text-boyseng > .container-dowload-boyseng > img {
  width: 10rem;
  height: 3.5rem;
}

.container-text-boyseng > .subtitle-boyseng > p,
.container-text-boyseng > p {
  font-family: var(--font-dos);
}

.container-img-boysend {
  margin-top: 4rem;
  display: flex;
  justify-content: end;
}

.container-img-boysend > img {
  width: 13rem;
  position: relative;
  margin-bottom: -7rem;
  border-radius: 10px;
}

@media (min-width: 425px) {
  .boyseng-portafolio {
    padding: 2.2rem;
  }
  .container-text-boyseng > .container-dowload-boyseng > img {
    width: 10rem;
    height: 3.5rem;
  }
}

@media (min-width: 768px) {
  .container-text-boyseng {
    width: 60%;
  }

  .container-img-boysend {
    margin-top: -16rem;
  }

  .container-text-boyseng > .container-dowload-boyseng > img {
    width: 8rem;
    height: 2.7rem;
  }

  .container-img-boysend > img {
    width: 14rem;
  }
}

@media (min-width: 1024px) {
  .boyseng-portafolio {
    width: 60%;
    margin: auto;
  }
}

@media (min-width: 1440px) {
  .boyseng-portafolio {
    width: 60%;
    margin: auto;
  }
  .container-text-boyseng {
    width: 50%;
  }

  .container-text-boyseng > .container-title-text-boyseng > h2 {
    font-size: 1.9rem;
  }

  .container-text-boyseng > .subtitle-boyseng > p {
    font-size: 1.1rem;
  }

  .container-text-boyseng > p {
    font-size: 1.1rem;
  }

  .container-img-boysend {
    margin-top: -16rem;
  }

  .container-text-boyseng > .container-dowload-boyseng > img {
    width: 10rem;
    height: 3.5rem;
  }

  .container-img-boysend > img {
    width: 20rem;
    margin-bottom: -14rem;
  }
}

/* CATALAGO */

/* HERO - CATALAGO */
.hero-catalogo {
  padding: 6rem 1rem 0 1rem;
  color: white;
}

.header-hero-catalogo {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.container-img-hero-catalogo {
}

.container-img-hero-catalogo > img {
  width: 100%;
}

@media (min-width: 768px) {
  .hero-catalogo {
    padding: 1rem 3rem 0 3rem;
    width: 80%;
    margin: auto;
  }
}

/* ARTE Y DISEÑO - CATALOGO */

.arte-y-diseño-catalogo {
  padding: 1rem 2rem;
  color: white;
}

.header-arte-y-diseño-catalogo {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.container-arte-y-diseño {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

.card-arte-y-diseño {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: auto;
  align-items: center;
  text-align: center;
  width: 15rem;
  height: 27rem;
  position: relative;
}

.card-arte-y-diseño-navbar-active {
  position: static;
}

.card-arte-y-diseño > .img-card {
  width: 12rem;
  height: 14rem;
  background-color: #dbdbdb;
  border-radius: 7px;
}
.card-arte-y-diseño > .date {
  font-size: 10px;
  color: #969696;
}

.card-arte-y-diseño > p {
  font-size: 15px;
  font-weight: 300;
}
.container-opciones {
  display: flex;
  background: #ffffff;
  gap: 3rem;
  width: fit-content;
  padding: 3px 10px;
  border-radius: 4px;
  position: absolute;
  bottom: 0;
}

.container-opciones > .item-opciones {
  display: flex;
  gap: 5px;
  align-items: center;
}

.container-opciones > .item-opciones > p {
  color: #585757;
}

.container-opciones > .item-opciones > svg {
  color: #585757;
}

@media (min-width: 768px) {
  .arte-y-diseño-catalogo {
    padding: 1rem 2rem;
    width: 80%;
    margin: auto;
    color: white;
  }

  .container-arte-y-diseño {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .card-arte-y-diseño {
    width: 16rem;
    height: 27rem;
  }
}

@media (min-width: 1024px) {
  .arte-y-diseño-catalogo {
    width: 90%;
  }

  .container-arte-y-diseño {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
  .card-arte-y-diseño {
    width: 12rem;
    height: 29rem;
  }
}

@media (min-width: 1440px) {
  .arte-y-diseño-catalogo {
    width: 80%;
  }
  .card-arte-y-diseño {
    width: 15rem;
    height: 27rem;
  }
}

/* TE PUEDE INTERESAR - CATALOGO */

.te-puede-interesar-catalogo {
  background-color: #2d2f30;
  color: white;
  padding: 1rem 0.5rem;
  margin: 1rem 0.5rem;
  border-radius: 6px;
}

.header-te-puede-interesar {
  display: flex;
  justify-content: center;
}

.container-te-puede-interesar {
  display: grid;
  margin-top: 1rem;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  padding: 0.8rem;
}

.card-te-puede-interesar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 12rem;
  margin: 0 auto 0 auto;
}

.card-te-puede-interesar > .img-card {
  width: 100%;
  height: 14rem;
  position: relative;
  background-color: #a6a6a6;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}

.img-card > span {
  width: fit-content;
  background-color: #3d3d3d;
  position: relative;
  top: 0.5rem;
  left: 0.5rem;
  padding: 3px 5px;
  font-size: 10px;
  font-weight: 400;
  border-radius: 4px;
}

.card-te-puede-interesar > p {
  text-align: center;
}
.card-te-puede-interesar > .container-precios {
  display: flex;
  gap: 0.3rem;
  align-items: end;
  justify-content: center;
}

.container-precios > .precio-viejo {
  color: #666666;
  font-weight: 400;
  text-decoration: line-through;
  font-size: 10px;
}
.container-precios > .precio-nuevo {
  color: white;
  font-weight: 400;
  font-size: 12px;
}

@media (min-width: 768px) {
  .header-te-puede-interesar {
    display: flex;
    justify-content: start;
    margin: 1.5rem 1rem 3rem 1rem;
  }
  .te-puede-interesar-catalogo {
    background-color: #2d2f30;
    margin: 3rem 1rem;
  }
  .container-te-puede-interesar {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .header-te-puede-interesar {
    margin: 1.5rem 0rem 2rem 1rem;
  }
  .container-te-puede-interesar {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1440px) {
  .header-te-puede-interesar {
    margin: 1.5rem auto 2rem auto;
    width: 90%;
  }
  .container-te-puede-interesar {
    width: 90%;
    margin: auto;
    grid-template-columns: repeat(4, 1fr);
  }
}

/* TABLA DE PRECIOS - CATALOGO */

.tabla-de-precios-catalogo {
  color: white;
  padding: 1rem;
}

.header-tabla-de-precios {
  padding: 1rem;
  display: flex;
  justify-content: center;
}

.header-tabla-de-precios > h3 {
  font-size: 1.5rem;
}
.container-tabla-de-precios {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  margin: auto;
}

.container-tabla-de-precios > .items-tabla-de-precios {
  width: 18rem;
  margin: auto;
}

.container-tabla-de-precios > .items-tabla-de-precios > h3 {
  font-size: 1rem;
  background-color: #2d2f30;
  text-align: center;
  padding: 15px;
  border-radius: 5px 5px 0 0;
}

.container-tabla-de-precios > .items-tabla-de-precios > h4 {
  font-size: 1rem;
  background-color: white;
  color: black;
  border-bottom: 1px black solid;
  text-align: center;
  padding: 10px;
}

.container-tabla-de-precios > .items-tabla-de-precios > p {
  font-size: 1rem;
  background-color: white;
  color: black;
  border-bottom: 1px black solid;
  text-align: center;
  font-weight: 500;
  padding: 10px;
}

.container-tabla-de-precios
  > .items-tabla-de-precios
  > .container-button-contratar {
  background-color: white;
  width: 100%;
  padding: 13px 0;
  display: flex;
  justify-content: center;
  border-radius: 0 0 5px 5px;
}

.items-tabla-de-precios > .container-button-contratar > button {
  background-color: green;
  padding: 10px;
  text-align: center;
  font-weight: 500;
  width: 80%;
  border-radius: 4px;
}

@media (min-width: 375px) {
}

@media (min-width: 1024px) {
  .container-tabla-de-precios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0rem;
    width: 80%;
  }

  .container-tabla-de-precios > .items-tabla-de-precios {
    width: 100%;
    margin: 0;
  }

  .container-tabla-de-precios > .ecomerce {
    border-left: 2px solid black;
    border-right: 2px solid black;
    z-index: 10;
    border-radius: 5px;
  }

  .container-tabla-de-precios > .sitios-web,
  .container-tabla-de-precios > .cursos-online {
    margin-top: 1rem;
  }
}

@media (min-width: 1280px) {
  .container-tabla-de-precios {
    width: 70%;
  }
}

@media (min-width: 1440px) {
  .container-tabla-de-precios {
    width: 67%;
  }

  .container-tabla-de-precios > .items-tabla-de-precios > h3 {
    font-size: 1.2rem;
  }

  .container-tabla-de-precios > .items-tabla-de-precios > h4 {
    font-size: 1.2rem;
  }

  .container-tabla-de-precios > .items-tabla-de-precios > p {
    font-size: 1.2rem;
  }

  .items-tabla-de-precios > .container-button-contratar > button {
    font-size: 1.1rem;
  }
}

@media (min-width: 1640px) {
  .container-tabla-de-precios {
    width: 60%;
  }
}

@media (min-width: 1913px) {
  .container-tabla-de-precios {
    width: 55%;
  }
}

@media (min-width: 2348px) {
  .container-tabla-de-precios {
    width: 45%;
  }
}

/* CONTACTO  */

.contacto {
  padding: 6rem 1rem 4rem 1rem;
  color: white;
}

.contacto > .header-contacto {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.contacto > .header-contacto > .text-descripcion {
  font-size: 0.8rem;
  font-weight: 500;
  font-family: var(--font-dos);
}

.contacto > .header-contacto > .text-cotizacion {
  font-size: 0.9rem;
  font-weight: 800;
  font-family: var(--font-dos);
}

.contacto > .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 1rem 0 1rem;
}

.content-input {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.content-input > label {
  font-size: 0.8rem;
  font-weight: 500;
}

.content-input > input,
.content-input > textarea {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px;
  background-color: white;
  color: black;
  font-weight: 300;
  border-radius: 4px;
  border: 1px solid #c5c5c4;
  -webkit-box-shadow: 3px 5px 5px 0px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 3px 5px 5px 0px rgba(0, 0, 0, 0.23);
  box-shadow: 3px 5px 5px 0px rgba(0, 0, 0, 0.23);
}

.content-input > input::placeholder,
.content-input > textarea::placeholder {
  color: black;
  opacity: 1;
}

.container-form > form > button {
  padding: 12px 0px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 13px;
  width: 100%;
  text-align: center;
  gap: 0.5rem;
}

.container-form > form > button {
  background-color: #1a2e35;
}

@media (min-width: 375px) {
}

@media (min-width: 768px) {
  .contacto {
    padding: 3rem 1rem 4rem 1rem;
    width: 60%;
    margin: auto;
    color: white;
  }
}

@media (min-width: 1024px) {
  .contacto {
    width: 46%;
  }
}

@media (min-width: 1280px) {
  .contacto {
    width: 40%;
  }
}

@media (min-width: 1440px) {
  .contacto {
    width: 30%;
  }
}

@media (min-width: 1640px) {
  .contacto {
    width: 20%;
  }
}

@media (min-width: 2348px) {
  .contacto {
  }
}

/* LOGIN */

.auth-login {
  padding: 6rem 1rem 0rem 1rem;
  color: white;
}

.auth-login > .header-auth-login {
  text-align: center;
  color: white;
  width: 100%;
  margin-bottom: 2rem;
}

.auth-login > .header-auth-login > .text-descripcion {
  font-size: 0.8rem;
  font-weight: 500;
}

.auth-login > .header-auth-login > .text-cotizacion {
  font-size: 0.9rem;
  font-weight: 800;
}


.container-login-externo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.container-login-externo > .container-logo{
    display: flex;
    justify-content: start;
}

#container-form > .container-login-externo > p {
  font-size: 1rem;
  text-align: center;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: auto;
  font-family: var(--font-dos);
}

#container-form > .container-login-externo > p > img {
  width: 1.8rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.contact-form > h2 {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}

.contact-form > p {
  font-size: 0.9rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1rem;
  font-family: var(--font-dos);
}

.content-input {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.content-input > label {
  font-size: 0.8rem;
  font-weight: 500;
}

.content-input > input,
.content-input > textarea {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 7px 10px;
  background: #d9d9d9;
  color: black;
  border-radius: 15px;
  border: 1px solid #c5c5c4;
  -webkit-box-shadow: 3px 5px 5px 0px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 3px 5px 5px 0px rgba(0, 0, 0, 0.23);
  box-shadow: 3px 5px 5px 0px rgba(0, 0, 0, 0.23);
}

.content-input > input::placeholder,
.content-input > textarea::placeholder {
  color: black;
  opacity: 1;
}

.container-buttons-auth-login {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.container-form > form > .container-buttons-auth-login > .contact-button-login {
  padding: 14px 0px;
  border-radius: 20px;
  font-size: 13px;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  font-family: var(--font-dos);
  background-color: #1a2e35;
}

.container-form
  > form
  > .container-buttons-auth-login
  > .contact-button-register {
  padding: 14px 0px;
  border-radius: 20px;
  font-size: 13px;
  width: 100%;
  font-size: 1rem;

  text-align: center;
  font-family: var(--font-dos);
  background-color: #17ab6d;
}

.register-login {
  display: flex;
  gap: 0.3rem;
  align-items: end;
}

.register-login > p {
  font-size: 0.6rem;
  font-weight: 400;
}
.register-login > a {
  font-size: 0.66rem;
  font-weight: 500;
}

@media (min-width: 375px) {
  .auth-login {
    width: 80%;
    margin: auto;
  }
  
}

@media (min-width: 620px) {
  .auth-login {
    width: 60%;
    margin: auto;
  }
}

@media (min-width: 768px) {
  .auth-login {
    width: 50%;
    margin: auto;
  }
}

@media (min-width: 1024px) {
 
  .auth-login {
    width: 90%;
    margin: auto;
    padding: 2rem 0;
  }

  #container-form {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
  }

  .container-login-externo {
    width: 26rem;
    justify-content: center;
    margin-top: 1rem;
  }

  .contact-form {
    width: 23rem;
  }

  #container-form > .container-login-externo > p {
    width: 100%;
    text-align: start;
    margin: 0;
  }
}

@media (min-width: 1280px) {
}

@media (min-width: 1440px) {
}

@media (min-width: 1640px) {
}

@media (min-width: 1913px) {
  .l-auth-login > .l-header-title > .text-descripcion {
    font-size: 1rem;
  }

  .l-auth-login > .l-header-title > .text-cotizacion {
    font-size: 1.1rem;
  }

  .content-input > label {
    font-size: 1rem;
  }

  .content-input > input,
  .content-input > textarea {
    font-size: 1rem;
    padding: 10px;
  }

  .container-form > form > button {
    padding: 15px 0px;
    font-size: 18px;
  }

  .register-login > p {
    font-size: 1rem;
  }
  .register-login > a {
    font-size: 1.06rem;
  }
}

@media (min-width: 2348px) {
}

/* --- PARCHE D&A SOFTWARE R --- */
.content-input input, 
.content-input textarea {
  background-color: #d9d9d9 !important;
  color: #000 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  border: 1px solid #ccc !important;
  padding: 10px !important;
}

