/* ===================================
   PÁGINA SUITE CON JACUZZI
   =================================== */

/* TÍTULO */
.suite-title-section {
    padding: 120px 0 40px 0;
    text-align: center;
    background-color: #FAF3EA;
}

.suite-title {
    font-family: "DM Sans", sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #074F4D;
    margin-bottom: 10px;
}

.suite-subtitle {
    font-family: "DM Sans", sans-serif;
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* CARRUSEL - ESCALADO CORRECTO */
.suite-carousel-section {
    padding: 0 0 60px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.carousel-main-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Carrusel principal - 30% más grande */
.main-carousel {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
    background-color: #FAF3EA;
}

.carousel-track-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    width: 25%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

/* CORRECCIÓN CRÍTICA - Imágenes escalan y ocupan todo */
.carousel-slide img {
    width: 25%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s ease;
    object-position: center top; /* Muestra la parte superior centrada */
}

/* Flechas de navegación */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #074F4D;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background-color: #04847b;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

/* Contador */
.carousel-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: "DM Sans", sans-serif;
    font-size: 0.9rem;
    z-index: 10;
}

/* Miniaturas */
.carousel-thumbnails {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 10px 0;
}

.thumbnail {
    width: 100px;
    height: 75px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail:hover {
    opacity: 0.8;
    transform: translateY(-3px);
}

.thumbnail.active {
    opacity: 1;
    border-color: #04847b;
    box-shadow: 0 4px 8px rgba(4, 132, 123, 0.3);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Resto del CSS se mantiene igual */
.suite-info-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.suite-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

/* Servicios */
.suite-services h2 {
    font-family: "DM Sans", sans-serif;
    font-size: 2rem;
    color: #074F4D;
    margin-bottom: 30px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(4, 132, 123, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #04847b;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.service-text h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 1.1rem;
    color: #074F4D;
    margin-bottom: 5px;
}

.service-text p {
    font-family: "DM Sans", sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.suite-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
    margin-top: 40px; /* Agrega esta línea */
}

.btn-reserve-large, .btn-whatsapp, .btn-back {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 25px;
    border-radius: 8px;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-reserve-large {
    background-color: #04847b;
    color: white;
}

.btn-reserve-large:hover {
    background-color: #074F4D;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(4, 132, 123, 0.3);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-back {
    background-color: transparent;
    color: #04847b;
    border: 2px solid #04847b;
}

.btn-back:hover {
    background-color: #04847b;
    color: white;
}

/* OTRAS HABITACIONES */
.suite-other-rooms {
    padding:  10px 0 20px 0; /* Cambiado de 20px 0 */;
    background-color: #FAF3EA;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: "DM Sans", sans-serif;
    font-size: 2rem;
    color: #074F4D;
    margin-bottom: 10px;
}

.section-header p {
    font-family: "DM Sans", sans-serif;
    font-size: 1.1rem;
    color: #666;
}

.suite-rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.suite-room-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.suite-room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.suite-room-media {
    height: 200px;
    overflow: hidden;
}

.suite-room-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.suite-room-card:hover .suite-room-media img {
    transform: scale(1.1);
}

.suite-room-body {
    padding: 25px;
}

.suite-room-body h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 1.4rem;
    color: #074F4D;
    margin-bottom: 10px;
}

.suite-room-body p {
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.suite-room-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #04847b;
    color: white;
    border-radius: 6px;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.suite-room-link:hover {
    background-color: #074F4D;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .main-carousel {
        height: 500px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .suite-rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-carousel {
        height: 400px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .thumbnail {
        width: 80px;
        height: 60px;
    }
    
    .suite-services h2 {
        font-size: 1.8rem;
    }
    
    .service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .service-icon {
        margin-bottom: 10px;
    }
    
    .btn-reserve-large, 
    .btn-whatsapp, 
    .btn-back {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .suite-rooms-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .main-carousel {
        height: 300px;
    }
    
    .carousel-thumbnails {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .thumbnail {
        width: 70px;
        height: 50px;
    }
}