/*Global*/
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #192436;
            --secondary: #254166;
            --gold: #C7AA69;
            --dark: #0f0f1e;
            --border-color: #3a3a5a;
            --light: #ffffff;
            --gray: #b0b0b0;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--secondary);
            color: #ffffff;
            font-size: 1rem;
        }

        /* Header y Navegación */
        header {
            background-color: var(--primary);
            padding: 1.5rem 5%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.6rem;
            font-weight: bold;
            color: var(--gold);
            letter-spacing: 2px;
        }

        .logo span {
            display: block;
            font-size: 0.7rem;
            font-weight: normal;
            letter-spacing: 3px;
            margin-top: -5px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .nav-links a:hover {/*Global*/
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #192436;
            --secondary: #254166;
            --gold: #C7AA69;
            --dark: #0f0f1e;
            --border-color: #3a3a5a;
            --light: #ffffff;
            --gray: #b0b0b0;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--secondary);
            color: #ffffff;
            font-size: 1rem;
        }

        /* Header y Navegación */
        header {
            background-color: var(--primary);
            padding: 1.5rem 5%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.6rem;
            font-weight: bold;
            color: var(--gold);
            letter-spacing: 2px;
        }

        .logo span {
            display: block;
            font-size: 0.7rem;
            font-weight: normal;
            letter-spacing: 3px;
            margin-top: -5px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .btn-solicitar {
            background-color: var(--gold);
            color: #0f0f1e;
            padding: 0.8rem 1.8rem;
            border-radius: 5px;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .btn-solicitar:hover {
            background-color: var(--gold);
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            z-index: 1001;
            position: relative;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--gold);
            transition: all 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        @media (max-width: 768px) {
            body {
                font-size: 14px;
            }

            header {
                padding: 0.3rem 2% !important;
            }

            nav {
                gap: 0 !important;
            }

            .hamburger {
                display: flex !important;
            }

            nav img {
                width: 60px !important;
                height: 40px !important;
            }

            .nav-links {
                position: fixed !important;
                right: -100% !important;
                top: 45px !important;
                flex-direction: column !important;
                background-color: var(--primary);
                width: 100%;
                text-align: center;
                transition: right 0.3s;
                box-shadow: 0 10px 27px rgba(0,0,0,0.5);
                padding: 2rem 0;
                gap: 1.5rem;
                z-index: 999 !important;
                display: flex !important;
            }

            .nav-links.active {
                right: 0 !important;
            }

            .nav-links a {
                font-size: 1rem;
            }

            .btn-solicitar {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

            .elfsight-app-9b691cd6-dfd3-4108-975f-3b494c317ef6 {
                display: none !important;
            }

            .footer-inner {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 0.6rem 2%;
            }

            nav img {
                width: 70px;
                height: auto;
            }

            .footer {
                padding: 2rem 3%;
            }

            .footer h4 {
                font-size: 1rem;
            }

            .footer-text,
            .footer-links a,
            .footer-contact a {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 360px) {

            nav img {
                width: 80px;
            }
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--gold);
            transition: all 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Footer Styles */
        .footer {
            background-color: #192436;
            padding: 3rem 5%;
            border-top: 2px solid var(--gold);
            margin-top: 4rem;
        }

        .footer-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2rem;
        }

        .footer h4 {
            color: var(--gold);
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .footer-text {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            font-size: 0.85rem;
        }

        .footer-links ul,
        .footer-contact ul {
            list-style: none;
            padding: 0;
        }

        .footer-links li,
        .footer-contact li {
            margin-bottom: 0.6rem;
        }

        .footer-links a,
        .footer-contact a,
        .footer-social a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.85rem;
        }

        .footer-links a:hover,
        .footer-contact a:hover,
        .footer-social a:hover {
            color: var(--gold);
        }

        .footer-contact ul {
            line-height: 1.8;
        }

        .btn-footer {
            display: inline-block;
            background: linear-gradient(135deg, var(--gold) 0%, #d4b87a 100%);
            color: #0f0f1e;
            padding: 0.7rem 1.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            transition: transform 0.3s, box-shadow 0.3s;
            margin-top: 1rem;
        }

        .btn-footer:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(199, 170, 105, 0.3);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-social {
            display: flex;
            gap: 1.5rem;
        }

/*index.html*/
        /* Hero Section */
        .hero-home {
            margin-top: 80px;
            position: relative;
            min-height: 600px;
            display: flex;
            align-items: center;
            padding: 0 5%;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .hero-home {
                min-height: 450px;
            }
        }

        @media (max-width: 480px) {
            .hero-home {
                min-height: 350px;
                padding: 2rem 3%;
            }
        }

        .hero-home::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
            z-index: 1;
        }

        .hero-home img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .hero-home-content {
            max-width: 600px;
            position: relative;
            z-index: 2;
        }

        .hero-home h1 {
            font-size: 2.4rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-home p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: #e0e0e0;
        }

        .btn-cotizar {
            background-color: var(--gold);
            color: #0f0f1e;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 5px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-cotizar a {
            color: #0f0f1e;
            text-decoration: none;
        }

        .btn-cotizar:hover {
            background-color: var(--gold);
        }

        /* Section Title */
        .section-title-home {
            text-align: center;
            font-size: 2rem;
            color: var(--gold);
            margin: 5rem 0 3rem 0;
            position: relative;
        }

        .section-title-home::before,
        .section-title-home::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 200px;
            height: 2px;
            background: linear-gradient(to right, transparent, #C7AA69);
        }

        .section-title-home::before {
            right: 60%;
            margin-right: 20px;
        }

        .section-title-home::after {
            left: 60%;
            margin-left: 20px;
            background: linear-gradient(to left, transparent, #C7AA69);
        }

        /* Why Choose Us Section */
        .why-choose-home {
            padding: 0 5%;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            box-sizing: border-box;
        }

        /* BBB Badge Section */
        .bbb-badge-container-home {
            display: grid;
            justify-content: center;
            margin-bottom: 2rem;
            width: 100%;
            box-sizing: border-box;
        }

        .bbb-link-home {
            display: grid;
            align-items: center;
            gap: 2rem;
            background: var(--primary);
            border-radius: 15px;
            padding: 2rem 3rem;
            text-decoration: none;
            transition: all 0.3s;
        }

        .bbb-link-home:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
        }

        .bbb-badge-home {
            height: 80px;
            width: auto;
        }

        .bbb-info-home {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .bbb-rating-home {
            font-size: 1.25rem;
            font-weight: bold;
            color: var(--gold);
        }

        .bbb-date-home {
            color: #b0b0b0;
            font-size: 0.95rem;
        }

        .bbb-click-home {
            color: #7eb8d6;
            font-size: 0.9rem;
            margin-top: 0.3rem;
            transition: color 0.3s;
        }

        .bbb-link-home:hover .bbb-click-home {
            color: var(--gold);
        }

        .features-home-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .feature-home-card {
            background-color: var(--primary);
            border: 1px solid var(--primary);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            transition: transform 0.3s, border-color 0.3s;
        }

        .feature-home-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
        }

        .feature-home-icon {
            font-size: 2.4rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .feature-home-card h3 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .feature-home-card p {
            color: #b0b0b0;
            font-size: 0.95rem;
        }

        /* Gallery Carousel Section */
        


        .like-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background-color: rgba(0, 0, 0, 0.7);
            color: #fff;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            backdrop-filter: blur(10px);
        }

        .like-count {
            color: var(--gold);
            font-weight: bold;
        }

        
        .work-description {
            color: #e0e0e0;
            line-height: 1.8;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .work-details {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .work-tag {
            background-color: rgba(199, 170, 105, 0.2);
            color: var(--gold);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            border: 1px solid var(--gold);
        }

        .btn-like {
            background-color: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
            padding: 1rem 2rem;
            border-radius: 5px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            align-self: flex-start;
        }

        .btn-like:hover {
            background-color: var(--gold);
            color: #0f0f1e;
        }

        .btn-like.liked {
            background-color: var(--gold);
            color: #0f0f1e;
        }

        .btn-like .heart {
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .btn-like.liked .heart {
            color: #ff4444;
        }



        
        /* Responsive Design - Mobile First Approach */
        @media (max-width: 1200px) {

            .btn-solicitar {
                padding: 0.7rem 1.4rem;
                font-size: 0.85rem;
            }

            .hero-content {
                max-width: 90%;
            }
        }

        @media (max-width: 1024px) {
            .hero {
                height: 500px;
            }
            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .btn-cotizar {
                padding: 0.9rem 2rem;
            }

           

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
        

            .btn-solicitar {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

            .hero {
                height: 450px;
            }

            .hero h1 {
                font-size: 1.7rem;
            }

            .hero p {
                font-size: 0.95rem;
            }

            .btn-cotizar {
                padding: 0.85rem 1.8rem;
                font-size: 0.9rem;
            }

            .cards-container,
            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }



            .section-title {
                font-size: 1.8rem;
            }

            .section-title::before,
            .section-title::after {
                width: 80px;
            }

            /* BBB Badge responsive */
            .bbb-link {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem;
                gap: 1rem;
            }

            .bbb-badge {
                height: 60px;
            }

            .bbb-rating {
                font-size: 1rem;
            }

           

            .work-description {
                font-size: 0.9rem;
            }

            

            .btn-like,
            .btn-enviar,
            .btn-llamar {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

        }

        @media (max-width: 480px) {

            .hero {
                height: 400px;
                padding: 0 3%;
            }

            .hero h1 {
                font-size: 1.4rem;
                line-height: 1.3;
            }

            .hero p {
                font-size: 0.85rem;
            }

            .btn-cotizar {
                padding: 0.75rem 1.5rem;
                font-size: 0.85rem;
                width: 100%;
                max-width: 250px;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .section-title::before,
            .section-title::after {
                width: 50px;
            }


            

        }

        @media (max-width: 360px) {
            .hero h1 {
                font-size: 1.2rem;
            }

            .hero p {
                font-size: 0.8rem;
            }

            .btn-cotizar {
                font-size: 0.8rem;
                padding: 0.65rem 1.2rem;
            }

            .carousel-image img {
                height: 180px;
            }

        }
        /* products.html - Optimized Styles */

/* Hero Section */
.hero-product-products {
    margin-top: 80px;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-product-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-product-products-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content-products {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-product-products h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-subtitle-products {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}

.hero-subtitle-products span {
    color: var(--gold);
}

/* Features Grid */
.features-grid-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item-products {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-icon-products {
    font-size: 1.3rem;
}

.feature-text-products {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* Main Image Section */
.main-image-section-products {
    display: none;
}

/* Carousel Section */
.door-types-section-products {
    padding: 4rem 0;
    width: 100%;
    margin: 0;
    background: var(--primary);
}

.door-types-section-products h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: var(--gold);
    text-align: center;
    padding: 0 5%;
}

.door-types-section-products > p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    text-align: center;
    padding: 0 5%;
}

.carousel-container-products {
    position: relative;
    width: 100%;
    margin: 0;
}

.carousel-wrapper-products {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 2%;
}

.door-type-card-products {
    display: flex;
    flex-direction: row;
    background: rgba(var(--secondary-r), var(--secondary-g), var(--secondary-b), 0.14);
    border-radius: 0;
    overflow: hidden;
    border: 2px solid var(--primary);
    min-height: 420px;
}

.door-type-card-products:nth-child(even) {
    flex-direction: row-reverse;
}

.door-type-image-products {
    width: 100%;
    height: 100%;
    min-height: 320px;
    flex: 1;
}

.door-type-image-products img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.door-type-content-products {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: var(--secondary);
    flex: 1;
}

.door-type-content-products h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.door-type-content-products p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Submenu styles */
.submenu-products {
    margin-top: 1rem;
    padding-top: 0;
    border-top: none;
}

.submenu-products h4 {
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.submenu-list-products {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.submenu-list-products li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
}

.submenu-list-products li::before {
    content: '•';
    color: var(--gold);
    font-size: 1.2rem;
}

.btn-view-more-products {
    display: inline-block;
    margin-top: 1.2rem;
    padding: 0.8rem 2rem;
    background-color: var(--gold);
    color: var(--dark);
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-view-more-products:hover {
    background-color: #d4b876;
    color: var(--dark);
    transform: translateX(5px);
}

/* Brand Carousel */
.brands-section-products {
    padding: 3.5rem 0 2rem;
    width: 100%;
    margin: 0;
    background: var(--secondary);
}

.brands-header-products {
    text-align: center;
    margin-bottom: 1.8rem;
    padding: 0 5%;
}

.brands-header-products .eyebrow {
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.brands-header-products h2 {
    color: #ffffff;
    font-size: 1.8rem;
}

.brands-marquee-products {
    position: relative;
    overflow: hidden;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 1.5rem 0;
}

.brands-marquee-products::before,
.brands-marquee-products::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
}

.brands-marquee-products::before {
    left: 0;
    background: transparent;
}

.brands-marquee-products::after {
    right: 0;
    background: linear-gradient(-90deg, rgba(25, 36, 54, 0) 0%, rgba(25, 36, 54, 0) 100%);
}

.brands-track-products {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    animation: scrollBrands 22s linear infinite;
    width: max-content;
}

.brands-marquee-products:hover .brands-track-products {
    animation-play-state: paused;
}

.brand-logo-products {
    height: 60px;
    width: 180px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: transform 0.3s, opacity 0.3s, filter 0.3s;
}

.brand-logo-products:hover {
    transform: translateY(-4px);
    opacity: 1;
    filter: none;
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-product-products h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle-products {
        font-size: 1.1rem;
    }

    .carousel-wrapper-products {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .door-type-card-products {
        flex-direction: column;
    }

    .door-type-card-products:nth-child(even) {
        flex-direction: column;
    }

    .door-type-image-products {
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    .hero-product-products {
        min-height: 450px;
    }

    .hero-product-products h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle-products {
        font-size: 1rem;
    }

    .features-grid-products {
        grid-template-columns: 1fr;
    }

    .door-type-image-products {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero-product-products {
        min-height: 350px;
        padding: 2rem 3%;
    }

    .hero-product-products h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle-products {
        font-size: 0.9rem;
    }

    .door-type-image-products {
        height: 200px;
    }
}

@media (max-width: 360px) {
    .hero-product-products h1 {
        font-size: 1.3rem;
    }

    .hero-subtitle-products {
        font-size: 0.85rem;
    }

    .door-type-image-products {
        height: 180px;
    }
}
        
        
        
       /*Terms.html*/ 
        /* Main Content */
        main {
            margin-top: 80px;
            padding: 3rem 5%;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .terms-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid var(--gold);
        }

        .terms-header h1 {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 0.5rem;
        }

        .terms-header .company-name {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 0.5rem;
        }

        .terms-header .last-updated {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 1rem;
        }

        .terms-content {
            background: rgba(15, 15, 30, 0.6);
            padding: 2.5rem;
            border-radius: 10px;
            border: 1px solid rgba(199, 170, 105, 0.2);
        }

        .terms-section {
            margin-bottom: 2.5rem;
        }

        .terms-section:last-child {
            margin-bottom: 0;
        }

        .terms-section h2 {
            font-size: 1.3rem;
            color: var(--gold);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .terms-section .section-number {
            background: var(--gold);
            color: var(--dark);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            font-weight: bold;
            flex-shrink: 0;
        }

        .terms-section p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.8;
            margin-bottom: 0.8rem;
        }

        .terms-section ul {
            margin-left: 1.5rem;
            margin-top: 0.8rem;
        }

        .terms-section li {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.5rem;
        }

        .highlight-box {
            background: rgba(199, 170, 105, 0.1);
            border-left: 4px solid var(--gold);
            padding: 1.2rem;
            margin: 1rem 0;
            border-radius: 5px;
        }

        .highlight-box p {
            margin-bottom: 0;
        }

        .warning-box {
            background: rgba(255, 100, 100, 0.1);
            border-left: 4px solid #ff6464;
            padding: 1.2rem;
            margin: 1rem 0;
            border-radius: 5px;
        }

        .warning-box strong {
            color: #ff6464;
        }

        .contact-section {
            background: rgba(199, 170, 105, 0.1);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            margin-top: 3rem;
        }

        .contact-section h3 {
            color: var(--gold);
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .contact-section p {
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .contact-section a {
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
        }

        .contact-section a:hover {
            text-decoration: underline;
        }


        

        

       

        /* Responsive Design - Mobile First Approach */


        @media (max-width: 1024px) {
            .terms-header h1 {
                font-size: 2.2rem;
            }

            main {
                padding: 2.5rem 4%;
            }
        }

        @media (max-width: 768px) {

            .btn-solicitar {
                padding: 0.6rem 1.1rem;
                font-size: 0.8rem;
                white-space: nowrap;
            }

            main {
                padding: 2rem 3%;
            }

            .terms-header h1 {
                font-size: 1.9rem;
            }

            .terms-content {
                padding: 1.5rem;
            }

            .terms-section h2 {
                font-size: 1.2rem;
            }

            .terms-section h3 {
                font-size: 1rem;
            }

           
        }

        @media (max-width: 480px) {
            

            main {
                padding: 1.5rem 3%;
            }

            .terms-header {
                padding: 2rem 0;
            }

            .terms-header h1 {
                font-size: 1.6rem;
            }

            .terms-content {
                padding: 1.2rem;
            }

            .terms-section h2 {
                font-size: 1.1rem;
            }

            .terms-section h3 {
                font-size: 0.95rem;
            }

            .terms-section p,
            .terms-section li {
                font-size: 0.85rem;
            }

        }

        @media (max-width: 360px) {

            .terms-header h1 {
                font-size: 1.4rem;
            }

            .terms-section h2 {
                font-size: 1rem;
            }
        }


        /*aboutus*/


         /* Page Title */
        .page-hero {
            margin-top: 80px;
            padding: 4rem 5%;
            text-align: center;
            background: linear-gradient(135deg, rgba(25, 36, 54, 0.9), rgba(30, 30, 50, 0.9));
        }

        .page-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--gold);
        }

        .page-hero p {
            font-size: 1.1rem;
            color: #e0e0e0;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Main Content */
        .content-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 5%;
        }

        /* Section Title */
        .section-title {
            text-align: center;
            font-size: 2rem;
            color: var(--gold);
            margin: 3rem 0 2.5rem 0;
            position: relative;
        }

        .section-title::before,
        .section-title::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 200px;
            height: 2px;
            background: linear-gradient(to right, transparent, var(--gold));
        }

        .section-title::before {
            right: 60%;
            margin-right: 20px;
        }

        .section-title::after {
            left: 60%;
            margin-left: 20px;
            background: linear-gradient(to left, transparent, var(--gold));
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .feature-card {
            background-color: var(--dark);
            border: 2px solid var(--border-color);
            border-radius: 10px;
            padding: 2.5rem 2rem;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .feature-card:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(199, 170, 105, 0.15);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--gold);
            line-height: 1;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            color: #ffffff;
            margin: 0;
        }

        .feature-card p {
            color: #b0b0b0;
            font-size: 0.95rem;
            margin: 0;
            line-height: 1.7;
        }

        /* Two Column Layout */
        .two-column-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin: 4rem 0;
        }

        .two-column-content h2 {
            font-size: 1.8rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }

        .two-column-content ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .two-column-content li {
            display: flex;
            gap: 1rem;
            padding: 1rem;
            background-color: rgba(199, 170, 105, 0.1);
            border-left: 3px solid var(--gold);
            border-radius: 5px;
            font-size: 0.95rem;
            color: #e0e0e0;
        }

        .two-column-content li::before {
            content: '✓';
            color: var(--gold);
            font-weight: bold;
            font-size: 1.2rem;
            min-width: 20px;
        }

        .highlight-box {
            background: linear-gradient(135deg, rgba(199, 170, 105, 0.15), rgba(199, 170, 105, 0.05));
            border: 2px solid var(--gold);
            border-radius: 10px;
            padding: 2rem;
            margin: 2rem 0;
        }

        .highlight-box h3 {
            color: var(--gold);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .highlight-box p {
            color: #e0e0e0;
            line-height: 1.8;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(25, 36, 54, 0.8), rgba(30, 30, 50, 0.8));
            border: 2px solid var(--gold);
            border-radius: 10px;
            padding: 3rem;
            text-align: center;
            margin: 4rem 0;
        }

        .cta-section h2 {
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.1rem;
            color: #e0e0e0;
            margin-bottom: 2rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-primary {
            background-color: var(--gold);
            color: #0f0f1e;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 5px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            background-color: #c49463;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(199, 170, 105, 0.3);
        }

        
        @media (max-width: 1024px) {
            .page-hero h1 {
                font-size: 2.2rem;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .two-column-section {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
        }

        @media (max-width: 768px) {


            .page-hero {
                min-height: 300px;
            }

            .page-hero h1 {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .section-title::before,
            .section-title::after {
                width: 70px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .two-column-section {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .cta-section {
                padding: 2rem;
            }

            .cta-section h2 {
                font-size: 1.5rem;
            }

    
        }

        @media (max-width: 480px) {
            header {
                padding: 0.8rem 2%;
            }

            nav img {
                width: 90px;
            }

            .nav-links {
                display: none;
            }

            .page-hero {
                min-height: 250px;
            }

            .page-hero h1 {
                font-size: 1.5rem;
            }

            .section-title {
                font-size: 1.3rem;
            }

            .section-title::before,
            .section-title::after {
                width: 50px;
            }

            .cta-section {
                padding: 1.5rem;
            }

            .cta-section h2 {
                font-size: 1.3rem;
            }

            .footer {
                padding: 2rem 3%;
            }

            .footer h4 {
                font-size: 1rem;
            }

            .footer-text,
            .footer-links a,
            .footer-contact a {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 360px) {
            nav img {
                width: 80px;
            }

            .page-hero h1 {
                font-size: 1.3rem;
            }

            .cta-section h2 {
                font-size: 1.2rem;
            }
        }

    
        /* Aboutus.html */
        

/* Hero Section */
.hero-block-aboutus {
    margin-top: 80px;
    padding: 4rem 5%;
    text-align: center;
    background: linear-gradient(135deg, rgba(25, 36, 54, 0.9), rgba(30, 30, 50, 0.9));
}

.hero-block-aboutus h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.hero-block-aboutus p {
    font-size: 1.1rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content */
.page-shell-aboutus {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 5%;
}

/* Section Title */
.section-heading-aboutus {
    text-align: center;
    font-size: 2rem;
    color: var(--gold);
    margin: 3rem 0 2.5rem 0;
    position: relative;
}

/* Features Grid */
.card-grid-aboutus {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.card-aboutus {
    background-color: var(--primary);
    border-radius: 5px;
    padding: 2.5rem 2rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-aboutus:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(199, 170, 105, 0.15);
}


.card-aboutus h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin: 0;
}

.card-aboutus p {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}

/* Two Column Layout */
.split-section-aboutus {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 4rem 0;
}

.split-text-aboutus h2 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.split-text-aboutus ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.split-text-aboutus li {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(199, 170, 105, 0.1);
    border-left: 3px solid var(--gold);
    border-radius: 5px;
    font-size: 0.95rem;
    color: #e0e0e0;
}

.split-text-aboutus li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
    min-width: 20px;
}

.info-box-aboutus {
    background: linear-gradient(135deg, rgba(199, 170, 105, 0.15), rgba(199, 170, 105, 0.05));
    border: 2px solid var(--gold);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.info-box-aboutus h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-box-aboutus p {
    color: #e0e0e0;
    line-height: 1.8;
}

/* CTA Section */
.cta-block-aboutus {
    background: linear-gradient(135deg, rgba(25, 36, 54, 0.8), rgba(30, 30, 50, 0.8));
    border: 2px solid var(--gold);
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
    margin: 4rem 0;
}

.cta-block-aboutus h2 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.cta-block-aboutus p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-main-aboutus {
    background-color: var(--gold);
    color: #0f0f1e;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-main-aboutus:hover {
    background-color: #c49463;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(199, 170, 105, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-block-aboutus h1 {
        font-size: 2.2rem;
    }

    .card-grid-aboutus {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-section-aboutus {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-block-aboutus {
        min-height: 300px;
    }

    .hero-block-aboutus h1 {
        font-size: 1.8rem;
    }

    .section-heading-aboutus {
        font-size: 1.5rem;
    }

    .section-heading-aboutus::before,
    .section-heading-aboutus::after {
        width: 70px;
    }

    .card-grid-aboutus {
        grid-template-columns: 1fr;
    }

    .split-section-aboutus {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-block-aboutus {
        padding: 2rem;
    }

    .cta-block-aboutus h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-block-aboutus {
        min-height: 250px;
    }

    .hero-block-aboutus h1 {
        font-size: 1.5rem;
    }

    .section-heading-aboutus {
        font-size: 1.3rem;
    }

    .section-heading-aboutus::before,
    .section-heading-aboutus::after {
        width: 50px;
    }

    .cta-block-aboutus {
        padding: 1.5rem;
    }

    .cta-block-aboutus h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 360px) {
    .hero-block-aboutus h1 {
        font-size: 1.3rem;
    }

    .cta-block-aboutus h2 {
        font-size: 1.2rem;
    }
} 

/*Privacy.html*/
/* Privacy Policy - Optimized Styles */

/* Main Content */
.container-privacy {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 5% 60px;
}

.policy-header-privacy {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-header-privacy h1 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.policy-subtitle-privacy {
    color: var(--gray);
    font-size: 1.1rem;
}

.policy-intro-privacy {
    background-color: rgba(25, 35, 51, 0.6);
    border-left: 4px solid var(--gold);
    padding: 2rem;
    border-radius: 5px;
    margin-bottom: 3rem;
}

.policy-intro-privacy p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.8;
}

.section-privacy {
    margin-bottom: 3rem;
}

.section-privacy h2 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3a3a5a;
}

.section-privacy h3 {
    font-size: 1.3rem;
    color: var(--light);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.section-privacy p {
    color: #e0e0e0;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.section-privacy ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.section-privacy li {
    color: #e0e0e0;
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.highlight-box-privacy {
    background-color: rgba(199, 170, 105, 0.1);
    border: 1px solid var(--gold);
    padding: 1.5rem;
    border-radius: 5px;
    margin: 1.5rem 0;
}

.highlight-box-privacy p {
    color: var(--light);
}

.contact-box-privacy {
    background-color: rgba(25, 35, 51, 0.8);
    border: 2px solid var(--gold);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 2rem 0;
}

.contact-box-privacy h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-box-privacy a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-box-privacy a:hover {
    color: #c49463;
}

.poweredby-privacy {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #3a3a5a;
    color: var(--gray);
    font-size: 0.9rem;
}

.poweredby-logo-privacy {
    color: var(--gold);
    font-weight: bold;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container-privacy {
        padding: 110px 4% 50px;
    }
}

@media (max-width: 1024px) {
    .policy-header-privacy h1 {
        font-size: 2.2rem;
    }

    .section-privacy h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container-privacy {
        padding: 100px 3% 40px;
    }

    .policy-header-privacy h1 {
        font-size: 1.8rem;
    }

    .section-privacy {
        padding: 1.5rem;
    }

    .section-privacy h2 {
        font-size: 1.3rem;
    }

    .section-privacy h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container-privacy {
        padding: 90px 3% 30px;
    }

    .policy-header-privacy {
        padding: 1.5rem 0;
    }

    .policy-header-privacy h1 {
        font-size: 1.5rem;
    }

    .section-privacy {
        padding: 1.2rem;
    }

    .section-privacy h2 {
        font-size: 1.2rem;
    }

    .section-privacy h3 {
        font-size: 1rem;
    }

    .section-privacy p,
    .section-privacy li {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .policy-header-privacy h1 {
        font-size: 1.3rem;
    }

    .section-privacy h2 {
        font-size: 1.1rem;
    }
}
            color: var(--gold);
        }

        .btn-solicitar {
            background-color: var(--gold);
            color: #0f0f1e;
            padding: 0.8rem 1.8rem;
            border-radius: 5px;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .btn-solicitar:hover {
            background-color: var(--gold);
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            z-index: 1001;
            position: relative;
            width: 30px;
            height: auto;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--gold);
            transition: all 0.3s;
            display: block;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Mostrar hamburger en pantallas pequeñas */
        @media (max-width: 768px) {
            .hamburger {
                display: flex !important;
            }
            
            body {
                font-size: 14px;
            }

            header {
                padding: 0.3rem 3% !important;
                height: auto !important;
            }

            nav {
                flex-wrap: nowrap !important;
                gap: 0 !important;
                max-width: 100% !important;
                margin: 0 !important;
            }

            nav img {
                width: 60px !important;
                height: 50px !important;
            }

            .nav-links {
                position: fixed !important;
                right: -100% !important;
                top: 60px !important;
                flex-direction: column !important;
                background-color: var(--primary);
                width: 100%;
                text-align: center;
                transition: right 0.3s ease;
                box-shadow: 0 10px 27px rgba(0,0,0,0.5);
                padding: 2rem 0;
                gap: 1.5rem;
                z-index: 999;
                display: flex !important;
            }

            .nav-links.active {
                right: 0 !important;
            }

            .nav-links a {
                font-size: 1rem;
            }

            .btn-solicitar {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

            .hero-home {
                margin-top: 0 !important;
                padding-top: 70px !important;
                height: auto !important;
                min-height: 350px !important;
                padding-bottom: 2rem !important;
                padding-left: 2% !important;
                padding-right: 2% !important;
                flex-direction: column !important;
                justify-content: center !important;
                background-size: cover !important;
                background-position: center !important;
            }

            .hero-home img {
                object-fit: cover !important;
                z-index: 0 !important;
            }

            .hero-home::before {
                z-index: 1 !important;
            }

            .hero-home-content {
                max-width: 100% !important;
                text-align: center !important;
                z-index: 2 !important;
                position: relative !important;
            }

            .hero-home h1 {
                font-size: 1.5rem !important;
                margin-bottom: 1rem !important;
                line-height: 1.3 !important;
            }

            .hero-home p {
                font-size: 0.9rem !important;
                margin-bottom: 1.5rem !important;
            }

            .btn-cotizar {
                width: 100% !important;
                padding: 1rem !important;
                font-size: 0.85rem !important;
            }

            .footer-inner {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hamburger {
                display: flex !important;
            }
            
            header {
                padding: 0.8rem 2%;
            }

            nav img {
                width: 90px;
                height: auto;
            }

            .footer {
                padding: 2rem 3%;
            }

            .footer h4 {
                font-size: 1rem;
            }

            .footer-text,
            .footer-links a,
            .footer-contact a {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 360px) {
            .hamburger {
                display: flex !important;
            }

            nav img {
                width: 80px;
            }
        }

        /* Footer Styles */
        .footer {
            background-color: #192436;
            padding: 3rem 5%;
            border-top: 2px solid var(--gold);
            margin-top: 4rem;
        }

        .footer-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2rem;
        }

        .footer h4 {
            color: var(--gold);
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .footer-text {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            font-size: 0.85rem;
        }

        .footer-links ul,
        .footer-contact ul {
            list-style: none;
            padding: 0;
        }

        .footer-links li,
        .footer-contact li {
            margin-bottom: 0.6rem;
        }

        .footer-links a,
        .footer-contact a,
        .footer-social a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.85rem;
        }

        .footer-links a:hover,
        .footer-contact a:hover,
        .footer-social a:hover {
            color: var(--gold);
        }

        .footer-contact ul {
            line-height: 1.8;
        }

        .btn-footer {
            display: inline-block;
            background: linear-gradient(135deg, var(--gold) 0%, #d4b87a 100%);
            color: #0f0f1e;
            padding: 0.7rem 1.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            transition: transform 0.3s, box-shadow 0.3s;
            margin-top: 1rem;
        }

        .btn-footer:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(199, 170, 105, 0.3);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-social {
            display: flex;
            gap: 1.5rem;
        }

/*index.html*/
        /* Hero Section */
        .hero-home {
            margin-top: 80px;
            height: 500px;
            position: relative;
            display: flex;
            align-items: center;
            padding: 0 5%;
            overflow: hidden;
        }

        .hero-home::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
            z-index: 1;
        }

        .hero-home img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .hero-home-content {
            max-width: 600px;
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .hero-home h1 {
            font-size: 2.4rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-home p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: #e0e0e0;
        }

        .btn-cotizar {
            background-color: var(--gold);
            color: #0f0f1e;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 5px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-cotizar a {
            color: #0f0f1e;
            text-decoration: none;
        }

        .btn-cotizar:hover {
            background-color: var(--gold);
        }

        /* Section Title */
        .section-title-home {
            text-align: center;
            font-size: 2rem;
            color: var(--gold);
            margin: 5rem 0 3rem 0;
            position: relative;
        }

        .section-title-home::before,
        .section-title-home::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 200px;
            height: 2px;
            background: linear-gradient(to right, transparent, #C7AA69);
        }

        .section-title-home::before {
            right: 60%;
            margin-right: 20px;
        }

        .section-title-home::after {
            left: 60%;
            margin-left: 20px;
            background: linear-gradient(to left, transparent, #C7AA69);
        }

        /* Why Choose Us Section */
        .why-choose-home {
            padding: 0 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* BBB Badge Section */
        .bbb-badge-container-home {
            display: flex;
            justify-content: center;
            margin-bottom: 4rem;
        }

        .bbb-link-home {
            display: flex;
            align-items: center;
            gap: 2rem;
            background: linear-gradient(135deg, rgba(15, 15, 30, 0.8), rgba(30, 30, 50, 0.8));
            border: 2px solid #3a3a5a;
            border-radius: 15px;
            padding: 2rem 3rem;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .bbb-link-home:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
        }

        .bbb-badge-home {
            height: 80px;
            width: auto;
            filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
        }

        .bbb-info-home {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .bbb-rating-home {
            font-size: 1.25rem;
            font-weight: bold;
            color: var(--gold);
        }

        .bbb-date-home {
            color: #b0b0b0;
            font-size: 0.95rem;
        }

        .bbb-click-home {
            color: #7eb8d6;
            font-size: 0.9rem;
            margin-top: 0.3rem;
            transition: color 0.3s;
        }

        .bbb-link-home:hover .bbb-click-home {
            color: var(--gold);
        }

        .features-home-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .feature-home-card {
            background-color: var(--primary);
            border: 1px solid var(--primary);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            transition: transform 0.3s, border-color 0.3s;
        }

        .feature-home-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
        }

        .feature-home-icon {
            font-size: 2.4rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .feature-home-card h3 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .feature-home-card p {
            color: #b0b0b0;
            font-size: 0.95rem;
        }

        /* Gallery Carousel Section */

        .like-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background-color: rgba(0, 0, 0, 0.7);
            color: #fff;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            backdrop-filter: blur(10px);
        }

        .like-count {
            color: var(--gold);
            font-weight: bold;
        }



        .work-description {
            color: #e0e0e0;
            line-height: 1.8;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .work-details {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .work-tag {
            background-color: rgba(199, 170, 105, 0.2);
            color: var(--gold);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            border: 1px solid var(--gold);
        }

        .btn-like {
            background-color: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
            padding: 1rem 2rem;
            border-radius: 5px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            align-self: flex-start;
        }

        .btn-like:hover {
            background-color: var(--gold);
            color: #0f0f1e;
        }

        .btn-like.liked {
            background-color: var(--gold);
            color: #0f0f1e;
        }

        .btn-like .heart {
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .btn-like.liked .heart {
            color: #ff4444;
        }

        /* Testimonials Section */
        .testimonials-home {
            padding: 0 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Contact Section - Removed unused styles */
        /* Testimonials section kept minimal for elfsight widget */

        

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .contact-icon {
            font-size: 1.25rem;
            color: var(--gold);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .contact-form input,
        .contact-form textarea {
            background-color: rgba(15, 15, 30, 0.8);
            border: 1px solid #3a3a5a;
            border-radius: 5px;
            padding: 1rem;
            color: #ffffff;
            font-size: 0.9rem;
            transition: border-color 0.3s;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--gold);
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 150px;
            grid-column: 1 / -1;
        }

        .btn-enviar {
            background-color: var(--gold);
            color: #0f0f1e;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 5px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            justify-self: end;
        }

        .btn-enviar:hover {
            background-color: var(--gold);
        }

        .btn-llamar {
            background-color: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
            padding: 1rem 2.5rem;
            border-radius: 5px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-llamar:hover {
            background-color: var(--gold);
            color: #0f0f1e;
        }

        
        /* Responsive Design - Mobile First Approach */
        @media (max-width: 1200px) {

            .btn-solicitar {
                padding: 0.7rem 1.4rem;
                font-size: 0.85rem;
            }

            .hero-content {
                max-width: 90%;
            }
        }

        @media (max-width: 1024px) {
            .hero {
                height: 500px;
            }
            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .btn-cotizar {
                padding: 0.9rem 2rem;
            }

            .carousel-slide {
                flex-direction: column;
            }

            .carousel-image,
            .carousel-content {
                width: 100% !important;
            }

            .carousel-image img {
                height: 300px;
                object-fit: cover;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
        

            .btn-solicitar {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

            .hero {
                height: 450px;
            }

            .hero h1 {
                font-size: 1.7rem;
            }

            .hero p {
                font-size: 0.95rem;
            }

            .btn-cotizar {
                padding: 0.85rem 1.8rem;
                font-size: 0.9rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .section-title::before,
            .section-title::after {
                width: 80px;
            }

            /* BBB Badge responsive */
            .bbb-link {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem;
                gap: 1rem;
            }

            .bbb-badge {
                height: 60px;
            }

            .bbb-rating {
                font-size: 1rem;
            }

            /* Carousel responsive */
            .carousel-slide {
                flex-direction: column;
                gap: 1.5rem;
                padding: 1.5rem;
            }

            .carousel-image {
                min-height: 250px;
            }

            .carousel-image img {
                height: 250px;
            }

            .carousel-content h3 {
                font-size: 1.25rem;
            }

            .work-description {
                font-size: 0.9rem;
            }

            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }

            .carousel-btn-prev {
                left: 5px;
            }

            .carousel-btn-next {
                right: 5px;
            }

            .btn-like,
            .btn-enviar,
            .btn-llamar {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

        }

        @media (max-width: 480px) {

            .hero {
                height: 400px;
                padding: 0 3%;
            }

            .hero h1 {
                font-size: 1.4rem;
                line-height: 1.3;
            }

            .hero p {
                font-size: 0.85rem;
            }

            .btn-cotizar {
                padding: 0.75rem 1.5rem;
                font-size: 0.85rem;
                width: 100%;
                max-width: 250px;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .section-title::before,
            .section-title::after {
                width: 50px;
            }

            .carousel-image img {
                height: 200px;
            }

            .carousel-btn {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }

            .btn-like {
                padding: 0.7rem 1.2rem;
                font-size: 0.85rem;
            }

        }

        @media (max-width: 360px) {
            .hero h1 {
                font-size: 1.2rem;
            }

            .hero p {
                font-size: 0.8rem;
            }

            .btn-cotizar {
                font-size: 0.8rem;
                padding: 0.65rem 1.2rem;
            }

            .carousel-image img {
                height: 180px;
            }

        }
        /* products.html - Optimized Styles */

/* Hero Section */
.hero-product-products {
    margin-top: 80px;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-product-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-product-products-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content-products {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-product-products h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-subtitle-products {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}

.hero-subtitle-products span {
    color: var(--gold);
}

/* Features Grid */
.features-grid-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item-products {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-icon-products {
    font-size: 1.3rem;
}

.feature-text-products {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* Main Image Section */
.main-image-section-products {
    display: none;
}

/* Carousel Section */
.door-types-section-products {
    padding: 4rem 0;
    width: 100%;
    margin: 0;
    background: var(--primary);
}

.door-types-section-products h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
    text-align: center;
    padding: 0 5%;
}

.door-types-section-products > p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    text-align: center;
    padding: 0 5%;
}

.carousel-container-products {
    position: relative;
    width: 100%;
    margin: 0;
}

.carousel-wrapper-products {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 2%;
}

.door-type-card-products {
    display: flex;
    flex-direction: row;
    background: rgba(var(--secondary-r), var(--secondary-g), var(--secondary-b), 0.14);
    border-radius: 0;
    overflow: hidden;
    border: 2px solid var(--primary);
    min-height: 420px;
}

.door-type-card-products:nth-child(even) {
    flex-direction: row-reverse;
}

.door-type-image-products {
    width: 100%;
    height: 100%;
    min-height: 320px;
    flex: 1;
}

.door-type-image-products img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.door-type-content-products {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: var(--secondary);
    flex: 1;
}

.door-type-content-products h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.door-type-content-products p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Submenu styles */
.submenu-products {
    margin-top: 1rem;
    padding-top: 0;
    border-top: none;
}

.submenu-products h4 {
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.submenu-list-products {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.submenu-list-products li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
}

.submenu-list-products li::before {
    content: '•';
    color: var(--gold);
    font-size: 1.2rem;
}

.btn-view-more-products {
    display: inline-block;
    margin-top: 1.2rem;
    padding: 0.8rem 2rem;
    background-color: var(--gold);
    color: var(--dark);
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-view-more-products:hover {
    background-color: #d4b876;
    color: var(--dark);
    transform: translateX(5px);
}

/* Brand Carousel */
.brands-section-products {
    padding: 3.5rem 0 2rem;
    width: 100%;
    margin: 0;
    background: var(--secondary);
}

.brands-header-products {
    text-align: center;
    margin-bottom: 1.8rem;
    padding: 0 5%;
}

.brands-header-products .eyebrow {
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.brands-header-products h2 {
    color: #ffffff;
    font-size: 1.8rem;
}

.brands-marquee-products {
    position: relative;
    overflow: hidden;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 1.5rem 0;
}

.brands-marquee-products::before,
.brands-marquee-products::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
}

.brands-marquee-products::before {
    left: 0;
    background: transparent;
}

.brands-marquee-products::after {
    right: 0;
    background: linear-gradient(-90deg, rgba(25, 36, 54, 0) 0%, rgba(25, 36, 54, 0) 100%);
}

.brands-track-products {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    animation: scrollBrands 22s linear infinite;
    width: max-content;
}

.brands-marquee-products:hover .brands-track-products {
    animation-play-state: paused;
}

.brand-logo-products {
    height: 60px;
    width: 180px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: transform 0.3s, opacity 0.3s, filter 0.3s;
}

.brand-logo-products:hover {
    transform: translateY(-4px);
    opacity: 1;
    filter: none;
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-product-products h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle-products {
        font-size: 1.1rem;
    }

    .carousel-wrapper-products {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .door-type-card-products {
        flex-direction: column;
    }

    .door-type-card-products:nth-child(even) {
        flex-direction: column;
    }

    .door-type-image-products {
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    .hero-product-products {
        min-height: 450px;
    }

    .hero-product-products h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle-products {
        font-size: 1rem;
    }

    .features-grid-products {
        grid-template-columns: 1fr;
    }

    .door-type-image-products {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero-product-products {
        min-height: 350px;
        padding: 2rem 3%;
    }

    .hero-product-products h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle-products {
        font-size: 0.9rem;
    }

    .door-type-image-products {
        height: 200px;
    }
}

@media (max-width: 360px) {
    .hero-product-products h1 {
        font-size: 1.3rem;
    }

    .hero-subtitle-products {
        font-size: 0.85rem;
    }

    .door-type-image-products {
        height: 180px;
    }
}
        
        
        
       /*Terms.html*/ 
        /* Main Content */
        main {
            margin-top: 80px;
            padding: 3rem 5%;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .terms-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid var(--gold);
        }

        .terms-header h1 {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 0.5rem;
        }

        .terms-header .company-name {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 0.5rem;
        }

        .terms-header .last-updated {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 1rem;
        }

        .terms-content {
            background: rgba(15, 15, 30, 0.6);
            padding: 2.5rem;
            border-radius: 10px;
            border: 1px solid rgba(199, 170, 105, 0.2);
        }

        .terms-section {
            margin-bottom: 2.5rem;
        }

        .terms-section:last-child {
            margin-bottom: 0;
        }

        .terms-section h2 {
            font-size: 1.3rem;
            color: var(--gold);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .terms-section .section-number {
            background: var(--gold);
            color: var(--dark);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            font-weight: bold;
            flex-shrink: 0;
        }

        .terms-section p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.8;
            margin-bottom: 0.8rem;
        }

        .terms-section ul {
            margin-left: 1.5rem;
            margin-top: 0.8rem;
        }

        .terms-section li {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.5rem;
        }

        .highlight-box {
            background: rgba(199, 170, 105, 0.1);
            border-left: 4px solid var(--gold);
            padding: 1.2rem;
            margin: 1rem 0;
            border-radius: 5px;
        }

        .highlight-box p {
            margin-bottom: 0;
        }

        .warning-box {
            background: rgba(255, 100, 100, 0.1);
            border-left: 4px solid #ff6464;
            padding: 1.2rem;
            margin: 1rem 0;
            border-radius: 5px;
        }

        .warning-box strong {
            color: #ff6464;
        }

        .contact-section {
            background: rgba(199, 170, 105, 0.1);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            margin-top: 3rem;
        }

        .contact-section h3 {
            color: var(--gold);
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .contact-section p {
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .contact-section a {
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
        }

        .contact-section a:hover {
            text-decoration: underline;
        }


        

        

       

        /* Responsive Design - Mobile First Approach */


        @media (max-width: 1024px) {
            .terms-header h1 {
                font-size: 2.2rem;
            }

            main {
                padding: 2.5rem 4%;
            }
        }

        @media (max-width: 768px) {

            .btn-solicitar {
                padding: 0.6rem 1.1rem;
                font-size: 0.8rem;
                white-space: nowrap;
            }

            main {
                padding: 2rem 3%;
            }

            .terms-header h1 {
                font-size: 1.9rem;
            }

            .terms-content {
                padding: 1.5rem;
            }

            .terms-section h2 {
                font-size: 1.2rem;
            }

            .terms-section h3 {
                font-size: 1rem;
            }

           
        }

        @media (max-width: 480px) {
            

            main {
                padding: 1.5rem 3%;
            }

            .terms-header {
                padding: 2rem 0;
            }

            .terms-header h1 {
                font-size: 1.6rem;
            }

            .terms-content {
                padding: 1.2rem;
            }

            .terms-section h2 {
                font-size: 1.1rem;
            }

            .terms-section h3 {
                font-size: 0.95rem;
            }

            .terms-section p,
            .terms-section li {
                font-size: 0.85rem;
            }

        }

        @media (max-width: 360px) {

            .terms-header h1 {
                font-size: 1.4rem;
            }

            .terms-section h2 {
                font-size: 1rem;
            }
        }


        /*aboutus*/


         /* Page Title */
        .page-hero {
            margin-top: 80px;
            padding: 4rem 5%;
            text-align: center;
            background: linear-gradient(135deg, rgba(25, 36, 54, 0.9), rgba(30, 30, 50, 0.9));
        }

        .page-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--gold);
        }

        .page-hero p {
            font-size: 1.1rem;
            color: #e0e0e0;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Main Content */
        .content-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 5%;
        }

        /* Section Title */
        .section-title {
            text-align: center;
            font-size: 2rem;
            color: var(--gold);
            margin: 3rem 0 2.5rem 0;
            position: relative;
        }

        .section-title::before,
        .section-title::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 200px;
            height: 2px;
            background: linear-gradient(to right, transparent, var(--gold));
        }

        .section-title::before {
            right: 60%;
            margin-right: 20px;
        }

        .section-title::after {
            left: 60%;
            margin-left: 20px;
            background: linear-gradient(to left, transparent, var(--gold));
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .feature-card {
            background-color: var(--dark);
            border: 2px solid var(--border-color);
            border-radius: 10px;
            padding: 2.5rem 2rem;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .feature-card:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(199, 170, 105, 0.15);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--gold);
            line-height: 1;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            color: #ffffff;
            margin: 0;
        }

        .feature-card p {
            color: #b0b0b0;
            font-size: 0.95rem;
            margin: 0;
            line-height: 1.7;
        }

        /* Two Column Layout */
        .two-column-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin: 4rem 0;
        }

        .two-column-content h2 {
            font-size: 1.8rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }

        .two-column-content ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .two-column-content li {
            display: flex;
            gap: 1rem;
            padding: 1rem;
            background-color: rgba(199, 170, 105, 0.1);
            border-left: 3px solid var(--gold);
            border-radius: 5px;
            font-size: 0.95rem;
            color: #e0e0e0;
        }

        .two-column-content li::before {
            content: '✓';
            color: var(--gold);
            font-weight: bold;
            font-size: 1.2rem;
            min-width: 20px;
        }

        .highlight-box {
            background: linear-gradient(135deg, rgba(199, 170, 105, 0.15), rgba(199, 170, 105, 0.05));
            border: 2px solid var(--gold);
            border-radius: 10px;
            padding: 2rem;
            margin: 2rem 0;
        }

        .highlight-box h3 {
            color: var(--gold);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .highlight-box p {
            color: #e0e0e0;
            line-height: 1.8;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(25, 36, 54, 0.8), rgba(30, 30, 50, 0.8));
            border: 2px solid var(--gold);
            border-radius: 10px;
            padding: 3rem;
            text-align: center;
            margin: 4rem 0;
        }

        .cta-section h2 {
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.1rem;
            color: #e0e0e0;
            margin-bottom: 2rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-primary {
            background-color: var(--gold);
            color: #0f0f1e;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 5px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            background-color: #c49463;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(199, 170, 105, 0.3);
        }

        
        @media (max-width: 1024px) {
            .page-hero h1 {
                font-size: 2.2rem;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .two-column-section {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
        }

        @media (max-width: 768px) {


            .page-hero {
                min-height: 300px;
            }

            .page-hero h1 {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .section-title::before,
            .section-title::after {
                width: 70px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .two-column-section {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .cta-section {
                padding: 2rem;
            }

            .cta-section h2 {
                font-size: 1.5rem;
            }

    
        }

        @media (max-width: 480px) {
            header {
                padding: 0.8rem 2%;
            }

            nav img {
                width: 90px;
            }

            .nav-links {
                display: none;
            }

            .page-hero {
                min-height: 250px;
            }

            .page-hero h1 {
                font-size: 1.5rem;
            }

            .section-title {
                font-size: 1.3rem;
            }

            .section-title::before,
            .section-title::after {
                width: 50px;
            }

            .cta-section {
                padding: 1.5rem;
            }

            .cta-section h2 {
                font-size: 1.3rem;
            }

            .footer {
                padding: 2rem 3%;
            }

            .footer h4 {
                font-size: 1rem;
            }

            .footer-text,
            .footer-links a,
            .footer-contact a {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 360px) {
            nav img {
                width: 80px;
            }

            .page-hero h1 {
                font-size: 1.3rem;
            }

            .cta-section h2 {
                font-size: 1.2rem;
            }
        }

    
        /* Aboutus.html */
        

/* Hero Section */
.hero-block-aboutus {
    margin-top: 80px;
    padding: 4rem 5%;
    text-align: center;
    background: linear-gradient(135deg, rgba(25, 36, 54, 0.9), rgba(30, 30, 50, 0.9));
}

.hero-block-aboutus h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.hero-block-aboutus p {
    font-size: 1.1rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content */
.page-shell-aboutus {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 5%;
}

/* Section Title */
.section-heading-aboutus {
    text-align: center;
    font-size: 2rem;
    color: var(--gold);
    margin: 3rem 0 2.5rem 0;
    position: relative;
}




/* Features Grid */
.card-grid-aboutus {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.card-aboutus {
    background-color: var(--primary);
    border-radius: 5px;
    padding: 2.5rem 2rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-aboutus:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(199, 170, 105, 0.15);
}


.card-aboutus h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin: 0;
}

.card-aboutus p {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}

/* Two Column Layout */
.split-section-aboutus {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 4rem 0;
}

.split-text-aboutus h2 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.split-text-aboutus ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.split-text-aboutus li {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(199, 170, 105, 0.1);
    border-left: 3px solid var(--gold);
    border-radius: 5px;
    font-size: 0.95rem;
    color: #e0e0e0;
}

.split-text-aboutus li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
    min-width: 20px;
}

.info-box-aboutus {
    background: linear-gradient(135deg, rgba(199, 170, 105, 0.15), rgba(199, 170, 105, 0.05));
    border: 2px solid var(--gold);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.info-box-aboutus h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-box-aboutus p {
    color: #e0e0e0;
    line-height: 1.8;
}

/* CTA Section */
.cta-block-aboutus {
    background: linear-gradient(135deg, rgba(25, 36, 54, 0.8), rgba(30, 30, 50, 0.8));
    border: 2px solid var(--gold);
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
    margin: 4rem 0;
}

.cta-block-aboutus h2 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.cta-block-aboutus p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-main-aboutus {
    background-color: var(--gold);
    color: #0f0f1e;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-main-aboutus:hover {
    background-color: #c49463;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(199, 170, 105, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-block-aboutus h1 {
        font-size: 2.2rem;
    }

    .card-grid-aboutus {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-section-aboutus {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-block-aboutus {
        min-height: 300px;
    }

    .hero-block-aboutus h1 {
        font-size: 1.8rem;
    }

    .section-heading-aboutus {
        font-size: 1.5rem;
    }

    .section-heading-aboutus::before,
    .section-heading-aboutus::after {
        width: 70px;
    }

    .card-grid-aboutus {
        grid-template-columns: 1fr;
    }

    .split-section-aboutus {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-block-aboutus {
        padding: 2rem;
    }

    .cta-block-aboutus h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-block-aboutus {
        min-height: 250px;
    }

    .hero-block-aboutus h1 {
        font-size: 1.5rem;
    }

    .section-heading-aboutus {
        font-size: 1.3rem;
    }

    .section-heading-aboutus::before,
    .section-heading-aboutus::after {
        width: 50px;
    }

    .cta-block-aboutus {
        padding: 1.5rem;
    }

    .cta-block-aboutus h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 360px) {
    .hero-block-aboutus h1 {
        font-size: 1.3rem;
    }

    .cta-block-aboutus h2 {
        font-size: 1.2rem;
    }
} 

/*Privacy.html*/
/* Privacy Policy - Optimized Styles */

/* Main Content */
.container-privacy {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 5% 60px;
}

.policy-header-privacy {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-header-privacy h1 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.policy-subtitle-privacy {
    color: var(--gray);
    font-size: 1.1rem;
}

.policy-intro-privacy {
    background-color: rgba(25, 35, 51, 0.6);
    border-left: 4px solid var(--gold);
    padding: 2rem;
    border-radius: 5px;
    margin-bottom: 3rem;
}

.policy-intro-privacy p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.8;
}

.section-privacy {
    margin-bottom: 3rem;
}

.section-privacy h2 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3a3a5a;
}

.section-privacy h3 {
    font-size: 1.3rem;
    color: var(--light);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.section-privacy p {
    color: #e0e0e0;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.section-privacy ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.section-privacy li {
    color: #e0e0e0;
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.highlight-box-privacy {
    background-color: rgba(199, 170, 105, 0.1);
    border: 1px solid var(--gold);
    padding: 1.5rem;
    border-radius: 5px;
    margin: 1.5rem 0;
}

.highlight-box-privacy p {
    color: var(--light);
}

.contact-box-privacy {
    background-color: rgba(25, 35, 51, 0.8);
    border: 2px solid var(--gold);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 2rem 0;
}

.contact-box-privacy h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-box-privacy a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-box-privacy a:hover {
    color: #c49463;
}

.poweredby-privacy {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #3a3a5a;
    color: var(--gray);
    font-size: 0.9rem;
}

.poweredby-logo-privacy {
    color: var(--gold);
    font-weight: bold;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container-privacy {
        padding: 110px 4% 50px;
    }
}

@media (max-width: 1024px) {
    .policy-header-privacy h1 {
        font-size: 2.2rem;
    }

    .section-privacy h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container-privacy {
        padding: 100px 3% 40px;
    }

    .policy-header-privacy h1 {
        font-size: 1.8rem;
    }

    .section-privacy {
        padding: 1.5rem;
    }

    .section-privacy h2 {
        font-size: 1.3rem;
    }

    .section-privacy h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container-privacy {
        padding: 90px 3% 30px;
    }

    .policy-header-privacy {
        padding: 1.5rem 0;
    }

    .policy-header-privacy h1 {
        font-size: 1.5rem;
    }

    .section-privacy {
        padding: 1.2rem;
    }

    .section-privacy h2 {
        font-size: 1.2rem;
    }

    .section-privacy h3 {
        font-size: 1rem;
    }

    .section-privacy p,
    .section-privacy li {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .policy-header-privacy h1 {
        font-size: 1.3rem;
    }

    .section-privacy h2 {
        font-size: 1.1rem;
    }
}

/*services.html*/
/* Services Page Styles */
/* Hero Section */
        .hero-service {
            margin-top: 100px;
            padding: 3rem 5%;
            text-align: center;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-service h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--gold);
        }

        .hero-service p {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.8);
            max-width: 800px;
            margin: 0 auto 2rem;
        }

        /* Product Types Section */
        .product-types-service {
            padding: 2rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .types-grid-service {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .type-card-service {
            background: var(--primary);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.3s;
        }

        .type-card-service:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
        }

        .type-card-service h3 {
            color: var(--gold);
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .type-card-service p {
            color: rgba(255,255,255,0.8);
            line-height: 1.6;
        }

        /* Gallery Carousel */
        .gallery-section-service {
            padding: 3rem 5%;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            box-sizing: border-box;
        }

        .gallery-section-service h2 {
            text-align: center;
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 3rem;
        }

        .carousel-container-service {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            background:var(--primary);
            padding: 2rem;
            width: 100%;
            box-sizing: border-box;
            max-width: 100%;
        }

        .carousel-wrapper-service {
            display: flex;
            transition: transform 0.5s ease-in-out;
            width: 100%;
        }

        .carousel-slide-service {
            min-width: 100%;
            max-width: 100%;
            width: 100%;
            flex-shrink: 0;
            display: flex;
            gap: 0;
            align-items: center;
            box-sizing: border-box;
        }

        .slide-image-service {
            flex: 1;
            max-width: 50%;
            box-sizing: border-box;
            padding-right: 1rem;
            position: relative;
        }

        .slide-image-service img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .slide-content-service {
            flex: 1;
            padding: 1rem 1rem 1rem 1rem;
            box-sizing: border-box;
        }

        .slide-content-service h2 {
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .slide-content-service h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #ffffff;
        }

        .slide-content-service p {
            font-size: 1rem;
            line-height: 1.6;
            color: rgba(255,255,255,0.8);
            margin-bottom: 1.5rem;
        }

        .features-list-service {
            list-style: none;
            padding: 0;
        }

        .features-list-service li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: rgba(255,255,255,0.9);
        }

        .features-list-service li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: bold;
        }

        /* Carousel Controls */
        .carousel-btn-service {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--gold);
            color: var(--dark);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s;
        }

        .carousel-btn-service:hover {
            background: #d4b876;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev-service {
            left: 1rem;
        }

        .carousel-btn-next-service {
            right: 1rem;
        }

        .carousel-indicators-service {
            display: flex;
            justify-content: center;
            gap: 0.8rem;
            margin-top: 2rem;
        }

        .indicator-service {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .indicator-service.active {
            background: var(--gold);
            width: 30px;
            border-radius: 6px;
        }

        /* Back Button */
        .back-btn-service {
            display: inline-block;
            margin: 2rem 5%;
            padding: 0.8rem 2rem;
            background: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s;
        }

        .back-btn-service:hover {
            background: var(--gold);
            color: var(--dark);
        }

        /* Responsive Design - Mobile First Approach */
        @media (max-width: 1200px) {
            .hero-service h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 1024px) {
            .hero-service h1 {
                font-size: 2.2rem;
            }

            .carousel-slide-service {
                flex-direction: column;
            }

            .slide-image-service,
            .slide-content-service {
                max-width: 100%;
                width: 100%;
            }

            .slide-image-service img {
                height: 300px;
            }

            .types-grid-service {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            
            .gallery-section-service {
                padding: 3rem 2% !important;
            }

            .carousel-container-service {
                padding: 1rem !important;
            }

            .carousel-wrapper-service {
                width: 100%;
            }

            .why-choose-home {
                padding: 0 2% !important;
            }

            .features-home-grid {
                padding: 0 !important;
            }

            .hero-service {
                min-height: 400px;
            }

            .hero-service h1 {
                font-size: 1.8rem;
            }

            .carousel-slide-service {
                flex-direction: column;
                padding: 1rem;
                gap: 0 !important;
                min-width: 100% !important;
                max-width: 100% !important;
            }

            .slide-image-service {
                max-width: 100%;
                padding-right: 0 !important;
                padding-bottom: 1rem;
                position: relative;
            }

            .slide-image-service img {
                height: 250px;
            }

            .slide-content-service {
                padding: 1rem;
            }

            .slide-content-service h2 {
                font-size: 1.3rem;
            }

            .slide-content-service h3 {
                font-size: 1rem;
            }

            .slide-content-service p {
                font-size: 0.9rem;
            }

            .types-grid-service {
                grid-template-columns: 1fr;
            }

            .carousel-btn-service {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }

            .carousel-btn-prev-service {
                left: 5px;
            }

            .carousel-btn-next-service {
                right: 5px;
            }

            
        }

        @media (max-width: 480px) {
            
            .gallery-section-service {
                padding: 2rem 1% !important;
            }

            .carousel-container-service {
                padding: 0.5rem !important;
            }

            .why-choose-home {
                padding: 0 1% !important;
            }

            .carousel-slide-service {
                padding: 0.5rem;
                gap: 0 !important;
                min-width: 100% !important;
                max-width: 100% !important;
            }

            .slide-image-service {
                padding-right: 0 !important;
                position: relative;
            }

            .slide-content-service {
                padding: 0.5rem;
            }

            .hero-service {
                min-height: 350px;
            }

            .hero-service h1 {
                font-size: 1.5rem;
            }

            .slide-image-service img {
                height: 200px;
            }

            .slide-content-service h2 {
                font-size: 1.2rem;
            }

            .slide-content-service h3 {
                font-size: 0.9rem;
            }

            .slide-content-service p {
                font-size: 0.85rem;
            }

            .carousel-btn-service {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            
        }

        @media (max-width: 360px) {
            
            .hero-service h1 {
                font-size: 1.3rem;
            }

            .slide-image-service img {
                height: 180px;
            }

            .carousel-btn-service {
                width: 30px;
                height: 30px;
                font-size: 0.9rem;
            }
        }

        /* FIX PARA RESPONSIVE - Prevenir overflow horizontal en móvil */
        @media (max-width: 768px) {
            html, body {
                overflow-x: hidden !important;
                width: 100% !important;
                max-width: 100% !important;
            }

            .hero-home,
            .gallery-section-service,
            .why-choose-home,
            .carousel-container-service,
            .carousel-wrapper-service,
            .carousel-slide-service,
            .features-home-grid,
            .feature-home-card,
            .bbb-badge-container-home {
                max-width: 100% !important;
                box-sizing: border-box !important;
            }

            .gallery-section-service {
                padding-left: 2% !important;
                padding-right: 2% !important;
            }

            .carousel-container-service {
                padding-left: 1rem !important;
                padding-right: 1rem !important;
            }

            .why-choose-home {
                padding-left: 2% !important;
                padding-right: 2% !important;
            }

            .carousel-slide-service {
                gap: 1rem !important;
                padding-left: 0.5rem !important;
                padding-right: 0.5rem !important;
            }

            .slide-content-service {
                padding: 1rem !important;
            }

            .features-home-grid {
                grid-template-columns: 1fr !important;
                padding: 0 !important;
                gap: 1rem !important;
            }

            .section-title-home::before,
            .section-title-home::after {
                display: none !important;
            }
        }

        @media (max-width: 480px) {
            .gallery-section-service {
                padding-left: 1% !important;
                padding-right: 1% !important;
            }

            .carousel-container-service {
                padding: 0.5rem !important;
            }

            .why-choose-home {
                padding-left: 1% !important;
                padding-right: 1% !important;
            }

            .carousel-slide-service {
                padding: 0.5rem !important;
                gap: 0.5rem !important;
            }

            .slide-content-service {
                padding: 0.5rem !important;
            }

            .bbb-link-home {
                padding: 1rem !important;
            }

            .features-home-grid {
                gap: 0.8rem !important;
            }
        }

        /* QUITAR LÍNEAS DORADAS DE TODOS LOS TÍTULOS */
        .section-title::before,
        .section-title::after,
        .section-title-home::before,
        .section-title-home::after {
            display: none !important;
        }
