/* Hero section */
.hero {
    width: 100%;
    /* Reducción de altura del hero section */
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    text-align: left;
    padding: 0;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-color: #202020; /* Color oscuro de respaldo */
}

.slide-img {
    width: 100%;
    /* Ajuste para que las imágenes no sean tan altas */
    height: 100%;
    object-fit: cover;
    /* Posicionamiento optimizado con enfoque en el centro */
    object-position: center 30%;
    position: absolute;
    top: 0;
    left: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente mejorado para mejor contraste con el contenido */
    background: linear-gradient(to right, rgba(0,0,0,0.7) 30%, rgba(0,0,0,0.4));
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 0;
    /* Animación más sutil */
    animation: zoomEffect 15s ease-in-out infinite alternate;
}

@keyframes zoomEffect {
    from {transform: scale(1);}
    to {transform: scale(1.03);}
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background-color: #C8A97E;
    transform: scale(1.2);
}

.hero-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 15px;
    z-index: 20;
}

.hero-control {
    width: 50px;
    height: 50px;
    background-color: rgba(200, 169, 126, 0.6);
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.hero-control:hover {
    background-color: #C8A97E;
    transform: scale(1.1);
}

.hero-content {
    position: relative;
    z-index: 5;
    padding: 40px;
    /* Ajuste de margen para mejor posicionamiento */
    margin-top: 0;
    max-width: 800px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border-left: 4px solid #C8A97E;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background-color: #C8A97E;
    color: white;
    font-size: 12px;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #C8A97E;
}

.hero-title {
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle-large {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #C8A97E;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #C8A97E;
    color: white;
    border: 2px solid #C8A97E;
    padding: 12px 25px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #b8996e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 25px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: white;
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Secciones */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.subtitle {
    font-size: 14px;
    color: #C8A97E;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 500;
}

.title {
    font-size: 36px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #C8A97E;
}

/* Categorías */
.categories {
    background-color: #f9f9f9;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
}

.category-overlay h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.category-overlay p {
    font-size: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
}

.category-card:hover .category-overlay p {
    opacity: 1;
    transform: translateY(0);
}

.category-overlay .btn-small {
    padding: 8px 15px;
    font-size: 12px;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s 0.1s;
}

.category-card:hover .category-overlay .btn-small {
    opacity: 1;
    transform: translateY(0);
}

/* Productos destacados */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: white;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s;
    border-radius: 8px;
    overflow: hidden;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.product-img {
    height: 250px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
}

.product-category {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.product-title {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-price {
    font-size: 16px;
    color: #C8A97E;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-price span {
    font-size: 14px;
    color: #999;
    font-weight: 400;
}

/* Acerca de */
.about {
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background-color: #f9f9f9;
    z-index: -1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    position: relative;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 5px solid #C8A97E;
    top: 20px;
    left: 20px;
    z-index: -1;
    border-radius: 8px;
}

.about-content .subtitle {
    text-align: left;
}

.about-content .title {
    text-align: left;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.about-content .title::after {
    left: 0;
    transform: none;
}

.about-description {
    margin-bottom: 25px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
}

.about-feature svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    color: #C8A97E;
}

/* CTA section */
.cta {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/api/placeholder/1920/600');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 120px 0;
}

.cta .subtitle {
    color: #C8A97E;
}

.cta .title {
    color: white;
}

.cta-description {
    max-width: 700px;
    margin: 0 auto 40px;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    margin-right: 15px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: white;
    color: #333;
    transform: translateY(-3px);
}

.btn-gold {
    background-color: #C8A97E;
    border: 2px solid #C8A97E;
    color: white;
    transition: all 0.3s;
}

.btn-gold:hover {
    background-color: transparent;
    color: #C8A97E;
    transform: translateY(-3px);
}

/* Contacto */
.contact {
    background-color: #f9f9f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-info {
    background-color: white;
    padding: 40px;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #C8A97E;
}

.contact-detail {
    display: flex;
    margin-bottom: 25px;
}

.contact-icon {
    min-width: 40px;
    height: 40px;
    background-color: #f9f9f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
    color: #C8A97E;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text span:first-child {
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee;
    background-color: #f9f9f9;
    font-family: inherit;
    transition: all 0.3s;
    border-radius: 4px;
}

.form-control:focus {
    border-color: #C8A97E;
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-button {
    background-color: #C8A97E;
    color: white;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    border-radius: 4px;
}

.form-button:hover {
    background-color: #b69569;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background-color: #222;
    color: #ccc;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #C8A97E;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #ccc;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #C8A97E;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: #C8A97E;
    transform: translateY(-3px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact svg {
    margin-right: 15px;
    color: #C8A97E;
}

.copyright {
    text-align: center;
    padding: 25px 0;
    margin-top: 60px;
    border-top: 1px solid #333;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        /* Reducción adicional para pantallas medianas */
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle-large {
        font-size: 40px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about::before {
        width: 100%;
        height: 50%;
    }
}

@media (max-width: 768px) {
    .hero {
        /* Reducción para móviles */
        min-height: 60vh;
    }
    
    .hero-content {
        margin-top: 0;
        width: 90%;
        padding: 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle-large {
        font-size: 32px;
    }
    
    .title {
        font-size: 28px;
    }
    
    section {
        padding: 70px 0;
    }
    
    .about-img {
        height: 350px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .hero-controls {
        bottom: 20px;
        right: 20px;
    }
    
    .hero-control {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .hero {
        /* Altura mínima para móviles pequeños */
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle-large {
        font-size: 28px;
    }
    
    .hero-controls {
        bottom: 20px;
        right: 20px;
    }
    
    .btn {
        padding: 8px 20px;
        font-size: 12px;
    }
}
/* Estilos mejorados para la sección de Mobiliario Lounge */
.mobiliario-lounge {
    padding: 100px 0;
    background-color: #f9f7f2;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 5px 15px rgba(0,0,0,0.05);
}

/* Añadir un elemento decorativo sutil */
.mobiliario-lounge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #f5a623, #e67e22, #f5a623);
    opacity: 0.7;
}

.lounge-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.lounge-content {
    position: relative;
    z-index: 2;
}

.lounge-title {
    font-size: 44px;
    font-weight: 700;
    color: #445566;
    margin-bottom: 5px;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

/* Añadir un efecto de subrayado más elegante */
.lounge-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40%;
    height: 3px;
    background: linear-gradient(90deg, #f5a623, transparent);
}

.lounge-subtitle {
    font-size: 34px;
    font-weight: 400;
    color: #f5a623;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.lounge-separator {
    position: relative;
    width: 100px;
    height: 2px;
    background: rgba(93, 106, 117, 0.1);
    margin: 25px 0 35px;
    border-radius: 2px;
}

.lounge-separator::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 20px;
    background-image: url('Imagenes/separador.png');
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    top: -10px;
}

.lounge-description {
    margin-bottom: 35px;
    line-height: 1.8;
    color: #5d6a75;
    font-size: 17px;
    max-width: 90%;
}

.event-types {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 45px;
    gap: 15px;
}

.event-type {
    text-align: center;
    width: 30%;
    padding: 15px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.event-type:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.event-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 15px;
    padding: 5px;
    transition: transform 0.3s ease;
}

.event-type:hover .event-icon {
    transform: scale(1.1);
}

.event-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.event-name {
    font-size: 13px;
    font-weight: 600;
    color: #445566;
    letter-spacing: 1.2px;
    transition: color 0.3s ease;
}

.event-type:hover .event-name {
    color: #f5a623;
}

/* Mejoras para el slider */
.lounge-slider {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lounge-slider:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.lounge-main-image {
    width: 100%;
    height: 520px;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.lounge-main-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 75%, rgba(0,0,0,0.2));
    z-index: 1;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.lounge-slider:hover .main-image {
    transform: scale(1.03);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #445566;
    padding: 10px 25px;
    font-size: 24px;
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: 1.5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    z-index: 2;
    transition: all 0.3s ease;
}

.lounge-slider:hover .image-badge {
    background-color: #f5a623;
    color: white;
}

.lounge-thumbnails {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    padding: 0 15px;
}

.thumbnail {
    width: 110px;
    height: 75px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.thumbnail.active {
    border-color: #f5a623;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
}

.thumbnail:hover:not(.active) {
    transform: translateY(-3px);
    border-color: rgba(245, 166, 35, 0.5);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail:hover img {
    transform: scale(1.1);
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 25px;
    transform: translateY(-50%);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lounge-slider:hover .slider-controls {
    opacity: 1;
}

.slider-control {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 24px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.slider-control:hover {
    background-color: #f5a623;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
}

/* Animación para cambio de slides */
@keyframes fadeZoom {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.lounge-main-image.changing {
    animation: fadeZoom 0.5s ease forwards;
}

/* Responsive */
@media (max-width: 1200px) {
    .lounge-grid {
        gap: 40px;
    }
    
    .lounge-main-image {
        height: 480px;
    }
}

@media (max-width: 992px) {
    .mobiliario-lounge {
        padding: 80px 0;
    }
    
    .lounge-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .lounge-content {
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .lounge-description {
        max-width: 100%;
    }
    
    .lounge-title::after {
        left: 30%;
        width: 40%;
    }
    
    .lounge-separator {
        margin: 25px auto 35px;
    }
    
    .lounge-separator::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .lounge-main-image {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .mobiliario-lounge {
        padding: 60px 0;
    }
    
    .lounge-title {
        font-size: 36px;
    }
    
    .lounge-subtitle {
        font-size: 28px;
    }
    
    .event-types {
        justify-content: center;
        gap: 20px;
    }
    
    .event-type {
        width: 45%;
    }
    
    .lounge-main-image {
        height: 380px;
    }
    
    .image-badge {
        bottom: 20px;
        right: 20px;
        padding: 8px 20px;
        font-size: 20px;
    }
    
    .slider-control {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .mobiliario-lounge {
        padding: 50px 0;
    }
    
    .lounge-title {
        font-size: 32px;
    }
    
    .lounge-subtitle {
        font-size: 24px;
    }
    
    .event-type {
        width: 100%;
        margin-bottom: 15px;
        padding: 10px;
    }
    
    .lounge-main-image {
        height: 320px;
    }
    
    .lounge-thumbnails {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .thumbnail {
        width: 85px;
        height: 60px;
    }
    
    .image-badge {
        bottom: 15px;
        right: 15px;
        padding: 6px 15px;
        font-size: 18px;
    }
}

/* Para pantallas muy pequeñas */
@media (max-width: 400px) {
    .thumbnail {
        width: 70px;
        height: 50px;
    }
    
    .lounge-main-image {
        height: 280px;
    }
}
/* Carrusel optimizado sin lag y con 4 imágenes siempre visibles */
.triple-carousel-section {
    margin: 0;
    padding: 0;
    background-color: #f9f7f2;
    overflow: hidden;
    position: relative;
}

/* Contenedor del slider */
.slider-container {
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    position: relative;
}

/* Garantizar que siempre aparezcan imágenes */
.slider-container::before {
    content: "";
    display: block;
    padding-top: 20%; /* Altura proporcional al ancho */
}

/* Contenedor de slides con animación */
.slider-track {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: scrollFour 25s linear infinite;
}

/* Animación de desplazamiento para 4 imágenes */
@keyframes scrollFour {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%); /* Desplaza exactamente el ancho total */
    }
}

/* Cada slide individual */
.slide {
    flex: 0 0 25%; /* Exactamente 4 imágenes visibles */
    min-width: 25%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
}

/* Imagen dentro del slide */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

/* Efecto hover en las imágenes */
.slide:hover img {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}

/* Eliminar separador amarillo si existe */
.separador-amarillo {
    display: none;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .slide {
        flex: 0 0 33.333%; /* 3 imágenes en tablet */
        min-width: 33.333%;
    }
}

@media (max-width: 576px) {
    .slide {
        flex: 0 0 50%; /* 2 imágenes en móvil */
        min-width: 50%;
    }
}
/* Estilos mejorados para la sección de Mobiliario Lounge */
.mobiliario-lounge {
    padding: 120px 0; /* Más espacio vertical */
    background-color: #f9f7f2;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 5px 15px rgba(0,0,0,0.05);
    width: 100%;
}

/* Contenedor más ancho específicamente para esta sección, pero no demasiado */
.wide-container {
    width: 85% !important; /* Reducción al 85% en lugar del 98% */
    max-width: 1500px !important; /* Reducción del ancho máximo */
    margin: 0 auto;
}

/* Añadir un elemento decorativo sutil */
.mobiliario-lounge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #f5a623, #e67e22, #f5a623);
    opacity: 0.7;
}

.lounge-grid {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Reducción de la proporción */
    gap: 40px;
    align-items: center;
    width: 100%;
}

.lounge-content {
    position: relative;
    z-index: 2;
}

.lounge-title {
    font-size: 44px;
    font-weight: 700;
    color: #445566;
    margin-bottom: 5px;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

/* Añadir un efecto de subrayado más elegante */
.lounge-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40%;
    height: 3px;
    background: linear-gradient(90deg, #f5a623, transparent);
}

.lounge-subtitle {
    font-size: 34px;
    font-weight: 400;
    color: #f5a623;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.lounge-separator {
    position: relative;
    width: 100px;
    height: 2px;
    background: rgba(93, 106, 117, 0.1);
    margin: 25px 0 35px;
    border-radius: 2px;
}

.lounge-separator::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 20px;
    background-image: url('Imagenes/separador.png');
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    top: -10px;
}

/* Estilos para las descripciones cambiantes */
#lounge-descriptions {
    position: relative;
    min-height: 150px; /* Ajustar según el contenido real */
}

.lounge-description {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.lounge-description.active {
    opacity: 1;
    visibility: visible;
}

.lounge-description h4 {
    color: #445566;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.lounge-description p {
    color: #5d6a75;
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: 17px;
}

/* Mejoras para el slider */
.lounge-slider {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%; /* Asegurar que tome todo el ancho disponible */
}

.lounge-slider:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.lounge-main-image {
    width: 100%;
    height: 550px; /* Ligera reducción de la altura */
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.lounge-main-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 75%, rgba(0,0,0,0.2));
    z-index: 1;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    display: block; /* Asegurar comportamiento correcto */
}

.lounge-slider:hover .main-image {
    transform: scale(1.03);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: rgba(200, 169, 126, 0.9);
    color: white;
    padding: 10px 25px;
    font-size: 24px;
    font-weight: 600;
    border-radius: 6px;
    letter-spacing: 1.5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    z-index: 2;
    transition: all 0.3s ease;
}

.lounge-slider:hover .image-badge {
    background-color: #C8A97E;
    transform: translateY(-3px);
}

.lounge-thumbnails {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    padding: 0 15px;
}

.thumbnail {
    width: 130px; /* Miniaturas más grandes */
    height: 90px; /* Miniaturas más grandes */
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.thumbnail.active {
    border-color: #C8A97E;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 5px 15px rgba(200, 169, 126, 0.3);
}

.thumbnail:hover:not(.active) {
    transform: translateY(-3px);
    border-color: rgba(200, 169, 126, 0.5);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail:hover img {
    transform: scale(1.1);
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 25px;
    transform: translateY(-50%);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lounge-slider:hover .slider-controls {
    opacity: 1;
}

.slider-control {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 24px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.slider-control:hover {
    background-color: #C8A97E;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(200, 169, 126, 0.3);
}

/* Responsive */
@media (max-width: 1200px) {
    .lounge-grid {
        gap: 20px;
        grid-template-columns: 1fr 2.5fr; /* Ajuste para pantallas grandes */
    }
    
    .lounge-main-image {
        height: 550px; /* Manteniendo imágenes grandes en pantallas medianas */
    }
}

@media (max-width: 992px) {
    .mobiliario-lounge {
        padding: 80px 0;
    }
    
    .lounge-grid {
        grid-template-columns: 1fr; /* En pantallas más pequeñas, mostrar en columna */
        gap: 40px;
    }
    
    .lounge-content {
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
        order: 2; /* Colocar el contenido debajo de las imágenes en móvil */
    }
    
    .lounge-title::after {
        left: 30%;
        width: 40%;
    }
    
    .lounge-separator {
        margin: 25px auto 35px;
    }
    
    .lounge-separator::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .lounge-slider {
        order: 1; /* Colocar el slider primero en móvil para darle más importancia */
        margin-bottom: 20px;
    }
    
    .lounge-main-image {
        height: 500px; /* Mantener imágenes grandes incluso en tablet */
    }
    
    #lounge-descriptions {
        min-height: 180px; /* Ajuste para pantallas medianas */
    }
}

@media (max-width: 768px) {
    .mobiliario-lounge {
        padding: 60px 0;
    }
    
    .lounge-title {
        font-size: 36px;
    }
    
    .lounge-subtitle {
        font-size: 28px;
    }
    
    .lounge-main-image {
        height: 450px; /* Mantener imágenes grandes en móvil */
        border-radius: 10px;
    }
    
    .image-badge {
        bottom: 20px;
        right: 20px;
        padding: 8px 20px;
        font-size: 20px;
    }
    
    .slider-control {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    #lounge-descriptions {
        min-height: 200px; /* Ajuste para pantallas más pequeñas */
    }
    
    .lounge-slider {
        width: 95%; /* Usar más ancho de la pantalla */
        margin: 0 auto;
    }
    
    .wide-container {
        width: 95% !important; /* Ajuste para móviles */
    }
}

@media (max-width: 576px) {
    .mobiliario-lounge {
        padding: 40px 0;
    }
    
    .lounge-title {
        font-size: 32px;
    }
    
    .lounge-subtitle {
        font-size: 24px;
    }
    
    .lounge-main-image {
        height: 400px; /* Mantener imágenes grandes incluso en móviles pequeños */
        border-radius: 8px;
    }
    
    .lounge-thumbnails {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    
    .thumbnail {
        width: 80px;
        height: 60px;
    }
    
    .image-badge {
        bottom: 15px;
        right: 15px;
        padding: 6px 15px;
        font-size: 18px;
    }
    
    #lounge-descriptions {
        min-height: 220px; /* Más espacio para móviles */
    }
    
    .lounge-description h4 {
        font-size: 20px;
    }
    
    .lounge-description p {
        font-size: 16px;
    }
    
    .lounge-slider {
        width: 100%; /* Usar todo el ancho disponible */
        margin-left: -10px;
        margin-right: -10px;
        box-shadow: none;
    }
    
    .wide-container {
        width: 100% !important;
        padding: 0 15px;
    }
}

/* Para pantallas muy pequeñas */
@media (max-width: 400px) {
    .thumbnail {
        width: 70px;
        height: 50px;
    }
    
    .lounge-main-image {
        height: 350px; /* Mantener imágenes grandes incluso en los dispositivos más pequeños */
    }
    
    #lounge-descriptions {
        min-height: 240px; /* Ajuste para pantallas muy pequeñas */
    }
    
    .slider-controls {
        padding: 0 10px;
    }
    
    .slider-control {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}
/* Hero section sin ningún tipo de filtro o overlay */
.hero {
    width: 100%;
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    text-align: left;
    padding: 0;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    /* Asegurarse de que no tenga filtros */
    filter: none;
    -webkit-filter: none;
    /* Asegurarse de que el blend mode no afecte */
    mix-blend-mode: normal;
}

/* Eliminar específicamente cualquier overlay existente */
.overlay,
.hero-slide::before,
.hero-slide::after,
.hero-image::before,
.hero-image::after,
.hero::before,
.hero::after {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Ajustar el contenido para que sea legible sin oscurecer la imagen */
.hero-content {
    position: relative;
    z-index: 5;
    padding: 40px;
    margin-top: 0;
    max-width: 800px;
    /* Usar un fondo semitransparente para el texto */
    background-color: rgba(0, 0, 0, 0.5);
    /* Se puede ajustar esta opacidad si es necesario */
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border-left: 4px solid #C8A97E;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background-color: #C8A97E;
    color: white;
    font-size: 12px;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 700;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-subtitle-large {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 600;
    color: #C8A97E;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Botones */
.btn-primary {
    background-color: #C8A97E;
    color: white;
    border: 2px solid #C8A97E;
    padding: 12px 25px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 25px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        width: 90%;
        padding: 30px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle-large {
        font-size: 22px;
    }
    
    .hero-description {
        font-size: 16px;
    }
}
/* Estilos para la sección de categorías */
.categories {
    padding: 100px 0;
    background-color: #fff;
}

.category-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.category-card {
    position: relative;
    height: 350px;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
    border: 1px solid #f0f0f0;
    aspect-ratio: 1.5/1;
}

.card-image-container {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    position: relative;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.category-card:hover img {
    transform: scale(1.03);
}

.category-title-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.3), transparent);
    color: white;
    text-align: center;
}

.category-title-gradient h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-card:hover .category-title-gradient h3 {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Estilos para los modales de categorías */
.category-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 0;
    width: 80%;
    max-width: 900px;
    position: relative;
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    color: #444;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #C8A97E;
}

.modal-content h2 {
    text-align: center;
    color: #333;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

.separator-line {
    width: 100px;
    height: 2px;
    background-color: #C8A97E;
    margin: 0 auto 30px;
}

/* Estilos para el carrusel del modal */
.modal-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-images {
    position: relative;
    height: 450px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: none;
}

.carousel-slide.active {
    opacity: 1;
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background-color: #C8A97E;
    color: white;
}

.carousel-arrow.prev {
    left: 20px;
}

.carousel-arrow.next {
    right: 20px;
}

/* Estilos responsivos */
@media (max-width: 992px) {
    .category-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-content {
        width: 90%;
        padding: 30px;
    }
    
    .carousel-images {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .categories {
        padding: 70px 0;
    }
    
    .category-container {
        gap: 20px;
    }
    
    .category-card {
        height: 300px;
    }
    
    .category-title-gradient h3 {
        font-size: 22px;
    }
    
    .modal-content {
        padding: 20px;
        margin-top: 10%;
    }
    
    .carousel-images {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .category-container {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        height: 250px;
        margin: 0 auto;
        max-width: 450px;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .carousel-images {
        height: 300px;
    }
    
    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
} 
.category-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.category-card {
  width: 350px !important;
  height: 350px !important;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  flex: 0 0 350px !important;
}

.card-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.category-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-title-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 30px 15px 15px;
  z-index: 2;
}

.category-title-gradient h3 {
  color: white;
  margin: 0;
  text-align: center;
}
