/* Carrusel moderno - Diseño específico */
.qlo-offers-modern-section {
    padding: 40px 0;
    color: #000;
}


.offers-modern-header {
    text-align: center;
    margin-bottom: 30px;
}

.offers-modern-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: black;
}

.offers-modern-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.offers-modern-carousel {
    position: relative;
    max-width: 1154px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contenedor para 2 cards */
.offers-modern-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
}

.offers-modern-track::-webkit-scrollbar {
    display: none;
}

/* Tarjeta con fondo verde gradient */
.offer-modern-card {
    flex: 0 0 calc(50% - 10px); /* 2 cards por vista */
    background: linear-gradient(0deg,rgba(65, 170, 52, 1) 0%, rgba(31, 77, 27, 1) 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    min-height: 223px;
}

/* Layout de 2 columnas dentro de la tarjeta */
.offer-modern-content {
    display: flex;
    height: 100%;
}

/* Columna izquierda - Imagen */
.offer-modern-image-col {
    flex: 0 0 200px;
    overflow: hidden;
    padding-top: 4%;
	padding-bottom: 4%;
	padding-left: 5%;
}

.offer-modern-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* Columna derecha - Contenido */
.offer-modern-text-col {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

/* Título naranja */
.offer-modern-card-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fab80e; /* Naranja */
    line-height: 1.3;
}

/* Descripción */
.offer-modern-description {
    color: #fff;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Botón naranja con letras verdes */
.offer-modern-btn {
    display: inline-block;
    background: #fab80e; /* Naranja */
    color: #206018; /* Verde */
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    text-decoration: none;
    max-width: 180px;
}

.offer-modern-btn:hover {
    background: #ff8248;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Puntos de navegación */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding-bottom: 10px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Eliminar controles de flechas anteriores */
.carousel-modern-controls {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .offer-modern-card {
        flex: 0 0 100%; /* 1 card en móvil */
    }
    
    .offer-modern-content {
        flex-direction: column;
    }
    
    .offer-modern-image-col {
        flex: 0 0 150px;
        width: 100%;
    }
    
    .offers-modern-title {
        font-size: 1.8rem;
    }
}