@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

.contenedor {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 480px) {
  .contenedor {
    padding: 2rem 0;
  }
}

.padding-top {
  padding-top: 2rem;
}

.padding-bottom {
  padding-bottom: 2rem;
}

.padding-laterales {
  padding: 0 15rem;
}

.tema-beige-curvo {
  color: #BF8E63;
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: "Bonheur Royale", serif;
}

.tema-uno {
  font-family: "Noto Serif", serif;
  color: #3f3d3d;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.tema-cursiva {
  font-family: "Bonheur Royale", serif;
  color: #3f3d3d;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.tema-beige {
  font-family: "Montserrat", sans-serif;
  color: #BF8E63;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.tema-beige-tamano {
  font-family: "Noto Serif", serif;
  color: #BF8E63;
  font-size: 4rem;
  margin-bottom: 1rem;
  padding: 1.5rem;
  text-align: center;
  justify-content: center;
}

.tema-p {
  padding: 1rem;
  font-family: "Noto Serif", serif;
  color: #3f3d3d;
  font-size: 1.3rem;
  text-align: justify;
  line-height: 1.5;
}

.centrar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.alerta {
  padding: 1.5rem 1.5rem 1.5rem 3rem;
  text-transform: uppercase;
  margin: 1rem 0;
  font-size: 1.2rem;
  font-weight: bold;
}
.alerta__error {
  background-color: rgb(249, 217.8, 217.8);
  border-left: 0.5rem solid rgb(225, 69, 69);
  color: rgb(225, 69, 69);
}
.alerta__exito {
  background-color: rgb(231.6, 248.6, 231.6);
  border-left: 0.5rem solid #8adf8a;
  color: #8adf8a;
}

.boton-primario {
  background-color: rgb(225.06, 225.06, 225.06);
  font-size: 1.2rem;
  color: #3f3d3d;
  font-family: "Noto Serif", serif;
  border: none;
  padding: 1rem;
}

.boton-claro {
  padding: 1rem 3rem;
  border: 1px solid #BF8E63;
  font-family: "Noto Serif", serif;
  font-weight: 400;
  font-size: 1.5rem;
  background-color: #ffffff;
  color: #3f3d3d;
}

.header {
  height: auto;
  width: 100%;
  background-color: #F2F2F2;
}

.encabezado {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #BF8E63;
  text-transform: uppercase;
}

.header__navegacion {
  display: none;
}
@media (min-width: 768px) {
  .header__navegacion {
    display: block;
    background-color: #F2F2F2;
    width: 100%;
    padding: 0.5rem;
  }
  .header__navegacion ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .header__navegacion li {
    margin: 0 2rem;
  }
  .header__navegacion a {
    text-decoration: none;
    color: #3f3d3d;
    font-family: "Noto Serif", serif;
    font-size: 2rem;
  }
  .header__navegacion a:hover {
    color: #BF8E63;
    font-weight: bold;
  }
}
.header__navegacion img {
  width: 7rem; /* Ajusta el tamaño del logo */
}

footer {
  width: 100%;
  background-color: #F2F2F2;
  bottom: 0;
  color: #3f3d3d;
}

.footer-logo {
  display: flex;
  justify-content: center;
}
.footer-logo img {
  width: 80px;
}

.footer-content {
  font-family: "Noto Serif", serif;
  padding: 0.5rem;
  color: #3f3d3d;
}

.footer-info {
  display: flex;
  text-align: center;
  justify-content: center;
  font-size: 1rem;
  width: 100%;
}

.footer-social {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.footer-social .social-links a {
  margin: 0 0.5rem;
  font-size: 1.5rem;
}

.footer-copyright {
  display: flex;
  justify-content: center;
  font-size: 0.8rem;
}

.header__mobile {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .header__mobile {
    display: none;
  }
  .header__mobile .abrir,
  .header__mobile .cerrar {
    display: none;
  }
}

.logo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.logo a {
  margin: 0;
}
.logo img {
  width: 80px;
  height: 80px;
}

.abrir {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.abrir img {
  width: 2.5rem;
}
.abrir img:hover {
  cursor: pointer;
}

.cerrar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.cerrar img {
  width: 2.5rem;
}
.cerrar img:hover {
  cursor: pointer;
}

.menu {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  z-index: 1000;
}
.menu li {
  padding: 1rem;
}
.menu li:hover {
  border-radius: 0.5rem;
  background-color: #BF8E63;
}
.menu a {
  text-decoration: none;
  color: #3f3d3d;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.2rem;
  transition: color 0.3s ease;
  line-height: 2;
}

.mostar {
  display: block;
}

.ocultar {
  display: none;
}

#bienvenida {
  background-color: #F2F2F2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
#bienvenida svg {
  margin: 1rem;
  width: 45px;
}

.bienvenida-titulo {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  margin: 2rem;
  font-size: 2rem;
  font-weight: 500;
  color: #BF8E63;
}

.bienvenida-texto {
  text-align: center;
  margin: 1rem;
  font-size: 1.8rem;
  font-weight: 300;
  color: #3f3d3d;
  font-family: "Noto Serif", serif;
}
@media (min-width: 768px) {
  .bienvenida-texto {
    text-align: center;
    margin: 2rem;
    font-size: 3rem;
  }
}

.nosotros-contenido {
  display: flex;
  color: #3f3d3d;
  padding: 1rem;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.nosotros-contenido h2 {
  margin: 0.5rem;
}
.nosotros-contenido p {
  font-family: "Noto Serif", serif;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.nosotros-contenido .nosotros-equipo {
  font-family: "Bonheur Royale", serif;
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  .nosotros-contenido {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .nosotros-contenido .nosotros-imagen {
    height: 100%;
    background-image: url("/build/img/equipo2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.nosotros-inicio {
  background-image: image-set(url("/build/img/banner4.webp") type("image/webp") 1x, url("/build/img/banner4.png") type("image/png") 1x, url("/build/img/banner4.jpg") type("image/jpg") 1x);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.8);
  height: 40vh;
}

.presentacion {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.nosotros-grid {
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .nosotros-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 2.5rem;
  }
}
.nosotros-grid .imagen-nosotros {
  display: none;
  padding: 1rem;
  align-items: center;
  text-align: center;
}
.nosotros-grid .imagen-nosotros img {
  width: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .nosotros-grid .imagen-nosotros {
    display: block;
  }
}

.imagen-redondeada {
  justify-content: center;
  text-align: center;
}
.imagen-redondeada img {
  border: 3px solid #BF8E63;
  width: 40%;
  height: 50%;
  border-radius: 50%;
}

.plantillas {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.plantillas-encabezado {
  text-align: center;
}

.plantillas-h2 {
  font-family: "Noto Serif", serif;
  color: #3f3d3d;
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 2rem;
  text-align: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .plantillas-contenido {
    display: flex;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.plantillas-texto {
  margin-bottom: 1rem;
}

.plantillas-grid-uno {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 1rem;
  color: #3f3d3d;
}
.plantillas-grid-uno .plantillas-texto {
  margin-right: 1rem;
  background-color: #F2F2F2;
  padding: 1rem 1rem 1rem 6rem;
}
.plantillas-grid-uno .plantillas-texto .plantillas-numero {
  display: flex;
  color: #BF8E63;
  font-size: 4rem;
  font-weight: 700;
}
.plantillas-grid-uno .plantillas-texto .plantillas-nombre {
  font-family: "Noto Serif", serif;
  font-size: 2rem;
}
.plantillas-grid-uno .plantillas-texto p {
  text-align: justify;
  font-size: 1.3rem;
}

.plantillas-grid-dos {
  padding-left: 1rem;
  color: #3f3d3d;
}
.plantillas-grid-dos .plantillas-texto {
  background-color: #F2F2F2;
  padding: 1rem 1rem 1rem 6rem;
}
.plantillas-grid-dos .plantillas-texto .plantillas-numero {
  text-align: right;
  color: #BF8E63;
  font-size: 4rem;
  font-weight: 700;
}
.plantillas-grid-dos .plantillas-texto .plantillas-nombre {
  text-align: right;
  font-family: "Noto Serif", serif;
  font-size: 2rem;
}
.plantillas-grid-dos .plantillas-texto p {
  text-align: justify;
  margin: 0;
  font-size: 1.3rem;
}

.boton-centrado {
  text-align: center;
  padding: 2rem;
}

.plantillas-ejemplo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.plantillas-ejemplo img {
  width: 40%;
}

.boton {
  padding: 1rem;
}
.boton button {
  margin-left: auto;
  display: block;
}

.plantillas-inicio {
  background-image: image-set(url("/build/img/banner5.webp") type("image/webp") 1x, url("/build/img/banner5.png") type("image/png") 1x, url("/build/img/banner5.jpg") type("image/jpg") 1x);
  background-size: cover;
  background-position: center;
  height: 60vh;
  width: 100%;
}

.titulo {
  margin: 2rem 0;
}

.bodas {
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.compromiso {
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.retrato {
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.detalle-boda {
  background-color: #F2F2F2;
}
.detalle-boda img {
  width: 100%;
  margin-bottom: 1rem;
}

.detalle-plan img {
  width: 100%;
  margin-bottom: 1rem;
}

.contenido-plan {
  width: 100%;
  font-family: "Noto Serif", serif;
  border-left: 2px solid #BF8E63;
  color: #3f3d3d;
}
.contenido-plan ul {
  padding: 1rem;
}
.contenido-plan li {
  font-size: 1.5rem;
  font-weight: 200;
  text-align: left;
  line-height: 45px;
}

.motivo {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .motivo {
    display: grid;
    grid-template-columns: 4fr 1fr;
    position: relative;
  }
}

.motivo-imagen {
  background-image: url("/build/img/motivo.jpg");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 50vh;
}
@media (min-width: 768px) {
  .motivo-imagen {
    height: 100vh;
  }
}

.motivo-borde {
  background-color: #F2F2F2;
  padding: 1rem;
}
@media (min-width: 768px) {
  .motivo-borde {
    width: 30%;
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
    padding: 0.5rem;
  }
}

.motivo-titulo {
  font-size: 2.3rem;
  color: #3f3d3d;
  text-align: center;
  font-family: "Bonheur Royale", serif;
  padding: 1rem;
}

.motivo-descripcion {
  font-size: 1.2rem;
  color: #3f3d3d;
  text-align: center;
  padding: 1rem;
}
@media (min-width: 768px) {
  .motivo-descripcion {
    font-size: 1.5rem;
    padding: 1rem;
  }
}

.motivo-linea {
  border: 1px solid #BF8E63;
}

.incluye {
  background-color: #F2F2F2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .incluye .incluye-contenido {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.incluye .incluye-contenido .incluye-elemento {
  display: flex;
}
.incluye .incluye-contenido .incluye-elemento .incluye-logo {
  border-radius: 50%;
  background-color: rgb(225.06, 225.06, 225.06);
  margin: 1rem;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.incluye .incluye-contenido .incluye-elemento .incluye-logo img {
  border-radius: 50%;
  border: 1px solid #BF8E63;
  width: 5rem;
}
.incluye .incluye-contenido .incluye-elemento .incluye-descripcion {
  display: flex;
  background-color: rgb(225.06, 225.06, 225.06);
  color: #3f3d3d;
  font-size: 1.3rem;
  justify-content: center;
  align-items: center;
  margin: 1rem;
  padding: 1rem;
  width: 100%;
}

.planes {
  padding: 2rem 1rem;
}

@media (min-width: 768px) {
  .planes-contenido {
    display: flex;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.2rem;
  }
}
.planes-contenido svg {
  width: 60px;
}
.planes-contenido .planes-individual {
  margin: 5px;
  text-align: center;
  align-items: center;
  padding: 1rem 0.2rem;
  background-color: #F2F2F2;
}
@media (min-width: 768px) {
  .planes-contenido .planes-individual {
    padding: 20px;
  }
}

.planes-nombre {
  margin: 1rem;
  font-size: 3.5rem;
  color: #3f3d3d;
  font-family: "Bonheur Royale", serif;
  text-align: center;
}

.planes-descripcion {
  text-align: center;
  color: #3f3d3d;
  font-family: "Noto Serif", serif;
}

.planes-precio {
  text-align: center;
  margin: 1rem;
  font-size: 3.5rem;
  color: #3f3d3d;
  font-family: "Bonheur Royale", serif;
}

.testimonios {
  margin: 2rem 0;
}

.testimonios-encabezado {
  text-align: center;
  align-items: center;
}
.testimonios-encabezado .testimonios-titulo {
  font-size: 4rem;
  font-family: "Bonheur Royale", serif;
  color: #3f3d3d;
}

.testimonios-carrusel {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
  background-color: #F2F2F2;
}

.testimonios-lista {
  padding: 1rem;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .testimonios-lista {
    width: 40%;
  }
}

.lista-descripcion {
  padding: 1rem;
  border: 1px solid #BF8E63;
  color: #3f3d3d;
}
.lista-descripcion p {
  padding: 1rem;
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  .lista-descripcion p {
    font-size: 1.3rem;
  }
}

.mensaje {
  padding: 3rem;
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: "Noto Serif", serif;
  font-size: 2rem;
  font-weight: 300;
}
@media (min-width: 768px) {
  .mensaje {
    padding: 5rem;
    font-size: 3rem;
  }
}

.contacto {
  padding: 1rem;
}

.contacto-contenido {
  background-color: #F2F2F2;
}
@media (min-width: 768px) {
  .contacto-contenido {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.contacto-texto {
  padding: 3rem;
}

.contacto-titulo {
  color: #BF8E63;
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

.contacto-descripcion {
  color: #3f3d3d;
  font-size: 3rem;
}

.formulario {
  margin-top: 3rem;
}

.campo {
  width: 100%;
  color: #3f3d3d;
  margin: 0;
  padding: 0;
}
.campo input {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  font-family: "Noto Serif", serif;
  color: #3f3d3d;
  font-size: 1.2rem;
  border: none;
  border-bottom: 1px solid #3f3d3d;
}
.campo textarea {
  width: 100%;
  height: 10rem;
  padding: 1rem;
  margin-bottom: 1rem;
  border: none;
  border-bottom: 1px solid #3f3d3d;
  font-family: "Noto Serif", serif;
  color: #3f3d3d;
  font-size: 1.2rem;
}

.enviar {
  margin-top: 2rem;
}

.contacto-imagen img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.contenedor-contacto {
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .contenedor-contacto {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }
}

.contenedor-formulario {
  width: 100%;
  background-color: #F2F2F2;
}

.campo-contacto {
  display: flex;
  flex-direction: column;
  padding: 4rem 5rem 1rem 5rem;
  color: #3f3d3d;
  font-family: "Noto Serif", serif;
  font-size: 1.6rem;
  font-weight: 300;
}
.campo-contacto input {
  border: none;
  height: 3rem;
}
.campo-contacto textarea {
  border: none;
  height: 15rem;
}

.contenedor-imagen img {
  width: 100%;
}

.contenedor-general {
  height: 100vh;
  background-image: url("/src/img/banner5.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  padding-right: 5rem;
}

.fondo-blanco {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  background-color: #F2F2F2;
  height: 100%;
  width: 30%;
  margin-left: auto;
  opacity: 0.8;
}

.info-a {
  color: #3f3d3d;
  font-size: 2rem;
}
.info-a svg {
  width: 30px;
}

.proveedores {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 1rem 0;
  font-family: "Noto Serif", serif;
  color: #3f3d3d;
  margin-top: 2rem;
}
.proveedores .proveedores-titulo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-family: "Montserrat", sans-serif;
  color: #BF8E63;
}

.proveedores-carrusel-contenido {
  margin-top: 1rem;
  display: inline-block;
  animation: desplazar 7s linear infinite;
}
.proveedores-carrusel-contenido span {
  display: inline-block;
  margin-right: 2rem;
  font-size: 2.5rem;
}

@keyframes desplazar {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-32%);
  }
}
#inicio {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), image-set(url("/../build/img/banner3.webp") type("image/webp") 1x, url("/../build/img/banner3.jpg") type("image/jpeg") 1x, url("/../build/img/banner3.avif") type("image/avif") 1x);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  transition: background-image 0.2s ease-in-out;
}
#inicio img {
  width: 80%;
}
#inicio .contenido-izquierda {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  align-items: center;
  height: 50%;
  color: #ffffff;
  font-size: 2rem;
  padding: 2rem 0 2rem 0;
}
@media (min-width: 768px) {
  #inicio .contenido-izquierda {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;
    font-size: 3rem;
    font-weight: 500;
    padding-top: 15rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
#inicio .contenido-derecha {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 50%;
}
@media (min-width: 768px) {
  #inicio .contenido-derecha {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;
    font-size: 3rem;
    font-weight: 500;
    padding-top: 15rem;
  }
}
@media (min-width: 768px) {
  #inicio {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}/*# sourceMappingURL=app.css.map */
