/* Contenedor de las tarjetas */
.wpo-Service-wrap .wpo-Service-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  text-align: center;
  transition: transform .3s;
}

.wpo-Service-wrap .wpo-Service-item:hover {
  transform: translateY(-5px);
}

/* Imagen uniforme */
.wpo-Service-wrap .wpo-Service-img img {
  width: 100%;
  height: 300px;           /* fija altura de la imagen */
  object-fit: cover;       /* recorta y ajusta */
  display: block;
}

/* Texto */
.wpo-Service-wrap .wpo-Service-text {
  padding: 15px;
}

.wpo-Service-wrap .wpo-Service-text a {
  display: block;
  font-size: 1.1rem;
  color: #8b6b6b;
  text-decoration: none;
}

.btn-ver-mas {
  display: inline-block;
  padding: 10px 25px;
  background-color: #8b6b6b; /* color del botón */
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color .3s;
  margin-top: 10px;
}

.btn-ver-mas:hover {
  color: #ffffff;
  background-color: #6d5252; /* color al pasar el mouse */
}


.page_alto{
    min-height: 480px !important;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
}

.local-card-img {
  width: 100%;            /* que ocupe todo el ancho del card */
  height: 220px;          /* altura fija que tú definas */
  object-fit: cover;      /* recorta manteniendo proporción */
  object-position: center;/* centra la imagen */
  border-radius: 6px 6px 0 0; /* opcional: esquinas redondeadas */
}

.sticky-top {
  position: sticky !important;
  top: 100px; /* ajusta según la altura de tu header */
  z-index: 99; /* que esté encima */
}
.summary-fixed {
  position: fixed;
  top: 100px;       /* separación desde el top */
  right: 20px;      /* separación desde el borde derecho */
  width: 350px;     /* ancho fijo */
  z-index: 999;
}

.section-padding-new{
    padding: 60px 0px;
}
.btn-success-select{
    background-color: #f47821b8 !important;
    border-color: #f47821b8;
}
.theme-btn-2{
      background: #a3888c;
    color: #fff;
    display: inline-block;
    font-weight: 600;
    padding: 15px 45px;
    border: 0;
    text-transform: capitalize;
    -webkit-backface-visibility: hidden;
    z-index: 1;
    position: relative;
    font-size: 16px;
    font-size: 1.0666666667rem;
    transition: all 0.3s;
    border-radius: 30px;
}
.theme-btn {
  display: inline-block;
  background-color: #f47820; /* color base */
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}
.theme-btn:hover {
  background-color: #8a65a9; /* color al pasar mouse */
  color: #fff;
}
.theme-btn.active {
  background-color: #5c3d73; /* color cuando está activo */
  color: #fff;
}
