
  /* -----------------------------------
        Gallery Section
  --------------------------------------*/
  .portfolio-section {
    padding: 50px 0;
    background-color: #000;
  }
  .portfolio-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
  }
  .portfolio-menu {
    text-align: center;
  }
  .control {
    background: #CEBDB0;
    color: #fff;
    padding: 5px 10px;
    border: 1px solid #CEBDB0;
    border-radius: 3px;
    margin: 5px;
    cursor: pointer;
    -webkit-transition: all 05s ease;
    -moz-transition: all 05s ease;
    -ms-transition: all 05s ease;
    -o-transition: all 05s ease;
    transition: all 0.5s ease;
  }
  .control:hover {
    background: #B7A19B;
  }
  .mixitup-control-active {
    color: #fff;
    background: #B7A19B;
  }
  .fancybox-container button:focus {
    outline: 0;
    box-shadow: none;
  }
  .portfolio-item {
    padding-top: 30px;
    list-style-type: none;
  }
  .pd {
    padding: 0;
    padding: 10px;
  }
  .pd img {
    transition: all 0.5s;
  }
  .portfolio-overlay {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    text-align: center;
    visibility: hidden;
    transition: all 0.5s;
    transform: scale(0);
  }
  .portfolio-overlay p,
  .portfolio-overlay a {
    position: relative;
    z-index: 4;
  }
  .portfolio-overlay::before {
    content: "";
    width: 0;
    height: 0;
    border-width: 0;
    position: absolute;
    left: 10%;
    top: 10%;
    transition: 50ms height ease 150ms;
    z-index: 3;
  }
  .portfolio-overlay::after {
    content: "";
    width: 0;
    height: 0;
    border-width: 0;
    position: absolute;
    right: 10%;
    bottom: 10%;
    transition: 100ms width ease 200ms;
    z-index: 3;
  }
  .portfolio-item:hover .portfolio-overlay::before {
    width: 80%;
    height: 80%;
    border-top: 1px solid #50977f;
    border-right: 1px solid #50977f;
    transition: width 0.1s ease 0.3s, height 0.1s ease 0.5s;
  }
  .portfolio-item:hover .portfolio-overlay::after {
    width: 80%;
    height: 80%;
    border-bottom: 1px solid #50977f;
    border-left: 1px solid #50977f;
    transition: width 0.1s ease 0.6s, height 0.1s ease 0.7s;
  }
  .portfolio-item li img {
  width: 100%;
  height: 250px; /* ajustá según lo que quieras */
  object-fit: cover;
  display: block;
}

  .portfolio-item li:hover .portfolio-overlay {
    visibility: visible;
    transform: scale(1);
  }
  .portfolio-overlay .category {
    margin-top: 70px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
  }
  .portfolio-overlay .magnify-icon {
    height: 40px;
    width: 40px;
    border-radius: 20px;
    background: #50977f;
    margin: 0 5px;
    cursor: pointer;
    display: inline-block;
    transition: all 0.25s;
  }
  .portfolio-overlay .magnify-icon:hover {
    background: #000;
  }
  .portfolio-overlay .magnify-icon p span i {
    font-size: 15px;
    color: #fff;
    line-height: 40px;
    cursor: pointer;
  }
  
  /*******Responsive media query******/
  
  /* Extra small devices (portrait phones, less than 576px)*/
  /* Estilos generales para el precio */
.price-box {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 12px;
    background-color: #fcfaf8; /* Un fondo sutil para enmarcar el valor */
}

.price-text {
    font-family: 'Arial', sans-serif; /* O la fuente que uses en tu sitio */
    font-weight: 800;
    color: #bca48e; /* El color café/dorado de tus botones para mantener armonía */
    display: block;
    line-height: 1;
}

/* Desktop: El valor se nota mucho más */
@media (min-width: 992px) {
    .price-text {
        font-size: 3.5rem; /* Tamaño grande para desktop */
        margin-bottom: 5px;
    }
    .price-label {
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #666;
    }
}
@media (max-width: 768px) {
    /* Reducimos el padding de la sección para ganar espacio */
    .site-section { padding: 1.5em 0 !important; }
    
    /* Imagen compacta para que el precio suba */
    .img-mobile-compact { 
        max-height: 180px; 
        object-fit: cover; 
        width: 100%; 
        border-radius: 8px;
        margin-bottom: 10px !important;
    }
    
    .section-title-underline { margin-bottom: 10px !important; }
    .section-title-underline h2 { font-size: 1.5rem !important; }
    
    /* Precio destacado pero sin ocupar mucho espacio vertical */
    .price-box {
        background: #f8f9fa;
        padding: 10px;
        border-radius: 8px;
        margin-bottom: 15px;
    }
    .price-text { font-size: 1.8rem; font-weight: 800; color: #000; display: block; }
}