@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1 {
  font-weight: 600;
  line-height: 1.1;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  color: #2c1810;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 4rem;
  }
}

h2, h3 {
  font-weight: 600;
  line-height: 1.1;
  font-family: "Playfair Display", Georgia, serif;
  color: #2c1810;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  color: #ad7048;
  text-transform: uppercase;
  font-family: "Inter", -apple-system, sans-serif;
  letter-spacing: 3px;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

p {
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 1.1rem;
  max-width: 500px;
  color: #6b6b6b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

ol, ul {
  list-style: none;
  padding: 0;
}

@keyframes zoomFade {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animacion-seccion {
  animation: zoomFade 1.2s ease-out forwards;
  opacity: 0;
}

.boton-marron {
  background-color: #8b5a2b;
  color: #ffffff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  font-family: "Inter", -apple-system, sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.boton-marron:hover {
  background-color: #6d4621;
  transform: translateY(-2px);
}

.boton-blanco {
  background-color: transparent;
  color: #2c1810;
  border: 1px solid #2c1810;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  font-family: "Inter", -apple-system, sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.boton-blanco:hover {
  background-color: #2c1810;
  color: #ffffff;
  transform: translateY(-2px);
}

.reserva-main .reserva-imagen img, .index-main .index-main-fotos img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  display: block;
}

.cards-preparacion ol {
  list-style: none;
  padding: 0;
}
.cards-preparacion li {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background-color: #ffffff;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.cards-preparacion li:hover {
  transform: translateY(-5px);
}
.cards-preparacion li .numero {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: bold;
  color: #ad7048;
  line-height: 1;
  min-width: 45px;
}
.cards-preparacion li .contenido h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}
.cards-preparacion li .contenido p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

header {
  background-color: #fdf8f3;
}
header .index-header-superior {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(128, 128, 128, 0.2);
  background-color: transparent !important;
}
@media screen and (min-width: 1024px) {
  header .index-header-superior {
    padding: 1.5rem 10%;
  }
}
header .index-header-superior .logo {
  color: #8b5a2b !important;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: bold;
  font-size: 1.5rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
}
header .index-header-superior .nav-item {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
header .index-header-superior .nav-item:last-child {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  header .index-header-superior .nav-item {
    padding: 0;
    border-bottom: none;
  }
}
header .index-header-superior .nav-link {
  font-family: "Inter", -apple-system, sans-serif;
  font-weight: 500;
  color: #2c1810 !important;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
header .index-header-superior .nav-link:hover {
  color: #8b5a2b !important;
}
header .index-header-inferior {
  padding: 3rem 1.5rem;
}
@media screen and (min-width: 768px) {
  header .index-header-inferior {
    padding: 5rem 10%;
  }
}
header .index-header-inferior {
  display: flex;
  flex-direction: column;
  min-height: 70vh;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  header .index-header-inferior {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }
}
header .index-header-inferior .index-header-inicio {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}
header .index-header-inferior .index-header-botones {
  display: flex;
  gap: 15px;
  margin-top: 1rem;
}
header .index-header-inferior .index-header-fotos {
  flex: 1;
  margin-top: 3rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  header .index-header-inferior .index-header-fotos {
    margin-top: 0;
  }
}
header .index-header-inferior .index-header-fotos img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 1024px) {
  header .index-header-inferior .index-header-fotos img {
    max-width: 500px;
    display: block;
    margin-left: auto;
  }
}

.badge-custom {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background-color: #8b5a2b;
  color: #ffffff;
  padding: 1.2rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(44, 24, 16, 0.2);
  z-index: 10;
}
.badge-custom .badge-numero {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: bold;
  display: block;
  line-height: 1;
}
.badge-custom .badge-texto {
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-top: 5px;
}

.index-main {
  background-color: #f5ede4;
  padding: 3rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .index-main {
    padding: 5rem 10%;
  }
}
.index-main {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .index-main {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }
}
.index-main .index-main-fotos {
  margin-bottom: 2rem;
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.index-main .index-main-fotos img {
  max-width: 500px;
}
.index-main .index-main-fotos .img-interior-cafeteria {
  display: none;
}
@media screen and (min-width: 768px) {
  .index-main .index-main-fotos .img-interior-cafeteria {
    display: block;
    margin-top: -40px;
    margin-left: 30px;
  }
}
.index-main .index-main-historia {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.index-main article {
  border-left: 3px solid #8b5a2b;
  padding-left: 1rem;
  transition: all 0.3s ease;
}
.index-main article:hover {
  border-left-color: #ad7048;
  padding-left: 1.2rem;
}
.index-main article p {
  font-size: 1rem;
  margin-bottom: 0;
}

.nosotros-main {
  background-color: #f5ede4;
  padding: 3rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .nosotros-main {
    padding: 5rem 10%;
  }
}
.nosotros-main {
  display: flex;
  flex-direction: column;
}

.nosotros-texto {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}
.nosotros-texto p {
  margin: 0 auto;
}

.nosotros-seccion {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.nosotros-seccion iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 768px) {
  .nosotros-seccion {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
  .nosotros-seccion iframe {
    flex: 1;
    height: 450px;
  }
  .nosotros-seccion .cards-preparacion {
    flex: 1;
  }
}

.carta-main {
  background-color: #f5ede4;
  padding: 3rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .carta-main {
    padding: 5rem 10%;
  }
}
.carta-main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.carta-main section:first-child {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}
.carta-main section:first-child p {
  margin: 0 auto;
}
.carta-main section:first-child h2 {
  margin-top: 0.5rem;
}
.carta-main .section-menu {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (min-width: 1024px) {
  .carta-main .section-menu {
    flex-direction: row;
    align-items: flex-start;
    gap: 5%;
  }
}
.carta-main .section-menu div {
  flex: 1;
}
.carta-main .carta-titulo {
  font-family: "Playfair Display", Georgia, serif;
  color: #8b5a2b;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 10px;
}
.carta-main .carta-titulo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: #ad7048;
}
@media screen and (min-width: 768px) {
  .carta-main .carta-titulo {
    text-align: left;
  }
  .carta-main .carta-titulo::after {
    left: 0;
    transform: none;
  }
}
.carta-main .table {
  --bs-table-bg: transparent;
  margin-bottom: 0;
}
.carta-main .table thead th {
  font-family: "Inter", -apple-system, sans-serif;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: #ad7048;
  border-bottom: 2px solid #8b5a2b;
  padding-bottom: 1rem;
}
.carta-main .table tbody td {
  padding: 1.2rem 0.5rem;
  vertical-align: middle;
  font-family: "Inter", -apple-system, sans-serif;
  color: #2c1810;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.carta-main .table tbody td:first-child {
  font-weight: 600;
}
.carta-main .table tbody td:last-child {
  font-weight: bold;
  color: #8b5a2b;
  text-align: right;
}
.carta-main .table tbody tr {
  transition: all 0.3s ease;
}
.carta-main .table tbody tr:hover {
  background-color: rgba(139, 90, 43, 0.05);
}

.reserva-main {
  background-color: #f5ede4;
  padding: 3rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .reserva-main {
    padding: 5rem 10%;
  }
}
.reserva-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.reserva-main .reserva-hero {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}
.reserva-main .reserva-hero p {
  margin: 0 auto;
}
.reserva-main .reserva-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 1100px;
}
@media screen and (min-width: 768px) {
  .reserva-main .reserva-section {
    flex-direction: row;
    align-items: stretch;
    gap: 60px;
  }
}
.reserva-main .reserva-imagen {
  flex: 1;
}
.reserva-main .reserva-imagen img {
  height: 100%;
  object-fit: cover;
}
.reserva-main .reserva-formulario {
  flex: 1;
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.reserva-main .reserva-formulario .form-label {
  font-family: "Inter", -apple-system, sans-serif;
  font-weight: 600;
  color: #2c1810;
  margin-bottom: 0.5rem;
}
.reserva-main .reserva-formulario .form-control, .reserva-main .reserva-formulario .form-select {
  padding: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  font-family: "Inter", -apple-system, sans-serif;
}
.reserva-main .reserva-formulario .form-control:focus, .reserva-main .reserva-formulario .form-select:focus {
  border-color: #8b5a2b;
  box-shadow: 0 0 0 0.25rem rgba(139, 90, 43, 0.15);
  outline: none;
}
.reserva-main .reserva-formulario .form-text {
  font-size: 0.85rem;
  color: #6b6b6b;
}

.ubicacion {
  background-color: #fdf8f3;
  padding: 3rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .ubicacion {
    padding: 5rem 10%;
  }
}
.ubicacion {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .ubicacion {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.ubicacion div {
  flex: 1;
}
.ubicacion iframe {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.ubicacion ul {
  margin-top: 1rem;
}
.ubicacion ul li {
  font-family: "Inter", -apple-system, sans-serif;
  color: #6b6b6b;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}
.ubicacion ul li::before {
  content: "•";
  color: #8b5a2b;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.galeria-main {
  background-color: #f5ede4;
  padding: 3rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .galeria-main {
    padding: 5rem 10%;
  }
}
.galeria-main .galeria-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}
.galeria-main .galeria-intro p {
  margin: 0 auto;
}
.galeria-main .galeria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 150px;
  gap: 15px;
  grid-auto-flow: dense;
}
@media screen and (min-width: 768px) {
  .galeria-main .galeria-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    gap: 25px;
  }
}
.galeria-main .galeria-grid .galeria-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.galeria-main .galeria-grid .galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.galeria-main .galeria-grid .galeria-item--wide {
  grid-column: span 2;
}
.galeria-main .galeria-grid .galeria-item--tall {
  grid-row: span 2;
}
@media (hover: hover) {
  .galeria-main .galeria-grid .galeria-item:hover img {
    transform: scale(1.1);
  }
  .galeria-main .galeria-grid .galeria-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 24, 16, 0.2);
    opacity: 0;
    transition: all 0.3s ease;
  }
  .galeria-main .galeria-grid .galeria-item:hover::after {
    opacity: 1;
  }
}

footer {
  background-color: #2c1810;
  color: #ffffff;
  padding: 3rem 1.5rem;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 5rem 10%;
  }
}
footer {
  padding-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .index-footer-navegacion {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
  max-width: 1100px;
}
@media screen and (min-width: 768px) {
  footer .index-footer-navegacion {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
footer .footer-descripcion {
  text-align: center;
}
@media screen and (min-width: 768px) {
  footer .footer-descripcion {
    text-align: left;
    max-width: 300px;
  }
}
footer .footer-descripcion .h3-footer {
  color: #8b5a2b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
footer .footer-descripcion p {
  color: #6b6b6b;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  footer .footer-descripcion p {
    margin: 0;
  }
}
footer .footer-links {
  display: flex;
  width: 100%;
  justify-content: space-around;
}
@media screen and (min-width: 768px) {
  footer .footer-links {
    width: auto;
    gap: 5rem;
    justify-content: flex-end;
  }
}
footer .footer-links h4 {
  color: #ffffff;
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
}
footer .footer-links li {
  margin-bottom: 0.6rem;
}
footer .footer-links .footer-link {
  color: #6b6b6b;
  text-decoration: none;
  font-size: 0.9rem;
  font-family: "Inter", -apple-system, sans-serif;
  transition: all 0.3s ease;
  display: inline-block;
}
footer .footer-links .footer-link:hover {
  color: #8b5a2b;
  transform: translateX(5px);
}
footer .index-footer-derechos {
  width: 100%;
  max-width: 1100px;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}
footer .index-footer-derechos p {
  color: rgba(107, 107, 107, 0.6);
  font-size: 0.8rem;
  max-width: 100%;
  margin-bottom: 0;
}

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