.producto-card__boton {
  display: inline-block;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

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

body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
}

h1 {
  color: #1565c0;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  color: #666666;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
}

header {
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header img {
  width: 265px;
  height: auto;
  margin-bottom: 2.5rem;
}

.menu-principal {
  width: 100%;
}

.navbar__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar__link {
  position: relative;
  text-decoration: none;
  color: #333;
  font-size: 1.6rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.navbar__link:hover {
  color: #1565c0;
}

.navbar__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 3px;
  background: #1565c0;
  transition: width 0.3s ease;
}

.navbar__link:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  header img {
    width: 200px;
  }
  .navbar__menu {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .navbar__link {
    font-size: 1.2rem;
  }
}
.presentacion {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 2100px;
  margin: 4rem auto;
  gap: 2rem;
}
.presentacion p {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 2rem;
  background: #f5f5f5;
  border-radius: 12px;
  text-align: justify;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.8;
  box-shadow: 0 8px 20px #666666;
}
.presentacion .foto {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px #666666;
  cursor: pointer;
}
.presentacion .foto img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.presentacion .foto:hover {
  box-shadow: 0 18px 35px #666666;
}
.presentacion .foto:hover img {
  transform: scale(1.12);
  opacity: 0.85;
}
@media (max-width: 992px) {
  .presentacion {
    width: 96%;
  }
  .presentacion p {
    flex: 1;
  }
  .presentacion .foto {
    flex: 1;
  }
}
@media (max-width: 768px) {
  .presentacion {
    flex-direction: column;
  }
  .presentacion p {
    min-height: 220px;
    font-size: 1rem;
  }
  .presentacion .foto {
    width: 100%;
  }
}

header {
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header img {
  width: 265px;
  height: auto;
  margin-bottom: 2.5rem;
}

.navbar {
  width: 100%;
}

.navbar__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar__link {
  position: relative;
  text-decoration: none;
  color: #333;
  font-size: 1.6rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.navbar__link:hover {
  color: #1565c0;
}

.navbar__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 3px;
  background: #1565c0;
  transition: width 0.3s ease;
}

.navbar__link:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  header img {
    width: 200px;
  }
  .navbar__menu {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .navbar__link {
    font-size: 1.2rem;
  }
}
.galeria {
  width: 94%;
  max-width: 1800px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.galeria__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.galeria__item {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px #666666;
  cursor: pointer;
}
.galeria__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}
.galeria__item:hover img {
  transform: scale(1.12);
}

@media (max-width: 992px) {
  .galeria__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 600px) {
  .galeria {
    width: 96%;
    margin: 2.5rem auto;
  }
  .galeria__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.galeria__contacto {
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.galeria__boton {
  padding: 1rem 2rem;
  background-color: #1565c0;
  border-color: #1565c0;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 10px;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.galeria__boton:hover {
  background-color: #0d47a1;
  border-color: #0d47a1;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(21, 101, 192, 0.3);
}

.galeria__boton:focus-visible {
  background-color: #0d47a1;
  border-color: #0d47a1;
  outline: 3px solid #333333;
  outline-offset: 4px;
}

.contacto {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 75vh;
  padding: 4rem 1.5rem;
  background-color: #f5f5f5;
}

.contacto__contenedor {
  width: 100%;
  max-width: 850px;
  padding: 3rem;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 35px #666666;
}

.contacto__encabezado {
  margin-bottom: 2.5rem;
  text-align: center;
}

.formulario-contacto {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.formulario-contacto__campo {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.formulario-contacto__campo label {
  color: #333333;
  font-size: 1rem;
  font-weight: 700;
}
.formulario-contacto__campo input,
.formulario-contacto__campo select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #d8d8d8;
  border-radius: 10px;
  color: #333333;
  background-color: #ffffff;
  font: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.formulario-contacto__campo input:focus,
.formulario-contacto__campo select:focus {
  outline: none;
  border-color: #1565c0;
  box-shadow: 0 0 0 4px #666666;
}
.formulario-contacto__campo input:invalid:not(:placeholder-shown),
.formulario-contacto__campo select:invalid {
  border-color: #1565c0;
}
.formulario-contacto__campo input:valid,
.formulario-contacto__campo select:valid {
  border-color: #2e7d32;
}

.formulario-contacto__boton {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 10px;
  color: #ffffff;
  background-color: #666666;
  font: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.formulario-contacto__boton:hover {
  background-color: #1565c0;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px #666666;
}
.formulario-contacto__boton:active {
  transform: translateY(0);
}
.formulario-contacto__boton:focus-visible {
  outline: 3px solid #333333;
  outline-offset: 4px;
}

@media (max-width: 600px) {
  .contacto {
    padding: 2.5rem 1rem;
  }
  .contacto__contenedor {
    padding: 2rem 1.25rem;
  }
  .formulario-contacto__boton {
    font-size: 1rem;
  }
}
.productos {
  width: 94%;
  max-width: 1800px;
  margin: 4rem auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.producto-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
  min-height: 520px;
  padding: 3rem;
  background-color: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.producto-card--invertida {
  flex-direction: row-reverse;
}

.producto-card__contenido {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.producto-card__titulo {
  margin-bottom: 1rem;
  color: #333333;
  font-size: clamp(2rem, 3vw, 3rem);
  text-align: left;
}

.producto-card__precio {
  margin-bottom: 1.25rem;
  color: #1565c0;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  font-weight: 800;
}

.producto-card__descripcion {
  max-width: 60ch;
  margin-bottom: 2rem;
  color: #444444;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.8;
  text-align: justify;
}

.producto-card__boton {
  color: #ffffff;
  background-color: #1565c0;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.producto-card__boton:hover {
  background-color: #0d47a1;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(21, 101, 192, 0.3);
}

.producto-card__imagen {
  flex: 0 0 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 420px;
  height: 420px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.producto-card__imagen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.producto-card__imagen:hover img {
  transform: scale(1.08);
}

@media (max-width: 900px) {
  .producto-card,
  .producto-card--invertida {
    flex-direction: column;
    align-items: stretch;
  }
  .producto-card__contenido {
    width: 100%;
  }
  .producto-card__imagen {
    flex: none;
    width: min(100%, 420px);
    height: auto;
    aspect-ratio: 1/1;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .productos {
    width: 96%;
    margin: 2.5rem auto;
    gap: 2rem;
  }
  .producto-card {
    padding: 2rem 1.25rem;
    gap: 2rem;
  }
  .producto-card__titulo {
    font-size: 2rem;
  }
  .producto-card__descripcion {
    font-size: 1rem;
  }
}
footer {
  width: 100%;
  margin-top: 4rem;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-align: center;
  background-color: #f5f5f5;
  border-top: 1px solid #dddddd;
}

footer p {
  margin: 0;
}

footer a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer a:hover {
  color: #1565c0;
}

.nosotros {
  width: 94%;
  max-width: 1800px;
  margin: 4rem auto;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.nosotros__presentacion,
.nosotros__disenador {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.nosotros__disenador {
  flex-direction: row-reverse;
}

.nosotros__contenido {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nosotros__contenido p {
  margin-bottom: 1.5rem;
  color: #333333;
  font-size: 1.1rem;
  line-height: 1.9;
  text-align: justify;
}

.nosotros__imagen {
  flex: 0 0 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nosotros__imagen img {
  width: 420px;
  height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease;
}

.nosotros__imagen:hover img {
  transform: scale(1.08);
}

.nosotros__proposito h2 {
  margin-bottom: 3rem;
  text-align: center;
}

.nosotros__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.nosotros-card {
  padding: 2.5rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.nosotros-card__titulo {
  margin-bottom: 1rem;
  color: #1565c0;
  font-size: 1.6rem;
}

.nosotros-card__texto {
  color: #333333;
  line-height: 1.8;
  text-align: justify;
}

.nosotros__valores h2 {
  margin-bottom: 3rem;
  text-align: center;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.valor-card {
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.valor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.valor-card h3 {
  margin-bottom: 1rem;
  color: #1565c0;
}

.valor-card p {
  color: #333333;
  line-height: 1.7;
}

.nosotros__contacto {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 4rem 2rem;
  background-color: #f7f9fc;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.nosotros__contacto p {
  max-width: 700px;
  color: #333333;
  font-size: 1.1rem;
  line-height: 1.8;
}

.nosotros__boton {
  display: inline-block;
  padding: 1rem 1.5rem;
  color: #ffffff;
  background-color: #1565c0;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.nosotros__boton:hover {
  background-color: #0d47a1;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(21, 101, 192, 0.3);
}

.nosotros__boton:focus-visible {
  outline: 3px solid #333333;
  outline-offset: 4px;
}

@media (max-width: 992px) {
  .nosotros__presentacion,
  .nosotros__disenador {
    flex-direction: column;
  }
  .nosotros__cards {
    grid-template-columns: 1fr;
  }
  .valores-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .nosotros {
    width: 96%;
    margin: 2.5rem auto;
    gap: 3rem;
  }
  .nosotros__imagen {
    flex: 0 0 auto;
    width: 100%;
  }
  .nosotros__imagen img {
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 1/1;
  }
  .nosotros__contenido p {
    font-size: 1rem;
  }
  .nosotros-card {
    padding: 2rem 1.25rem;
  }
  .valor-card {
    padding: 2rem 1.25rem;
  }
  .nosotros__contacto {
    padding: 3rem 1.25rem;
  }
}

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