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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins';
    background-color: #f9f9f9;
    color: #111;
    line-height: 1.6;
    padding: 0;
    margin: 0;
}

body {
    animation: fadeIn 0.8s ease-in;
}

.mainbox * {
    font-family: 'Poppins';
}

.dp-arrow-wrap {
  display: flex;
  align-items: center;
}

.dp-arrow-bounce {
  display: block;
  animation: dpArrowFloat 1.8s ease-in-out infinite;
  transform-origin: center;
}

@keyframes dpArrowFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Responsive Typography */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.8rem;
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
        flex-direction: column;
        align-items: center;
    }

    h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    h1 {
        font-size: 1.6rem;
    }
}

.carousel-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-icon img {
    max-width: 80px;
}

/*hero-stretchers*/
.hero-stretchers {
    display: flex;
    width: 1360px;
    flex-direction: row;
    min-height: 630px;
    background-color: #fff;
    color: #333;
    margin: auto;
}

.hero-content {
    flex: 1;
    padding: 8rem 2rem;
    display: flex;
    flex-direction: column;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1rem;
    letter-spacing: 2px;
    margin-top: 1rem;
    text-transform: uppercase;
    color: #671513;
}

.scroll-down span {
    font-size: 4rem;
    color: #671513;
    animation: bounce 2s infinite;
    position: absolute;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

.hero-image {
    flex: 1;
    background-image: url('./images/refurbished-tables-chairs/img16.jpg');
    /* coloca la imagen que subiste aquÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­ */
    background-size: cover;
    background-position: center;
}

/*hospital-stretcher-section*/
.hospital-stretcher-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.hospital-stretcher-image {
    max-width: 100%;
    width: 500px;
}

.hospital-stretcher-text {
    max-width: 500px;
    font-family: 'Poppins';
}

.hospital-stretcher-text h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.hospital-stretcher-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

@media (max-width: 768px) {
    .hospital-stretcher-section {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .hospital-stretcher-text h2 {
        font-size: 1.75rem;
    }

    .hospital-stretcher-text p {
        font-size: 0.95rem;
    }
}

/*refurb-process*/
.refurb-process {
    text-align: center;
    padding: 60px 20px;
    max-width: 1300px;
    margin: auto;
}

.refurb-process h2 {
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 40px;
    color: #222;
}

.refurb-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.refurb-step {
    width: 230px;
}

.refurb-step img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.refurb-step p {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 24px;
    color: #333;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .refurb-step {
        width: 45%;
    }

}

@media (max-width: 680px) {
    .refurb-step {
        width: 100%;
    }

    .refurb-process h2 {
        font-size: 1.5rem;
    }
     .container-md{
        display: none;
        max-width: 200px;
    }
}

@media (min-width: 900px) {
    .hero-content h1 {
        font-size: 3rem;
        font-weight: 700;
    }

    .hero-content p {
        font-size: 1.2rem;
        letter-spacing: 2px;
        margin-top: 1rem;
        text-transform: uppercase;
        color: #671513;
    }

   
}

/*refurb-benefits*/
.refurb-benefits {
    padding: 60px 20px;
    background-color: #e8e8e8;
    font-family: 'Poppins';
}

.refurb-benefits-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
}

.left-text {
    flex: 1 1 250px;
    min-width: 250px;
}

.left-text h2 {
    font-size: 2rem;
    font-style: italic;
    color: #222;
}

.center-image {
    flex: 1 1 350px;
    text-align: center;
}

.center-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.right-benefits {
    flex: 1 1 350px;
    min-width: 300px;
}

.right-benefits ul {
    list-style: none;
    padding: 0;
}

.right-benefits li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
}

.right-benefits strong {
    color: #000;
}

.right-benefits .upholstery-text{
    color: #444;
    font-size: 18px;
    padding: 4px;
}

.newsletter-btn:hover{
    color: #fff!important;
}


@media (max-width: 960px) {
    .refurb-benefits-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .left-text,
    .right-benefits {
        text-align: center;
    }
}

/* =========================
   CEVI MED ORDER SAMPLE
========================= */
.cevi-order-section {
    background: #666666;
    padding: 70px 0;
    overflow: hidden;
}

.cevi-order-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 300;
    font-style: italic;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.cevi-order-card {
    position: relative;
    overflow: hidden;
    background: transparent;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cevi-order-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

/* Top large images */
.cevi-order-card-lg {
    height: 405px;
}

/* Bottom single small cards */
.cevi-order-card-sm {
    height: 195px;
}

/* Stacked cards */
.cevi-order-card-stack-top {
    height: 92px;
    overflow: hidden;
}

.cevi-order-card-stack-bottom {
    height: 92px;
    overflow: hidden;
}

/* Hover effect */
.cevi-order-card:hover img,
.cevi-order-card-stack-top:hover img,
.cevi-order-card-stack-bottom:hover img {
    transform: scale(1.04);
}

.cevi-order-card:hover,
.cevi-order-card-stack-top:hover,
.cevi-order-card-stack-bottom:hover {
    transform: translateY(-4px);
}

/* Tablet */
@media (max-width: 991.98px) {
    .cevi-order-section {
        padding: 60px 0;
    }

    .cevi-order-card-lg {
        height: 320px;
    }

    .cevi-order-card-sm {
        height: 180px;
    }

    .cevi-order-card-stack-top,
    .cevi-order-card-stack-bottom {
        height: 84px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .cevi-order-section {
        padding: 50px 0;
    }

    .cevi-order-title {
        margin-bottom: 10px;
    }

    .cevi-order-card-lg {
        height: 240px;
    }

    .cevi-order-card-sm {
        height: 160px;
    }

    .cevi-order-card-stack-top,
    .cevi-order-card-stack-bottom {
        height: 76px;
    }
}

/* Small mobile */
@media (max-width: 575.98px) {
    .cevi-order-card-lg {
        height: 200px;
    }

    .cevi-order-card-sm {
        height: 140px;
    }

    .cevi-order-card-stack-top,
    .cevi-order-card-stack-bottom {
        height: 66px;
    }
}


/*stretcher-gallery*/
.stretcher-gallery {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
    font-family: 'Poppins';
}

.stretcher-header h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #111;
    margin-bottom: 40px;
}

.stretcher-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    justify-content: center;
}

.stretcher-card {
    width: 100%;
    max-width: 220px;
    text-align: center;
    margin: 0 auto;
}

.stretcher-card h3 {
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #111;
}

.stretcher-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.check-button {
    display: inline-block;
    padding: 10px 18px;
    border: 2px solid #ba1e1e;
    color: #ba1e1e;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: 0.3s ease;
}

.check-button:hover {
    background-color: #ba1e1e;
    color: #fff;
}

/* Tablets grandes */
@media (max-width: 1400px) {
    .stretcher-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablets */
@media (max-width: 992px) {
    .stretcher-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* MÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³viles grandes */
@media (max-width: 768px) {
    .stretcher-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stretcher-header h2 {
        font-size: 2rem;
    }
}

/* MÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³viles pequeÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±os */
@media (max-width: 480px) {
    .stretcher-grid {
        grid-template-columns: 1fr;
    }

    .stretcher-card {
        max-width: 100%;
    }

    .stretcher-header h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
}
.container-md {
    position: relative;
    max-width: 800px;
    margin: 50px auto;
    cursor: pointer;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon svg {
    fill: white;
    width: 30px;
    height: 30px;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup iframe {
    width: 60%;
    height: 60%;
    border: none;
}

.popup.show {
    display: flex;
}

/*catalog*/
.catalog {
    padding: 60px 20px;
    text-align: center;
    font-family: 'Poppins';
}

.catalog-header h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 10px;
}

.catalog-header p {
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.search-bar {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.search-bar input {
    padding: 10px 35px 10px 12px;
    border: 2px solid #000;
    border-radius: 20px;
    font-size: 0.9rem;
    outline: none;
}

.search-icon {
    position: absolute;
    right: 12px;
    top: 10px;
    transform: translateY(-50%);
    pointer-events: none;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.product-card {
    min-height: 500px!important;
}

.product-card img {
    width: 100%;
    margin-bottom: 10px;
}

.product-title {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: #111;
}

.product-price {
    font-weight: bold;
    color: #ba1e1e;
    font-size: 1rem;
    margin-bottom: 10px;
}

.view-btn {
    padding: 8px 16px;
    border: 1.5px solid #ba1e1e;
    color: #ba1e1e;
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 6px;
    display: inline-block;
    transition: 0.3s;
}

.view-btn:hover {
    background-color: #ba1e1e;
    color: white;
}

.pagination {
    margin-top: 30px;
    font-size: 1.2rem;
}

.pagination span {
    margin: 0 10px;
    font-size: 40px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .product-grid {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        width: 90%;
    }

    .search-bar {
        width: 100%;
    }

    .search-bar input {
        width: 90%;
    }
}


.product-carousel {
    width: 75%;
    margin: 0 auto;
    padding: 20px 0;
}

.product-carousel .slick-list{
    padding: 12px 0;
}

.product-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 0 15px;
    text-align: center;
    transition: transform 0.3s ease;
    z-index: 10;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 3px;
}

.product-title {
    font-size: 18px;
    font-weight: bold;
    margin: 5px 0;
}

.product-condition {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
}

.product-price {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}

/* Posiciona las flechas debajo del slider */
.custom-arrows {
    text-align: center; /* Centra los botones */
     /* Espacio entre el slider y las flechas */
  }
  
  /* Estilo de los botones */
  .slick-prev-custom, 
  .slick-next-custom {
    background: #33333300;
    font-family: 'Poppins';
    font-weight: bold;
    font-size: 42px;
    color: #454545;
    border: none;
    padding: 8px 15px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s linear;
  }

.cevi-order-custom-arrows .slick-prev-custom, .cevi-order-custom-arrows .slick-next-custom{
    color: #d9d9d9;
    transition: all 0.3s linear;
}

.cevi-order-custom-arrows .slick-prev-custom:hover, .cevi-order-custom-arrows .slick-next-custom:hover{
    color: #ffffff;
}

    .slick-prev-custom:focus, 
  .slick-next-custom:focus{
      outline: none;
  }
  
  .slick-prev-custom:hover, 
  .slick-next-custom:hover {
    color: #111;
  }

/* Estilos para los controles del carrusel */
.slick-prev:before,
.slick-next:before {
    color: #333;
}

.slick-dots li button:before {
    font-size: 12px;
}

/* Footer */
.footer-promo {
    display: flex;
    justify-content: space-around;
    padding: 4rem 2rem;
    background-color: #191919;
    color: #fff;
    flex-wrap: wrap;
}

.footer-logo {
    max-width: 280px;
    position: relative;
    top: -30px;
    left: -45px;
    margin-bottom: 1rem;
}

.footer-left h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.quote-btn {
    display: inline-block;
    margin: 1rem 0;
    padding: 0.75rem 1.5rem;
    border: 2px solid #fff;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.quote-btn:hover {
    background-color: #fff;
    color: #000;
}

.footer-icon {
    position: absolute;
    margin: 0 2rem;
    width: 80px;
}

.footer-right {
    max-width: 300px;
    font-size: 1rem;
}

.footer-right a {
    color: #fff;
    text-decoration: underline;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-right p {
    margin: 1rem 0;
}

.footer-socials {
    display: flex;
}

.footer-socials a {
    margin-right: 1rem;
    color: #fff;
    font-size: 2rem;
}

@media (max-width: 768px) {
    .footer-promo {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
}

.cevi-order-title {
  font-weight: 600;
  font-size: 2rem;
}

/* TOP SLIDER */
.cevi-slide {
  padding: 5px;
}

.cevi-slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
}

/* BOTTOM SLIDER */
.cevi-slide-sm {
  padding: 5px;
}

.cevi-slide-sm img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
}

/* ARROWS */
.slick-prev:before,
.slick-next:before {
  color: #bd0a24;
  font-size: 24px;
}

/* DOTS */
.slick-dots li button:before {
  color: #bd0a24;
}

/* POSICIÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œN */
.cevi-slider-bottom .slick-prev,
.cevi-slider-bottom .slick-next {
  top: 45%;
  z-index: 10;
  width: 35px;
  height: 35px;
}

/* IZQUIERDA */
.cevi-slider-bottom .slick-prev {
  left: -10px;
}

/* DERECHA */
.cevi-slider-bottom .slick-next {
  right: -10px;
}

/* ICONO */
.cevi-slider-bottom .slick-prev:before,
.cevi-slider-bottom .slick-next:before {
  font-size: 28px;
  color: #bd0a24;
  opacity: 1;
}

/* HOVER */
.cevi-slider-bottom .slick-prev:hover:before,
.cevi-slider-bottom .slick-next:hover:before {
  color: #8e081c;
}

/* =========================
   UNIVERSAL VIEWER
========================= */
.universal-viewer {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.universal-viewer.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.universal-viewer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(4px);
}

.universal-viewer__content {
  position: relative;
  z-index: 2;
  width: min(95vw, 1200px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.universal-viewer__media {
  width: 100%;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.universal-viewer__media img,
.universal-viewer__media video {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  object-fit: contain;
  background: #000;
}

.universal-viewer__media video {
  width: auto;
  min-width: min(90vw, 420px);
}

.universal-viewer__close {
  position: absolute;
  top: -8px;
  right: 0;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.2s ease, background 0.2s ease;
}

.universal-viewer__close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.05);
}


/* cursor bonito para indicar que se puede ampliar */
[data-lightbox] {
  cursor: pointer;
}

/* en movil */
@media (max-width: 768px) {
  .universal-viewer__content {
    width: 100vw;
    padding: 14px;
  }

  .universal-viewer__close {
    top: 10px;
    right: 10px;
    position: fixed;
  }

  .universal-viewer__media img,
  .universal-viewer__media video {
    max-height: 80vh;
    border-radius: 10px;
  }
}

.cevi-slide img,
.cevi-slide-sm img {
  border-radius: 12px;
  transition: all .4s ease;
}

/* top */
.cevi-slide img:hover {
  transform: scale(1.03);
}

/* bottom */
.cevi-slide-sm img  {
  opacity: .8;
}

.cevi-slide-sm img:hover  {
  opacity: 1;
}

.slick-current .cevi-slide-sm {
  opacity: 1;
  transform: scale(1.05);
}

/* Entrada mÃƒÂ¡s suave global */
[data-aos] {
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
}

/* Hero title efecto extra */
.hero-stretchers h1 {
  opacity: 0;
  transform: translateY(40px);
}

.hero-stretchers h1.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Texto con leve blur al aparecer */
.hero-stretchers p {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(6px);
}

.hero-stretchers p.aos-animate {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Imagen efecto cinematic zoom */
.hero-image {
  transform: scale(1.1);
  transition: transform 1.6s ease-out;
}

.hero-image.aos-animate {
  transform: scale(1);
}

/* Flecha mÃƒÂ¡s viva */
.dp-arrow-bounce {
  animation: bounceArrow 2s infinite;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

/* Imagen hover (muy importante para UX) */
.carousel-image {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.carousel-image img {
  transition: transform 0.6s ease;
}

.carousel-image:hover img {
  transform: scale(1.05);
}

/* Play button con vida */
.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.play-icon svg {
  width: 60px;
  height: 60px;
  fill: white;
  background: rgba(191, 12, 4, 0.9);
  border-radius: 50%;
  padding: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* hover pro */
.carousel-image:hover .play-icon svg {
  transform: scale(1.15);
  box-shadow: 0 10px 30px rgba(191, 12, 4, 0.4);
}

/* efecto pulso sutil */
.play-icon svg {
  animation: pulsePlay 2s infinite;
}

@keyframes pulsePlay {
  0% { box-shadow: 0 0 0 0 rgba(191, 12, 4, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(191, 12, 4, 0); }
  100% { box-shadow: 0 0 0 0 rgba(191, 12, 4, 0); }
}

/* texto mÃƒÂ¡s elegante */
.hospital-stretcher-text h2 {
  transform: translateY(40px);
  opacity: 0;
}

.hospital-stretcher-text h2.aos-animate {
  transform: translateY(0);
  opacity: 1;
}

.hospital-stretcher-text p {
  transform: translateY(30px);
  opacity: 0;
  filter: blur(6px);
}

.hospital-stretcher-text p.aos-animate {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}

/* GIF flotante */
.carousel-icon img {
  animation: floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
/* GRID spacing */
.refurb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* CARD STYLE */
.refurb-step {
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  padding: 20px;
  border-radius: 16px;
}

/* Hover premium */
.refurb-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Imagen animaciÃ³n */
.refurb-step img {
  transition: transform 0.4s ease;
}

.refurb-step:hover img {
  transform: scale(1.1) rotate(2deg);
}

/* Texto */
.refurb-step p {
  font-weight: 500;
  font-size: 14px;
  opacity: 0.8;
}

/* Entrada con */
.refurb-step {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
}

.refurb-step.aos-animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Linea visual tipo proceso (opcional pero ðŸ”¥) */
.refurb-process {
  position: relative;
}

.refurb-process::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 5%;
  width: 90%;
  height: 2px;
  background: linear-gradient(to right, transparent, #bf0c04, transparent);
  z-index: 0;
}

.refurb-step {
  position: relative;
  z-index: 1;
}