/* ========================================
   STYLES-UNIFIED.CSS 
   Versión final completa con todas las correcciones
   ======================================== */

/* RESET Y BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* HEADER Y NAVEGACIÓN */
header {
    background-color: white;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    left: -60px;
}

.logo img {
    height: 50px;
    transform: scale(5.5);
    transform-origin: left center;
    max-height: none !important;
    margin-right: 30px;
    position: relative;
    left: -10px;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 20px;
    position: relative;
}

.nav-links a {
    color: #666;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    padding: 5px 0;
}

.nav-links a:hover {
    color: #C8A97E;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #C8A97E;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons-header {
    display: flex;
    gap: 18px;
    margin-right: 25px;
    align-items: center;
}

.social-icons-header a {
    color: #666;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons-header a:hover {
    color: #C8A97E;
    transform: translateY(-2px);
}

.social-icons-header::after {
    content: '';
    height: 20px;
    width: 1px;
    background-color: #e0e0e0;
    margin-left: 10px;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #C8A97E;
    color: #C8A97E;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: #C8A97E;
    color: white;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    color: #333;
    z-index: 1001;
}

/* HERO SECTION */
.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;
}

.hero-content {
    padding: 30px;
    max-width: 700px;
    position: relative;
    z-index: 5;
    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: 11px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 8px;
    font-weight: 700;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-subtitle-large {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: 600;
    color: #C8A97E;
}

.hero-description {
    font-size: 16px;
    margin-bottom: 25px;
    max-width: 500px;
    line-height: 1.6;
    color: white;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-size: 14px;
    border-radius: 5px;
    text-decoration: none;
}

.btn-primary {
    background-color: #C8A97E;
    color: white;
    border: 2px solid #C8A97E;
}

.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;
}

.btn-secondary:hover {
    background-color: white;
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* CARRUSEL TRIPLE - CORREGIDO PARA 7 IMÁGENES */
.triple-carousel-section {
    margin: 0;
    padding: 0;
    background-color: #f9f7f2;
    overflow: hidden;
    position: relative;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    position: relative;
}

.slider-container::before {
    content: "";
    display: block;
    padding-top: 20%;
}

.slider-track {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: scroll-desktop 40s linear infinite;
}

@keyframes scroll-desktop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-175%);
    }
}

.slide {
    flex: 0 0 calc(100% / 4);
    min-width: calc(100% / 4);
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.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;
}

.slide:hover img {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}

.slider-container:hover .slider-track {
    animation-play-state: paused;
}

/* MOBILIARIO LOUNGE */
.mobiliario-lounge {
    padding: 80px 0 100px;
    background-color: #f9f7f2;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.05);
}

.wide-container {
    width: 85% !important;
    max-width: 1500px !important;
    margin: 0 auto;
}

.lounge-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.lounge-content {
    position: relative;
    z-index: 2;
}

.lounge-title {
    font-size: 56px;
    font-weight: 700;
    color: #445566;
    margin-bottom: 5px;
    line-height: 1;
}

.lounge-subtitle {
    font-size: 42px;
    font-weight: 400;
    color: #f5a623;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.lounge-info {
    margin-top: 35px;
}

.lounge-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lounge-features li {
    padding: 10px 0;
    color: #5d6a75;
    font-size: 22px;
    position: relative;
    padding-left: 30px;
}

.lounge-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #C8A97E;
    font-size: 28px;
    line-height: 1;
}

/* TEXTO DESTACADO LOUNGE */
.lounge-highlight-text {
    margin-top: 35px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(200, 169, 126, 0.1) 0%, rgba(245, 166, 35, 0.1) 100%);
    border-left: 4px solid #f5a623;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: slideInUp 0.8s ease-out;
}

.highlight-icon {
    font-size: 32px;
    filter: brightness(1.2);
}

.lounge-highlight-text p {
    font-size: 28px;
    font-weight: 600;
    color: #445566;
    margin: 0;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.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-main-image {
    width: 100%;
    height: 520px;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.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;
}

.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 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.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;
}

.slider-control:hover {
    background-color: #f5a623;
    color: white;
    transform: scale(1.1);
}

/* CATEGORÍAS */
.categories {
    padding: 100px 0;
    background-color: #fff;
}

.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;
}

.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;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    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;
    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%;
    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;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* MODALES */
.modal,
.category-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    overflow-y: auto;
}

.category-modal.show {
    display: block;
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 5% auto;
    padding: 40px;
    width: 80%;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {transform: translateY(-50px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: #C8A97E;
}

.separator-line {
    width: 100px;
    height: 2px;
    background-color: #C8A97E;
    margin: 0 auto 30px;
}

.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;
    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;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background-color: #C8A97E;
    color: white;
}

.carousel-arrow.prev {
    left: 20px;
}

.carousel-arrow.next {
    right: 20px;
}

/* BANNER DE LLAMADA */
.call-banner {
    background-color: #4a4a4a;
    padding: 60px 0;
    margin: 60px 0;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.call-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #C8A97E, #d9c4a3, #C8A97E);
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.banner-text {
    flex: 1;
    min-width: 300px;
}

.banner-text h3 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.banner-text p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 500px;
    line-height: 1.6;
}

.call-button {
    display: flex;
    align-items: center;
    background-color: #C8A97E;
    color: white;
    padding: 16px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid #C8A97E;
}

.call-button:hover {
    background-color: transparent;
    color: #C8A97E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.phone-icon {
    margin-right: 15px;
    display: flex;
    align-items: center;
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(0.95);
    }
}

/* SECCIÓN NOSOTROS */
.about {
    position: relative;
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.section-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 26px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
    position: relative;
    letter-spacing: 0.5px;
    padding-bottom: 12px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background-color: #f0ad4e;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

#simple-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-item:first-child {
    position: relative;
    opacity: 1;
}

.carousel-img {
    width: 100%;
    height: auto;
}

.commune-name {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 12px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.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 */
.cta {
    background-color: #333;
    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;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    transition: all 0.3s;
    padding: 12px 25px;
}

.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;
    padding: 12px 25px;
}

.btn-gold:hover {
    background-color: transparent;
    color: #C8A97E;
    transform: translateY(-3px);
}

/* CONTACTO */
.contact {
    background-color: #f9f9f9;
    padding: 100px 0;
}

.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;
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.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);
}

/* PARTNERS - CORREGIDO */
.partners {
    padding: 80px 0;
    background-color: #fff;
}

.partners .subtitle {
    font-size: 42px;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #C8A97E;
    text-align: center;
}

.partners-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 30px 0;
}

.partners-track {
    display: flex;
    animation: scroll-partners 30s linear infinite;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    flex: 0 0 auto;
    width: 320px;
    height: 200px;
    margin: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.partner-logo img {
    max-width: 100%;
    max-height: 160px;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

.partners-slider:hover .partners-track {
    animation-play-state: paused;
}

/* FOOTER */
.footer-modern {
    background-color: #1a1a1a !important;
    color: #ecf0f1 !important;
    padding: 40px 0 20px !important;
    font-family: 'Montserrat', sans-serif !important;
}

.footer-container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.footer-logo-section {
    flex: 1 !important;
    min-width: 300px !important;
    margin-bottom: 20px !important;
}

.footer-logos {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    margin-bottom: 15px !important;
}

.footer-modern .producciones-oasis-logo {
    max-width: 200px !important;
    height: auto !important;
    width: auto !important;
}

.footer-modern .secondary-logo {
    max-width: 150px !important;
    height: auto !important;
}

.footer-logo-section p {
    margin-top: 10px !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #aaa !important;
}

.footer-info-section {
    flex: 1 !important;
    min-width: 300px !important;
}

.footer-info-title {
    margin-bottom: 20px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #e2a739 !important;
}

.footer-contact-item {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 15px !important;
    color: #aaa !important;
}

.footer-contact-item i {
    margin-right: 10px !important;
    color: #e2a739 !important;
}

.footer-copyright {
    text-align: center !important;
    padding-top: 20px !important;
    margin-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    font-size: 14px !important;
    color: #888 !important;
}

/* WHATSAPP FLOTANTE */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: 'Montserrat', Arial, sans-serif;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

.whatsapp-options {
    display: none;
    flex-direction: column;
    margin-bottom: 15px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    width: 320px;
    transform-origin: bottom right;
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.3s ease;
}

.options-header {
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.whatsapp-option {
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
}

.whatsapp-option:last-child {
    border-bottom: none;
}

.whatsapp-option:hover {
    background-color: #f5f5f5;
}

.option-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.ventas {
    background-color: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.emergencias {
    background-color: rgba(251, 60, 60, 0.1);
    color: #FB3C3C;
}

.option-content {
    flex: 1;
}

.option-text {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.option-number {
    display: block;
    font-size: 13px;
    color: #777;
}

.option-arrow {
    margin-left: 10px;
}

.show-options {
    display: flex;
    transform: scale(1);
    opacity: 1;
}

/* ========================================
   RESPONSIVE - MEDIA QUERIES
   ======================================== */

@media (max-width: 992px) {
    .nav-links {
        padding: 0 10px;
    }
    
    .nav-links li {
        margin: 0 10px;
    }
    
    .nav-right {
        gap: 10px;
    }
    
    .social-icons-header {
        gap: 12px;
        margin-right: 15px;
    }
    
    .nav-right .btn {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    .lounge-title {
        font-size: 48px;
        text-align: center;
    }
    
    .lounge-subtitle {
        font-size: 36px;
    }
    
    .lounge-features li {
        font-size: 20px;
    }
    
    .lounge-highlight-text {
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .lounge-highlight-text p {
        font-size: 24px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: white;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.3s;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }
    
    .logo {
        left: 0;
    }
    
    .logo img {
        left: 0;
        transform: scale(2);
    }
    
    .nav-right {
        gap: 8px;
    }
    
    .social-icons-header {
        gap: 10px;
        margin-right: 10px;
    }
    
    .social-icons-header a svg {
        width: 16px;
        height: 16px;
    }
    
    .social-icons-header::after {
        display: none;
    }
    
    .nav-right .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .hero {
        min-height: 60vh;
    }
    
    /* Carrusel - Tablet */
    .slide {
        flex: 0 0 calc(100% / 3);
        min-width: calc(100% / 3);
    }
    
    .slider-track {
        animation: scroll-tablet 40s linear infinite;
    }
    
    @keyframes scroll-tablet {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-100% / 3 * 7));
        }
    }
    
    .lounge-title {
        font-size: 42px;
    }
    
    .lounge-subtitle {
        font-size: 32px;
    }
    
    .lounge-features li {
        font-size: 18px;
    }
    
    .lounge-highlight-text p {
        font-size: 22px;
    }
    
    .highlight-icon {
        font-size: 28px;
    }
    
    .lounge-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .lounge-content {
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .category-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner-text h3 {
        font-size: 28px;
    }
    
    .banner-text p {
        font-size: 17px;
    }
    
    .call-button {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .title {
        font-size: 28px;
    }
    
    section {
        padding: 70px 0;
    }
    
    .partners .subtitle {
        font-size: 36px;
        letter-spacing: 3px;
    }
    
    .partner-logo {
        width: 260px;
        height: 160px;
        margin: 0 25px;
    }
    
    .partner-logo img {
        max-height: 130px;
    }
    
    .footer-container {
        flex-direction: column;
    }
    
    .footer-logo-section,
    .footer-info-section {
        margin-bottom: 30px;
    }
    
    .footer-modern .producciones-oasis-logo {
        max-width: 150px !important;
    }
    
    .whatsapp-options {
        width: 280px;
        position: fixed;
        bottom: 100px;
        right: 20px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .contact-grid {
        gap: 20px;
    }
    
    .contact-info,
    .contact-form {
        padding: 30px 20px !important;
    }
    
    .contact-info h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .form-control {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .form-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* MÓVIL */
@media (max-width: 576px) {
    /* Hero móvil */
    .hero {
        min-height: 50vh !important;
    }
    
    .hero-content {
        padding: 12px !important;
        width: 92% !important;
        max-width: none !important;
        margin: 0 auto;
        background-color: rgba(0, 0, 0, 0.7) !important;
        border-left: 2px solid #C8A97E !important;
    }
    
    .hero-badge {
        font-size: 8px !important;
        padding: 2px 6px !important;
        margin-bottom: 6px !important;
    }
    
    .hero-title {
        font-size: 16px !important;
        line-height: 1.2 !important;
        margin-bottom: 6px !important;
        font-weight: 600 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
    }
    
    .hero-subtitle-large {
        font-size: 14px !important;
        line-height: 1.25 !important;
        margin-bottom: 8px !important;
        font-weight: 500 !important;
    }
    
    .hero-description {
        font-size: 12px !important;
        line-height: 1.4 !important;
        margin-bottom: 12px !important;
    }
    
    .hero-buttons {
        gap: 8px !important;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 7px 10px !important;
        font-size: 10px !important;
        letter-spacing: 0.5px !important;
        width: auto !important;
        max-width: 130px !important;
    }
    
    /* Carrusel móvil - 2 imágenes */
    .slide {
        flex: 0 0 calc(100% / 2);
        min-width: calc(100% / 2);
        padding: 8px;
    }
    
    .slider-track {
        animation: scroll-mobile 45s linear infinite;
    }
    
    @keyframes scroll-mobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-350%);
        }
    }
    
    /* Lounge móvil */
    .lounge-title {
        font-size: 36px;
    }
    
    .lounge-subtitle {
        font-size: 28px;
    }
    
    .lounge-features li {
        font-size: 17px;
    }
    
    .lounge-highlight-text {
        padding: 15px;
        margin-top: 25px;
    }
    
    .lounge-highlight-text p {
        font-size: 18px;
    }
    
    .highlight-icon {
        font-size: 24px;
    }
    
    /* Email en contacto */
    .contact-text {
        font-size: 13px;
        max-width: 100%;
    }
    
    .contact-text span:last-child {
        font-size: 12px;
        line-height: 1.4;
        display: block;
        word-break: break-all;
    }
    
    .contact-detail {
        gap: 8px;
    }
    
    .contact-icon {
        min-width: 32px;
        height: 32px;
    }
    
    .contact-info {
        padding: 25px 15px !important;
    }
    
    /* Otros ajustes móvil */
    .nav-right {
        gap: 5px;
    }
    
    .social-icons-header {
        gap: 8px;
        margin-right: 8px;
    }
    
    .social-icons-header a svg {
        width: 14px;
        height: 14px;
    }
    
    .nav-right .btn {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .category-container {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        height: 250px !important;
        margin: 0 auto;
        max-width: 450px;
    }
    
    .call-banner {
        padding: 35px 0;
        margin: 30px 0;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .banner-text h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .banner-text p {
        font-size: 15px;
    }
    
    .call-button {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    
    .partners .subtitle {
        font-size: 30px;
        letter-spacing: 2px;
    }
    
    .partner-logo {
        width: 200px;
        height: 120px;
        margin: 0 15px;
    }
    
    .partner-logo img {
        max-height: 100px;
    }
    
    .partners-track {
        animation-duration: 25s;
    }
    
    .footer-modern {
        padding: 30px 0 0 !important;
    }
    
    .footer-modern .producciones-oasis-logo {
        max-width: 120px !important;
    }
}

/* Móvil muy pequeño */
@media (max-width: 380px) {
    /* Carrusel 1 imagen */
    .slide {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 5px;
    }
    
    .slider-track {
        animation: scroll-mobile-small 50s linear infinite;
    }
    
    @keyframes scroll-mobile-small {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-700%);
        }
    }
    
    .hero-content {
        padding: 10px !important;
    }
    
    .hero-title {
        font-size: 15px !important;
        margin-bottom: 5px !important;
    }
    
    .hero-subtitle-large {
        font-size: 13px !important;
        margin-bottom: 6px !important;
    }
    
    .hero-description {
        font-size: 11px !important;
        margin-bottom: 10px !important;
    }
    
    .hero-badge {
        font-size: 7px !important;
        padding: 2px 5px !important;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 6px 8px !important;
        font-size: 9px !important;
    }
    
    .contact-text span:last-child {
        font-size: 11px;
    }
}