@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

p {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
}

.header-container {
  width: 100%;
  height: 90vh;
  background-image: url(/assets/properties2.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  /* Add a subtle zoom effect to the background images */
}
.header-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.header-container .bg-image-animate {
  animation: zoom 20s infinite;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.navegacion-header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: auto;
  max-width: 1200px;
  height: 100px;
  background-color: transparent;
  position: relative;
  z-index: 2;
}
.navegacion-header .logo-header img {
  width: 90px;
  height: 90px;
}
.navegacion-header .navegacion-header-links ul {
  text-decoration: none;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navegacion-header .navegacion-header-links ul a {
  color: white;
  font-size: 18px;
  margin: 0 9px;
  padding: 5px 9px;
  border-radius: 8px;
  transition: ease-in-out 0.3s;
}
.navegacion-header .navegacion-header-links ul a:hover {
  background-color: #0773bb;
  color: white;
}

.burger-menu {
  position: relative;
  z-index: 3;
  display: none;
}
.burger-menu div {
  background-color: #d7a14b;
  width: 30px;
  height: 4px;
  margin: 4px 0;
  border-radius: 5px;
}

.btn-burger {
  padding: 10px;
  background-color: transparent;
  border: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: ease-in-out 0.3s;
}
.btn-burger :nth-child(1) {
  transition: ease-in-out 0.3s;
}
.btn-burger :nth-child(2) {
  transition: ease-in-out 0.3s;
}
.btn-burger :nth-child(3) {
  transition: ease-in-out 0.3s;
}
.btn-burger:focus > :nth-child(1) {
  transform: rotate(45deg) translateY(17px);
}
.btn-burger:focus > :nth-child(2) {
  opacity: 0;
}
.btn-burger:focus > :nth-child(3) {
  transform: rotate(-45deg) translateY(-17px);
}

.btn-principal {
  background-color: #0773bb;
  padding: 10px 20px;
  color: white;
  border: none;
  border-radius: 5px;
  transition: ease-in-out 0.3s;
}
.btn-principal:hover {
  background-color: transparent;
  color: black;
  transform: scale(1.02);
  outline: 1px solid #0773bb;
}

.smooth-slide {
  z-index: 0;
  position: absolute;
}

.contendor-hero {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
  flex-wrap: wrap;
}
.contendor-hero .hero-content {
  color: white;
}
.contendor-hero .hero-content p {
  margin: 10px 0;
  width: 80%;
  margin: 10px auto;
  max-width: 400px;
}
.contendor-hero .hero-content .btn-principal {
  background-color: transparent;
  color: #d7a14b;
  font-size: 18px;
  padding: 10px 20px;
  border: 2px solid white;
}
.contendor-hero .hero-info-property {
  background-color: white;
  color: black;
  border-radius: 8px;
  padding: 30px;
  width: 450px;
}
.contendor-hero .hero-info-property p {
  margin: 10px 0;
}
.contendor-hero .hero-info-property .table-descripcion {
  margin: 20px 0;
}
.contendor-hero .hero-info-property .table-descripcion table td,
.contendor-hero .hero-info-property .table-descripcion table th {
  text-align: left;
  padding: 8px;
}

.price-property-hero {
  margin: 10px 0;
}
.price-property-hero h2 {
  color: #d7a14b;
}

.arrows-hero {
  position: absolute;
  z-index: 2;
  top: 50%;
}

.btn-arrow {
  padding: 10px;
  border-radius: 5;
  color: white;
  background-color: #d7a14b;
  border: none;
}

.arrow-left {
  left: 10px;
}

.arrow-right {
  right: 10px;
}

.contenedor-property-search {
  z-index: 2;
  background-color: white;
  width: 100%;
  margin: auto;
  min-height: 100px;
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-template-rows: auto;
  justify-content: center;
  align-items: center;
  text-align: left;
  border-radius: 10px;
  box-shadow: 1px 2px 10px rgba(128, 128, 128, 0.248);
}
.contenedor-property-search select {
  width: 100%;
  border: none;
  cursor: pointer;
  width: 200px;
  height: 40px;
  text-align: left;
  color: #0a2a42;
  background-color: white;
}
.contenedor-property-search select:focus {
  color: #d7a14b;
}
.contenedor-property-search .location-search {
  border-right: 1px solid grey;
}
.contenedor-property-search .property-status-search {
  border-right: 1px solid grey;
  margin: 0 10px;
}
.contenedor-property-search .boton-search button {
  padding: 20px 30px;
}

.contendor-properties {
  padding: 100px 0;
  text-align: center;
  background-color: #f1f1f1;
  width: 100%;
}
.contendor-properties .title-accent {
  font-weight: bold;
  color: #d7a14b;
}
.contendor-properties .contenedor-show-not-found {
  text-align: center;
  margin: 50px;
  display: none;
}
.contendor-properties .contenedor-tarjeta-properties {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 50px auto;
}
.contendor-properties .listed-properties-botones {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.contendor-properties .listed-properties-botones .btn-properties-listed {
  margin: 0 10px;
  background-color: #fefefe;
  padding: 10px 20px;
  border: none;
  border-radius: 7px;
}
.contendor-properties .listed-properties-botones .btn-properties-listed:hover {
  background-color: #0773bb;
  color: white;
}
.contendor-properties .listed-properties-botones .btn-properties-listed:focus {
  background-color: #0a2a42;
  color: wheat;
}
.contendor-properties .properties-card {
  width: 350px;
  transition: ease 0.2s;
  border-radius: 5px;
  box-shadow: 1px 2px 10px rgba(128, 128, 128, 0.371);
}
.contendor-properties .properties-card .imagen-card-propertie {
  overflow: hidden;
}
.contendor-properties .properties-card:hover > .imagen-card-propertie img {
  transform: scale(1.5);
}
.contendor-properties .properties-card img {
  width: 100%;
  border-radius: 5px;
  height: 200px;
  transition: ease-in-out 0.3s;
}
.contendor-properties .properties-card h4 {
  margin: 10px auto;
}
.contendor-properties .properties-card .contenido-card-property {
  text-align: left;
  padding: 10px;
}
.contendor-properties .properties-card .contenido-card-property i {
  color: #d7a14b;
}
.contendor-properties .properties-card .property-card-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-top: 1px solid rgba(128, 128, 128, 0.356);
}
.contendor-properties .properties-card .property-card-price .card-property-agent {
  display: flex;
  align-items: center;
}
.contendor-properties .properties-card .property-card-price .card-property-agent h5 {
  margin-left: 5px;
}
.contendor-properties .properties-card .property-card-price img {
  border-radius: 999px;
  width: 30px;
  height: 30px;
  border: 1px solid #0a2a42;
}
.contendor-properties .properties-card .property-card-price .pricing-card p {
  color: #d7a14b;
  font-size: 22px;
}

.botones-card-properties {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #fefefe;
}
.botones-card-properties .boton-property-card {
  width: 100%;
  height: auto;
  border-radius: 7px;
  height: 30px;
  box-shadow: 1px 2px 10px rgba(128, 128, 128, 0.242);
}
.botones-card-properties .boton-property-card button {
  width: 100%;
  background-color: transparent;
  border: none;
  height: 100%;
  transition: ease-in-out 0.3s;
}
.botones-card-properties .boton-property-card button:hover {
  background-color: #0773bb;
  color: white;
}
.botones-card-properties .boton-property-card button:focus > i {
  color: red;
}
.botones-card-properties .boton-property-card i {
  color: #d7a14b;
}

.card-properties-icons {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-top: 10px;
}
.card-properties-icons .icon-card-flex {
  margin: 0 25px;
}

.titulo-secundario {
  font-size: 40px;
  margin-bottom: 20px;
}

.contenedor-added-to-favorite {
  background-color: rgb(20, 12, 7);
  width: 320px;
  height: 150px;
  padding: 5px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: white;
  position: fixed;
  left: 10px;
  bottom: 50px;
  gap: 10px;
  transition: ease-in-out 0.3s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(200px);
}
.contenedor-added-to-favorite button {
  background-color: transparent;
  border: 2px solid red;
  padding: 4px;
  color: white;
  transition: background ease-in-out 0.3s;
}
.contenedor-added-to-favorite button:hover {
  background-color: red;
}
.contenedor-added-to-favorite p {
  font-size: 15px;
}
.contenedor-added-to-favorite i {
  color: red;
  font-size: 22px;
}

.show-added-to-fav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.contendor-feature-properties {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-top: 100px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}
.contendor-feature-properties span {
  color: #d7a14b;
  font-weight: bold;
}
.contendor-feature-properties .img-dots-slide {
  display: flex;
  align-items: center;
}
.contendor-feature-properties .dots-img-slider {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin: 0 10px;
  position: relative;
}
.contendor-feature-properties .dots-img-slider:nth-child(1) {
  background-color: #0773bb;
}
.contendor-feature-properties .dots-img-slider::before {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1.9px solid #0773bb;
  width: 15px;
  height: 15px;
  margin: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contendor-feature-properties .featured-img-holder {
  max-width: 450px;
}
.contendor-feature-properties .featured-img-holder img {
  width: 100%;
  height: 400px;
  border-radius: 20px;
}
.contendor-feature-properties .featured-img-holder p {
  max-width: 450px;
}

.seccion-featured-properties {
  margin-top: 200px;
}

.background-stip {
  width: 100%;
  height: 200px;
  background-color: rgba(205, 181, 205, 0.428);
}

.titulo-propierdades-featured {
  margin: 20px auto;
  font-size: 24px;
}

.pricing-title {
  font-size: 22px;
  margin: 10px 0;
  color: #d7a14b;
  font-weight: bold;
}

.contenedor-propiedad-venta {
  text-align: center;
  margin: 100px 0;
}
.contenedor-propiedad-venta span {
  color: #d7a14b;
}
.contenedor-propiedad-venta .titulo-secundario {
  margin-bottom: 40px;
}

.contendor-imagenes-venta {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
}
.contendor-imagenes-venta .venta-prop-box1 {
  grid-area: 1/1/2/3;
  max-height: 300px;
}
.contendor-imagenes-venta .venta-prop-box2 {
  max-height: 300px;
  grid-area: 1/3/2/4;
}
.contendor-imagenes-venta .venta-prop-box3 {
  max-height: 300px;
  grid-area: 1/4/2/5;
}
.contendor-imagenes-venta .venta-prop-box4 {
  max-height: 300px;
  grid-area: 2/1/3/2;
}
.contendor-imagenes-venta .venta-prop-box5 {
  max-height: 300px;
  grid-area: 2/2/3/3;
}
.contendor-imagenes-venta .venta-prop-box6 {
  max-height: 300px;
  grid-area: 2/3/3/4;
}
.contendor-imagenes-venta .venta-prop-box7 {
  max-height: 300px;
  grid-area: 2/3/3/5;
}
.contendor-imagenes-venta img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transition: transform 0.5s ease;
}
.contendor-imagenes-venta .venta-img-holder {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 1px 2px 10px rgba(128, 128, 128, 0.396);
  position: relative;
  cursor: pointer;
}
.contendor-imagenes-venta .venta-img-holder:hover img {
  transform: scale(1.8);
}
.contendor-imagenes-venta .venta-img-holder:hover > .contendio-prop-box {
  transform: translateX(0);
}
.contendor-imagenes-venta .venta-img-holder .contendio-prop-box {
  position: absolute;
  left: 0;
  background-color: white;
  width: 50%;
  height: 100%;
  border-radius: 5px;
  z-index: 2;
  transition: ease-in-out 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transform: translateX(-100%);
}
.contendor-imagenes-venta .venta-img-holder .contendio-prop-box h4,
.contendor-imagenes-venta .venta-img-holder .contendio-prop-box p {
  padding: 10px;
}
.contendor-imagenes-venta .venta-img-holder .contendio-prop-box .property-card-price {
  padding: 10px;
}
.contendor-imagenes-venta .venta-img-holder .contendio-prop-box .card-properties-icons {
  padding: 10px;
}
.contendor-imagenes-venta .venta-prop-box-slide-up .contendio-prop-box {
  left: 0;
  bottom: 0;
  width: 100%;
  transform: translateY(100%);
  height: auto;
}

.contendor-for-rent {
  max-width: 1200px;
  margin: 200px auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.contendor-for-rent p {
  max-width: 450px;
}
.contendor-for-rent .boton-for-rent {
  margin: 20px 0;
}
.contendor-for-rent .for-venta-img-holder {
  position: relative;
}
.contendor-for-rent .for-venta-img-holder img {
  width: 100%;
  max-width: 500px;
}
.contendor-for-rent .for-venta-img-holder .for-rent-img-info-tab {
  position: absolute;
  width: 100%;
  height: 80px;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 1px 2px 10px rgba(128, 128, 128, 0.321);
  background-color: white;
  top: 50%;
  left: 50%;
  transform: translate(-80%, -50%);
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.contendor-for-rent .for-venta-img-holder .for-rent-img-info-tab p {
  margin: 5px 0;
}

.seccion-partners {
  width: 100%;
  margin: auto;
  text-align: center;
  background-color: #f1f1f1;
  padding: 50px 0;
}
.seccion-partners span {
  color: #d7a14b;
}
.seccion-partners img {
  width: 300px;
  height: 100px;
  border-radius: 10px;
  max-width: 300px;
  box-shadow: 1px 2px 10px rgba(128, 128, 128, 0.253);
  transition: ease-in-out 0.3s;
}
.seccion-partners img:hover {
  transform: translateY(-10px);
}
.seccion-partners .contenedor-partners {
  width: 100%;
  max-width: 1200px;
  margin: 70px auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
footer {
  background-color: #f5f7fa;
  color: #2d3a4a;
}

.contenedor-footer {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}
.contenedor-footer .footer-message {
  text-align: center;
}
.contenedor-footer .footer-message input {
  padding: 10px;
  border-radius: 10px;
  text-align: left;
  border: none;
}
.contenedor-footer .footer-message input:focus {
  outline: 2px solid #0773bb;
}
.contenedor-footer .footer-message p {
  margin-bottom: 10px;
}
.contenedor-footer li {
  list-style: none;
}
.contenedor-footer .footer-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-top: 70px;
  flex-wrap: wrap;
}
.contenedor-footer .footer-logo-media img {
  width: 100px;
  height: 100px;
  border-radius: 999px;
}
.contenedor-footer h5 {
  margin: 10px 0;
  font-size: 17px;
}
.contenedor-footer a {
  color: black;
}
.contenedor-footer i {
  color: #0a2a42;
  color: #d7a14b;
  transition: color ease-in-out 0.3s;
}
.contenedor-footer i:hover {
  color: #0a2a42;
}
.contenedor-footer .footer-social i {
  margin-right: 5px;
}
.contenedor-footer .footer-links {
  display: flex;
  justify-content: space-between;
  align-items: none;
  margin: 20px 0;
  gap: 20px;
}
.contenedor-footer .copy-footer {
  text-align: center;
  padding: 50px 0;
}

.contenedor-image-show {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.8);
  transition: ease-in-out 0.3s;
  clip-path: circle(0%);
}
.contenedor-image-show .boton-cerrar-image-show {
  text-align: right;
  margin-bottom: 20px;
}
.contenedor-image-show .boton-cerrar-image-show .btn-close-image-show {
  padding: 10px;
  border-radius: 5;
  color: white;
  background-color: white;
  border: none;
  transition: ease-in-out 0.3s;
  color: #d7a14b;
}
.contenedor-image-show .boton-cerrar-image-show .btn-close-image-show:hover {
  background-color: white;
  color: #d7a14b;
}
.contenedor-image-show .image-showing {
  position: relative;
}
.contenedor-image-show .arrow-image-show {
  position: absolute;
  top: 50%;
  z-index: 10;
}
.contenedor-image-show .arrow-image-show button {
  padding: 10px;
  border-radius: 5;
  color: white;
  background-color: #d7a14b;
  border: none;
  transition: ease-in-out 0.3s;
}
.contenedor-image-show .arrow-image-show button:hover {
  background-color: white;
  color: #d7a14b;
}
.contenedor-image-show .arrow-show-right {
  right: 0;
}

.open-close-image-show {
  clip-path: circle(100%);
}

.image-show-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.image-show-holder {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300%;
}

.image-show-box {
  width: 100%;
  transition: ease-in-out 0.3s;
}
.image-show-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contenedor-menu-burger {
  width: 200px;
  margin: auto;
  background-color: #0773bb;
  background-color: #0a2a42;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 20px;
  transition: ease-in-out 0.3s;
  transform: translateX(-100%);
}
.contenedor-menu-burger * {
  color: white;
}
.contenedor-menu-burger .burger-menu-open {
  padding-top: 100px;
}
.contenedor-menu-burger .burger-menu-logo img {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid #d7a14b;
}
.contenedor-menu-burger .burger-menu-links {
  margin: 20px 0;
}
.contenedor-menu-burger .burger-menu-links ul li {
  list-style: none;
  margin: 10px 0;
  padding: 5px;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.contenedor-menu-burger .burger-menu-links ul li:hover {
  background-color: #0a2a42;
}
.contenedor-menu-burger .burger-menu-links a {
  font-size: 18px;
  color: white;
  transition: color 0.3s;
}
.contenedor-menu-burger .burger-menu-links a:hover {
  color: #d7a14b;
}

.open-close-menu {
  transform: translateX(0);
}

@media only screen and (max-width: 640px) {
  .navegacion-header-links,
  .boton-header,
  .arrows-hero {
    display: none;
  }
  .navegacion-header {
    background-color: rgb(255, 255, 255);
  }
  .hero-content {
    text-align: center;
  }
  .contenedor-property-search {
    width: 100%;
  }
  .burger-menu {
    display: block;
  }
  .contendor-hero {
    margin-top: 80px;
  }
  .contendor-hero .hero-info-property {
    width: 90%;
    max-width: 400px;
    margin-top: 40px;
    height: auto;
    padding: 10px;
  }
  .hero-info-property p {
    padding: 0;
  }
  .contendor-hero .hero-info-property .table-descripcion table td,
  .contendor-hero .hero-info-property .table-descripcion table th {
    padding: 5px;
  }
  .featured-img-holder {
    margin-top: 40px;
    width: 90%;
  }
  .contendor-feature-properties {
    text-align: center;
  }
  .contendor-feature-properties .card-properties-icons {
    width: 100%;
    margin: auto;
    text-align: center;
    justify-content: center;
  }
  .contendor-feature-properties .img-dots-slide {
    text-align: center;
    margin: auto;
    width: 100%;
    justify-content: center;
  }
  .contendor-feature-properties .featured-img-holder p {
    max-width: 300px;
    margin: auto;
  }
  .contendor-imagenes-venta {
    width: 100%;
    max-width: 100%;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
  }
  .contenedor-property-search select {
    max-width: 100px;
  }
  .contenedor-property-search {
    grid-template-columns: auto auto auto;
  }
  .contendor-for-rent {
    padding: 20px;
  }
  .for-rent-img-info-tab {
    transform: translate(-50%, -50%);
  }
  .contendor-for-rent .for-venta-img-holder .for-rent-img-info-tab {
    transform: translate(-50%, -50%);
  }
  .contendor-properties .listed-properties-botones .btn-properties-listed {
    margin: 5px;
  }
  .footer-content {
    text-align: center;
  }
  .footer-content h5 {
    margin: 20px 0;
    font-size: 18px;
  }
}
@media only screen and (max-width: 380px) {
  .contenedor-propiedad-venta {
    display: none;
  }
}
/* whatsapp */
.whatsapp-floting {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 3px #999;
}
.whatsapp-floting i {
  font-size: 30px;
  color: white;
  padding: 13px;
}

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

.gallery-body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f6f8fa;
  margin: 0;
  color: #222;
}

.gallery-header {
  height: 400px;
}

.gallery-body {
  background: #fff;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contenedor-conenido-galleria {
  padding: 10px;
  text-align: left;
}

.contenedor-conenido-galleria button {
  background-color: #d7a14b;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 10px auto;
}

.gallery-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(59, 57, 57, 0.615);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s;
}

.modal-content-container {
  position: relative;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal-content {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  background: #fff;
  padding: 0.5rem;
}

.close-btn {
  position: absolute;
  top: 32px;
  right: 48px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 1001;
}

.close-btn:hover {
  color: #ff5252;
}

@media (max-width: 600px) {
  .gallery-container {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .gallery-item img {
    height: 160px;
  }
  .close-btn {
    top: 16px;
    right: 24px;
    font-size: 2rem;
  }
}
.nextBtn,
.prevBtn {
  position: absolute;
  top: 50%;
  right: 32px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transform: translateY(-50%);
  z-index: 1001;
  user-select: none;
}

.prevBtn {
  left: 32px;
  right: auto;
  z-index: 9999;
}

span {
  color: #d7a14b;
  font-size: 22px;
}/*# sourceMappingURL=styles.css.map */