
        @font-face {
            font-family: 'Kepler';
            src: url('../../assets/fonts/KeplerStdItSubh.otf') format('opentype');
        }

        @font-face {
            font-family: 'Pangram';
            src: url('../../assets/fonts/Pangram-Regular.otf') format('opentype');
        }

        .kepler-font {
            font-family: 'Kepler';
        }

        .pangram-font {
            font-family: 'Pangram';
        }

        body {
            font-family: 'Pangram', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Header */
        header {
            background-color: #1b1c1c;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .logo {
            letter-spacing: 2px;
        }

        nav a {
            color: #fff !important;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: #8fb3a1 !important;
        }

        .cta-button {
            box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
            background: linear-gradient(180deg, #96B1A6 0%, #6A7C75 50%, #96B1A6 98.56%);
            color: #fff;
            border: none;
            cursor: pointer;
            font-size: 14px;
            transition: background 0.3s ease;
        }

        .cta-button:hover {
            background: linear-gradient(180deg, #7a9a88 0%, #5a6c65 50%, #7a9a88 98.56%);
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 120vh;
            color: #fff;
            overflow: visible;
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            justify-content: flex-start !important;
            padding-top: 150px;
            width: 100%;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../../assets/img/background-hero.webp') center/cover no-repeat;
            z-index: -1;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .hero-content .viviendo{
            font-size: 20px;
        }

        .hero-content h1 {
            font-size: 72px;
            line-height: 1.2;
        }

        .hero-content h1 .italic {
            font-style: italic;
            font-weight: 300;
        }

        .hero-content .te-espera {
                margin-top: -40px;
                font-size: 60px;
        }

        .hero-content .highlight {
            font-size: 18px;
            letter-spacing: 1px;
        }

        .hero-button {
            background: linear-gradient(180deg, #96B1A6 0%, #6A7C75 50%, #96B1A6 98.56%);
            color: #fff;
            padding: 18px 50px;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 500;
            transition: background 0.3s ease;
        }

        .hero-button:hover {
            background: linear-gradient(180deg, #86a196 0%, #5a6c65 50%, #86a196 98.56%);
        }

        .hero-button-2 {
            background: linear-gradient(180deg, #96B1A6 0%, #6A7C75 50%, #96B1A6 98.56%);
            color: #fff;
            padding: 18px 50px;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 500;
            transition: background 0.3s ease;
        }

        .hero-button-2:hover {
            background: linear-gradient(180deg, #86a196 0%, #5a6c65 50%, #86a196 98.56%);
        }

        /* Video Section */
        .video-section {
            background: #1b1c1c !important;
            padding: 80px 20px;
            text-align: center;
            width: 100%;
        }

        .video-title {
            color: #fff !important;
            font-size: 48px;
            font-style: italic;
            margin: 0 auto 40px;
            padding: 0 20px;
            text-align: center;
        }

        .video-container {
            display: block;
            max-width: 1000px;
            width: 90%;
            margin: 0 auto;
        }

        .video-container video {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
            display: block;
        }

        @media (max-width: 992px) {
            .video-section {
                padding: 60px 20px;
            }

            .video-title {
                font-size: 36px;
                margin-bottom: 30px;
            }

            .video-container {
                width: 95%;
            }
        }

        @media (max-width: 768px) {
            .video-section {
                padding: 50px 15px;
            }

            .video-title {
                font-size: 28px;
                margin-bottom: 25px;
            }

            .video-container {
                width: 100%;
            }

            .video-container video {
                border-radius: 8px;
            }
        }

        @media (max-width: 480px) {
            .video-section {
                padding: 40px 15px;
            }

            .video-title {
                font-size: 24px;
                margin-bottom: 20px;
            }
        }

        /* Amenities Section */
        .amenities {
            position: relative;
            display: flex;
            min-height: 100vh;
            overflow: hidden;
        }

        .amenities::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
            z-index: 0;
        }

        .amenities-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 2s ease-in-out;
            z-index: -1;
        }

        .amenities-bg.active {
            opacity: 1;
        }

        .amenities::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 50%;
            height: 100%;
           
            z-index: 0;
        }

        .amenities .row {
            width: 100%;
            position: relative;
            z-index: 1;
            margin: 0;
        }

        .amenities .col-lg-6 {
            padding: 0;
        }

        .amenities-left {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .amenities-left h2 {
            font-size: 90px;
            color: #fff;
            line-height: 1.2;
            text-align: justify;
        }

        .amenities-right {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
            overflow: hidden;
            perspective: 1000px;
        }

        .amenities-right .amenities-list {
            position: relative;
            width: 100%;
            height: 320px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .amenity-item {
            position: absolute;
            display: flex;
            align-items: center;
            font-weight: 600;
            font-size: 18px;
            color: #999;
            opacity: 0.5;
            transition: all 0.8s ease-in-out;
            left: 15%;
            height: 80px;
            width: 70%;
            text-align: left;
        }

        .amenity-item.active {
            opacity: 1;
            color: #333;
            font-weight: 800;
            transform: scale(1.1);
        }

        .amenity-item::before {
            content: "•";
            color: #8fb3a1;
            font-size: 24px;
            font-weight: bold;
            margin-right: 12px;
            line-height: 1;
            flex-shrink: 0;
        }

        .amenity-item span {
            font-size: 18px;
            line-height: 1.4;
        }

        .amenity-item::before {
            
            font-size: 24px;
            font-weight: bold;
            margin-right: 12px;
            line-height: 1;
            flex-shrink: 0;
        }

        .amenity-item span {
            font-size: 30px;
            color: #ffffff;
            line-height: 1.4;
            text-align: left;
            flex: 1;
        }

        .amenities-content {
            position: relative;
            z-index: 1;
            background-color: transparent;
        }

        /* Models Section */
        .models {
            padding: 60px 0;
        }

        .models h2 {
            font-size: 48px;
            color: #1b1c1c;
            font-style: italic;
            margin-bottom: 40px;
        }

        .models h2 .light {
            font-weight: 300;
        }

        .modelsSwiper {
            width: 100%;
            padding: 40px 0;
            overflow: hidden;
            max-width: 100%;
        }

        .swiper-wrapper {
            max-width: 100%;
        }

        .swiper-slide {
            width: auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .model-card {
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.35, 0.46, 0.64, 1);
            opacity: 0.6;
            transform: scale(0.9);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            cursor: pointer;
            aspect-ratio: 1 / 1;
            position: relative;
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            min-width: 480px;
        }

        .swiper-slide-active .model-card {
            opacity: 1;
            transform: scale(1);
            box-shadow: 0 12px 35px rgba(0,0,0,0.12);
        }

        .model-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.8) 100%);
            z-index: 1;
        }

        .model-card-image {
            display: none;
        }

        .model-card-image::after {
            display: none;
        }

        .model-logo {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3;
            font-weight: bold;
            font-size: 24px;
            background-size: cover;
            background-position: center;
            overflow: hidden;
        }

        .model-card-content {
            padding: 30px;
            text-align: left;
            color: white;
            position: relative;
            z-index: 2;
        }

        .model-name {
            font-size: 45px;
            font-weight: 400;
            font-style: italic;
            color: white;
            margin: 0 0 20px 0;
        }

        .model-specs-small {
            font-size: 13px;
            color: rgba(255,255,255,0.8);
            margin: 0 0 20px 0;
            line-height: 1.8;
            display: grid;
            grid-template-columns: 120px auto;
            gap: 15px 70px;
        }

        .model-specs-small p {
            margin: 0;
        }

        .model-specs-small strong {
            display: block;
            font-size: 17px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .model-desc {
            font-size: 20px;
            color: rgba(255,255,255,0.9);
            margin: 0;
            font-weight: 400;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .model-desc::after {
            border: 1px solid white;
            content: '→';
            font-size: 20px;
            margin-left: 20px;
            padding: 5px 10px;
            border-radius: 5px;
        }

        .models-nav-btn {
            display: none;
        }

        /* Swiper Navigation Arrows */
        .models-swiper-prev,
        .models-swiper-next {
            width: 50px !important;
            height: 50px !important;
            background: #8fb3a1 !important;
            border-radius: 50% !important;
            color: white !important;
            opacity: 0.9 !important;
            transition: all 0.3s ease !important;
            z-index: 10 !important;
        }

        .models-swiper-prev:hover,
        .models-swiper-next:hover {
            background: #7a9a88 !important;
            opacity: 1 !important;
            transform: scale(1.1) !important;
        }

        .models-swiper-prev::after,
        .models-swiper-next::after {
            font-size: 20px !important;
            font-weight: bold !important;
        }

        .models-swiper-prev {
            left: -60px !important;
        }

        .models-swiper-next {
            right: -60px !important;
        }

        /* Swiper Pagination */
        .models-swiper-pagination {
            position: static !important;
            display: inline-block !important;
            transform: none !important;
            left: auto !important;
            right: auto !important;
        }

        .models-swiper-pagination .swiper-pagination-bullet {
            width: 12px !important;
            height: 12px !important;
            background: #c0c0c0 !important;
            opacity: 1 !important;
            margin: 0 6px !important;
            transition: all 0.3s ease !important;
            border-radius: 50% !important;
        }

        .models-swiper-pagination .swiper-pagination-bullet-active {
            background: #8fb3a1 !important;
            width: 32px !important;
            border-radius: 6px !important;
        }

        @media (max-width: 1200px) {
            .models-swiper-prev {
                left: -40px !important;
            }

            .models-swiper-next {
                right: -40px !important;
            }
        }

        @media (max-width: 992px) {
            .models-swiper-prev {
                left: 10px !important;
            }

            .models-swiper-next {
                right: 10px !important;
            }
        }

        @media (max-width: 768px) {
            .models-swiper-prev,
            .models-swiper-next {
                width: 40px !important;
                height: 40px !important;
            }

            .models-swiper-prev::after,
            .models-swiper-next::after {
                font-size: 16px !important;
            }

            .models-swiper-prev {
                left: 5px !important;
            }

            .models-swiper-next {
                right: 5px !important;
            }
        }

        .models-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #1b1c1c;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .models-link:hover {
            color: #8fb3a1;
        }

        .models-arrow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #8fb3a1;
            color: white;
            border-radius: 50%;
            font-weight: bold;
        }

        .model-container {
            background-color: #fff;
            border-radius: 4px;
        }

        .model-image {
            width: 100%;
            aspect-ratio: 1 / 1;
            background-size: cover;
            background-position: center;
            border-radius: 4px;
        }

        .model-info h3 {
            position: relative;
            display: inline-block;
            font-size: 48px;
            color: #1b1c1c;
            font-style: italic;
            padding-top: 50px;
        }

        .model-discount {
            position: absolute;
            top: 0;
            left: 0;
            background-color: #e74c3c;
            color: #fff;
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
        }

        .model-specs {
            border-bottom: 1px solid #ddd;
        }

        .spec-item {
            font-size: 16px;
            color: #555;
        }

        .spec-label {
            font-weight: 600;
            margin-bottom: 4px;
            font-size: 16px;
        }

        .model-features {
            list-style: none;
            font-size: 16px;
            color: #555;
            line-height: 1.8;
        }

        .model-features li::before {
            content: "• ";
            color: #8fb3a1;
            font-weight: bold;
            margin-right: 8px;
        }

        .model-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: #7a9a88;
            color: #fff;
            padding: 12px 12px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            transition: background-color 0.3s ease;
        }

        .model-button:hover {
            background-color: #6a8a78;
        }

        .model-button::after {
            content: "→";
            font-size: 16px;
        }

        /* Domotica Section */
        .domotica {
            position: relative;
            min-height: 100vh;
            overflow: hidden;
        }

        .domotica::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: -20px;
            bottom: -20px;
            background: #1b1c1c;
            filter: blur(4px);
            z-index: -1;
        }

        .domotica-content {
            position: relative;
            z-index: 1;
        }

        .domotica-content h2 {
            font-size: 48px;
            color: #fff;
            line-height: 1.2;
        }

        .domotica-content h2 .italic {
            font-style: italic;
            font-weight: 300;
        }

        .domotica-content > p {
            font-size: 22px;
            color: #fff;
            letter-spacing: 0.5px;
        }

        .domotica-card {
            color: #fff;
            padding:30px;
        }

        .condomotica{
            font-style: normal;
            font-weight: 100;
        }

        .tudepa{
            font-size: 57px;
        }

        .domotica-card-number {
            font-size: 100px;
            font-weight: 300;
            font-style: italic;
            color: #fff;
        }

        .domotica-card h3 {
            font-size: 28px;
            line-height: 1.3;
            font-weight: 500;
            text-align: center;
        }

        .domotica-card p {
            font-size: 14px;
            line-height: 1.6;
            color: #d0d0d0;
            text-align: justify;
        }

        .domotica-button {
            box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
            background: linear-gradient(180deg, #96B1A6 0%, #6A7C75 50%, #96B1A6 98.56%);
            color: #ffffff;
            padding: 14px 40px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 500;
            transition: background-color 0.3s ease;
        }

        .domotica-button:hover {
            background: linear-gradient(180deg, #86a196 0%, #5a6c65 50%, #86a196 98.56%);
            color: #fff;
        }

        /* Financing Calculator Section */
        .financing {
            min-height: 100vh;
        }

        .financing-header {
        }

        .financing-header h2 {
            font-size: 52px;
            color: #1b1c1c;
            font-style: italic;
            font-weight: 300;
            line-height: 1.2;
        }

        .financing-header h2 .italic {
            font-style: italic;
        }

        .financing-header p {
            font-size: 19px;
            color: #666;
        }

        .input-group label {
            font-size: 18px;
            font-weight: 400;
            letter-spacing: 0px;
        }

        .input-group h3 {
            font-size: 42px;
            color: #1b1c1c;
            font-weight: 300;
        }

        .input-group input[type="range"] {
            width: 100%;
            height: 10px;
            border-radius: 6px;
            background: #ddd;
            outline: none;
            -webkit-appearance: none;
            cursor: pointer;
            accent-color: #7a9a88;
        }

        .input-group input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #7a9a88;
            cursor: pointer;
            box-shadow: 0 1px 3px rgba(0,0,0,0.2);
        }

        .input-group input[type="range"]::-moz-range-thumb {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #7a9a88;
            cursor: pointer;
            border: none;
            box-shadow: 0 1px 3px rgba(0,0,0,0.2);
        }

        .input-group input[type="range"]::-moz-range-track {
            background: transparent;
            border: none;
        }

        .range-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 12px;
            font-size: 11px;
            color: #bbb;
        }

        .financing-results {
            text-align: center;
            background-color: #f5f5f5;
            border-radius: 15px;
        }

        .result-label {
            font-size: 30px;
            font-weight: 400;
        }

        .result-value {
            font-size: 48px;
            color: #1b1c1c;
            font-weight: 300;
        }

        .result-divider {
            height: 1px;
            background-color: #000000;
        }

        .result-summary-item .label {
            font-size: 12px;
            color: #999;
            font-weight: 400;
        }

        .result-summary-item .value {
            font-size: 28px;
            color: #1b1c1c;
            font-weight: 300;
        }

        .financing-buttons button {
            border: none;
            border-radius: 4px;
            font-size: 15px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            font-weight: 400;
        }

        .btn-clear {
            box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
            background: linear-gradient(180deg, #E7E6E6 0%, #B9B9B9 50%, #E7E6E6 98.56%);
            color: #000000;
        }

        .btn-clear:hover {
            background: linear-gradient(180deg, #d7d6d6 0%, #a9a9a9 50%, #d7d6d6 98.56%);
        }

        .btn-interested {
            box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
            background: linear-gradient(180deg, #96B1A6 0%, #6A7C75 50%, #96B1A6 98.56%);
            color: #fff;
        }

        .btn-interested:hover {
            background: linear-gradient(180deg, #86a196 0%, #5a6c65 50%, #86a196 98.56%);
        }

        /* CTA Section */
        .cta-section {
            position: relative;
            height: 50vh;
            color: #fff;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                        url('../../assets/img/extra.webp') center/cover no-repeat;
            z-index: -1;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            font-size: 56px;
            line-height: 1.3;
            font-style: italic;
            font-weight: 300;
        }

        .cta-content p {
            font-size: 18px;
            line-height: 1.6;
            letter-spacing: 0.3px;
        }

        .cta-button {
            display: inline-block;
            background-color: #8fb3a1;
            color: #fff;
            padding: 16px 50px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 400;
            transition: background-color 0.3s ease;
            text-decoration: none;
        }

        .cta-button:hover {
            background-color: #7a9a88;
        }

        /* Contact Section */
        .contact {
            background-color: #fff;
        }

        .contact .container-lg {
            display: flex;
            flex-direction: column;
        }

        .contact-header h2 {
            font-size: 48px;
            color: #1b1c1c;
            font-style: italic;
            font-weight: 300;
        }

        .contact-logo {
            width: 60px;
            height: 60px;
            border: 2px solid #1b1c1c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            color: #1b1c1c;
            flex-shrink: 0;
        }

        .contact-header p {
            font-size: 22px;
            color: #666;
            line-height: 1.6;
            margin: 0;
        }

        .contact-item {
        }

        .contact-item h3 {
            font-size: 28px;
            color: #1b1c1c;
            font-style: italic;
            font-weight: 400;
        }

        .contact-item p {
            font-size: 18px;
        }

        .social-links {
            display: flex;
            gap: 20px;
        }

        .social-links a {
            width: 36px;
            height: 36px;
            border: 1px solid #ccc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1b1c1c;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .social-links a:hover {
            border-color: #8fb3a1;
            color: #8fb3a1;
        }

        .contact-form-wrapper {
        }

        .contact-form-wrapper h3 {
            font-size: 28px;
            color: #1b1c1c;
            font-style: italic;
            font-weight: 300;
        }

        .contact-form {
            box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
            border-radius: 4px;
        }

        .form-group input,
        .form-group textarea {
            padding: 14px;
            border: none;
            background-color: #f9f9f9;
            font-size: 14px;
            color: #666;
            font-family: inherit;
            border-radius: 2px;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #999;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-buttons button {
            border: none;
            border-radius: 4px;
            font-size: 14px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            font-weight: 400;
        }

        .btn-clear-form {
            box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
            background: linear-gradient(180deg, #E7E6E6 0%, #B9B9B9 50%, #E7E6E6 98.56%);
            color: #000000;
        }

        .btn-clear-form:hover {
            background: linear-gradient(180deg, #d7d6d6 0%, #a9a9a9 50%, #d7d6d6 98.56%);
        }

        .btn-submit {
            box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
            background: linear-gradient(180deg, #86a196 0%, #5a6c65 50%, #86a196 98.56%);
            color: #fff;
        }

        .btn-submit:hover {
            background: linear-gradient(180deg, #76a086 0%, #4a5c55 50%, #76a086 98.56%);
        }

        @media (max-width: 768px) {
            .contact-header {
                flex-direction: column;
            }

            .contact-header h2 {
                font-size: 32px;
                margin-bottom: 15px;
            }

            .contact-header p {
                width: 100% !important;
                font-size: 14px;
                margin-bottom: 20px;
            }

            .contact-header img {
                width: 60px !important;
            }

            .contact-details {
                gap: 2rem !important;
            }

            .contact-item h3 {
                font-size: 18px;
            }

            .contact-item p {
                font-size: 14px;
            }

            .contact-form-wrapper h3 {
                font-size: 22px;
            }

            .contact-info {
                padding: 2rem !important;
            }

            .contact-form {
                padding: 2rem !important;
            }

            .contact-form-wrapper {
                order: 1;
            }

            .contact-info {
                order: 2;
            }

            .hero-content h1 {
                font-size: 32px;
            }

            .discount {
                font-size: 60px;
            }

            .amenities-content h2 {
                font-size: 32px;
            }

            .models h2 {
                font-size: 32px;
            }

            .model-info h3 {
                font-size: 28px;
            }

            .domotica-content h2 {
                font-size: 32px;
            }

            .domotica-content > p {
                font-size: 16px;
            }

            .domotica-card-number {
                font-size: 60px;
            }

            .domotica-card h3 {
                font-size: 22px;
            }

            .financing-header h2 {
                font-size: 32px;
            }

            .financing-header p {
                font-size: 16px;
            }

            .input-group h3 {
                font-size: 28px;
            }

            .result-label {
                font-size: 20px;
            }

            .result-value {
                font-size: 36px;
            }

            .cta-content h2 {
                font-size: 28px;
            }

            .cta-content p {
                font-size: 14px;
            }

            .contact-header h2 {
                font-size: 28px;
            }

            .contact-form-wrapper h3 {
                font-size: 24px;
            }

            .map-section {
                height: 400px;
            }

            .footer {
                padding: 40px 20px;
            }

            .footer-container {
                gap: 30px;
            }

            .footer-branding {
                text-align: center !important;
                margin-top: 20px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            .model-card {
                min-width: 380px;
            }
        }

        @media (max-width: 480px) {

            .condomotica{
                font-size: 31px;
            }

            .tudepa{
                font-size: 37px;
            }


            .contact-header h2 {
                font-size: 24px;
            }

            .contact-header p {
                width: 100% !important;
                font-size: 12px;
            }

            .contact-header img {
                width: 50px !important;
            }

            .contact-item h3 {
                font-size: 16px;
            }

            .contact-item p {
                font-size: 13px;
            }

            .contact-form-wrapper h3 {
                text-align: center;
                font-size: 27px;
            }

            .contact-info {
                padding: 1.5rem !important;
            }

            .contact-form {
                padding: 1.5rem !important;
            }

            .social-icons-black {
                gap: 10px;
            }

            .social-icon-black svg {
                width: 28px !important;
                height: 28px !important;
            }

            .hero-content h1 {
                font-size: 40px;
            }
            .hero-content .te-espera{
                    margin-top: -24px;
                    font-size: 37px;
            }
            .hero-content .viviendo{
                font-size: 17px;
            }

            .amenities-left h2{
                font-size: 62px;
                text-align: center;
            }

            .amenities-left{
                min-height: 50vh;
            }

            .amenities-right{
                min-height: 50vh;
            }

            .models h2{
                font-size:43px;
            }

            .model-desc{
                font-size: 15px;
            }
            .model-specs-small{
                gap: 15px 20px;
            }
            .model-specs-small strong{
                font-size: 15px;
            }
            .domotica-card{
                padding-bottom: 40px;
                margin-bottom: 40px;
                border-bottom: solid 1px white;
            }

            .domotica-card h3{
                text-align: center;
            }

           

            .discount {
                font-size: 48px;
            }

            .models h2 {
                font-size: 40px;
            }

            .model-info h3 {
                font-size: 22px;
            }

            .domotica-content h2 {
                font-size: 24px;
            }

            .domotica-card-number {
                font-size: 90px;
            }

            .financing-header h2 {
                font-size: 24px;
            }

            .map-section {
                height: 300px;
            }

            .footer {
                padding: 30px 15px;
            }

            .footer-brand img {
                max-width: 180px;
            }

            .footer-section h3,
            .newsletter h3 {
                font-size: 18px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            .footer-branding img {
                max-width: 200px;
            }
            .model-card {
                min-width: 320px;
            }
        }


        /* Footer */
        .footer {
            background-color: #1b1c1c;
            color: #fff;
            margin-top: 0;
            padding: 60px 20px;
        }

        .footer-section h3,
        .footer-left h3 {
            color: #fff !important;
            font-style: italic;
        }

        .footer-section p,
        .footer-left p {
            font-size: 12px;
            line-height: 1.8;
            color: #ccc !important;
        }

        .newsletter h3 {
            font-style: italic;
            color: #fff !important;
        }

        .newsletter p {
            font-size: 12px;
            color: #ccc !important;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .newsletter-form input {
            background-color: #333;
            border: 1px solid #555;
            color: #fff;
            font-size: 12px;
            border-radius: 4px;
            transition: border-color 0.3s ease;
            padding: 10px;
        }

        .newsletter-form input::placeholder {
            color: #888;
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: #8fb3a1;
        }

        .newsletter-form .btn-newsletter {
            background: linear-gradient(180deg, #96B1A6 0%, #6A7C75 50%, #96B1A6 98.56%);
            color: #fff;
            border: none;
            padding: 10px 20px;
            font-size: 12px;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .newsletter-form .btn-newsletter:hover {
            background: linear-gradient(180deg, #7a9a88 0%, #5a6c65 50%, #7a9a88 98.56%);
        }

        .social-icon {
            color: #fff;
            display: inline-flex;
            transition: color 0.3s ease;
        }

        .social-icon:hover {
            color: #8fb3a1;
        }

        .social-icon-black {
            color: #000000;
            display: inline-flex;
            transition: color 0.3s ease;
        }

        .social-icon-black:hover {
            color: #8fb3a1;
        }

        .footer-logo {
            height: auto;
        }

        .footer-bottom {
            font-size: 12px;
            color: #aaa;
        }

        .footer-bottom p {
            color: #aaa !important;
            margin: 0;
        }

        /* Contact Modal */
        .contact-modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .modal-content {
            background-color: #fff;
            padding: 40px;
            border-radius: 8px;
            max-width: 500px;
            width: 90%;
            position: relative;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            max-height: 90vh;
            overflow-y: auto;
        }

        .modal-close {
            position: absolute;
            right: 15px;
            top: 15px;
            font-size: 28px;
            background: none;
            border: none;
            cursor: pointer;
            color: #333;
        }

        .modal-close:hover {
            color: #8fb3a1;
        }

        .modal-content h2 {
            color: #1b1c1c;
            font-size: 32px;
            margin-bottom: 25px;
            margin-top: 0;
        }

        .modal-content .form-group {
            margin-bottom: 15px;
        }

        .modal-content input,
        .modal-content textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: 'Pangram', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 14px;
            transition: border-color 0.3s ease;
        }

        .modal-content input:focus,
        .modal-content textarea:focus {
            outline: none;
            border-color: #8fb3a1;
        }

        .modal-content textarea {
            resize: vertical;
        }

        .modal-content .btn-submit {
            background: linear-gradient(180deg, #96B1A6 0%, #6A7C75 50%, #96B1A6 98.56%);
            color: #fff;
            padding: 12px 30px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            width: 100%;
            margin-top: 10px;
            transition: background 0.3s ease;
        }

        .modal-content .btn-submit:hover {
            background: linear-gradient(180deg, #7a9a88 0%, #5a6c65 50%, #7a9a88 98.56%);
        }

        .footer-bottom p {
            margin: 0;
        }

        /* Map Section */
        .map-section {
            width: 100%;
            height: 700px;
            position: relative;
        }

        .map-section iframe {
            display: block;
            width: 100%;
            height: 100%;
            filter: grayscale(20%) brightness(0.85) contrast(1.1);
        }

        /* Loading Animation */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #1b1c1c;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 1;
            transition: opacity 0.6s ease-out;
        }

        .loading-overlay.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loading-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }

        .loading-logo {
            width: 120px;
            height: 120px;
            animation: spin 2s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* Welcome Popup Modal */
        .welcome-popup {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .welcome-popup-content {
            position: relative;
            max-width: 1000px;
            width: 90%;
            background: #f5f5f0;
            border-radius: 0;
            overflow: hidden;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
            animation: slideUp 0.4s ease-out;
            border-radius: 24px;
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .welcome-popup-body {
            display: flex;
            flex-direction: row;
            min-height: 600px;
        }

        .welcome-popup-left {
            flex: 1;
            background: #1b1c1c;
            display: flex;
            
        }

        .welcome-popup-left img {
            object-fit: cover;
        }

        .welcome-popup-right {
            flex: 1;
            padding: 10px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: #ffffff;
        }

        .welcome-popup-header {
            margin-bottom: 30px;
        }

        .popup-logo {
            width: 40px;
            margin-bottom: 15px;
        }

        .popup-title {
            text-align: justify;
            font-family: 'Kepler', serif;
            font-style: italic;
            font-size: 34px;
            color: #1b1c1c;
            margin: 0;
            line-height: 1.3;
        }

        .welcome-popup-form .form-group {
            margin-bottom: 10px;
        }

        .welcome-popup-form label {
            display: block;
            font-size: 14px;
            color: #1b1c1c;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .welcome-popup-form .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #d0d0d0;
            background: #fff;
            font-size: 14px;
            color: #1b1c1c;
            transition: border-color 0.3s ease;
        }

        .welcome-popup-form .form-control:focus {
            outline: none;
            border-color: #96B1A6;
        }

        .popup-submit-btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(180deg, #96B1A6 0%, #6A7C75 50%, #96B1A6 98.56%);
            color: #fff;
            border: none;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            margin-top: 10px;
        }

        .popup-submit-btn:hover {
            background: linear-gradient(180deg, #7a9a88 0%, #5a6c65 50%, #7a9a88 98.56%);
        }

        .welcome-popup-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 32px;
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
            z-index: 10001;
        }

        .welcome-popup-close:hover {
            background: rgba(0, 0, 0, 0.9);
        }

        @media (max-width: 768px) {
            .welcome-popup-content {
                max-width: 95%;
                width: 95%;
            }

            .welcome-popup-body {
                flex-direction: column;
                min-height: auto;
            }

            .welcome-popup-left {
                min-height: 250px;
            }

            .welcome-popup-right {
                padding: 30px 20px;
            }

            .popup-title {
                font-size: 22px;
            }

            .welcome-popup-close {
                top: 10px;
                right: 10px;
                width: 35px;
                height: 35px;
                font-size: 28px;
            }
        }

        /* WhatsApp Sticky Button */
        .whatsapp-float {
            position: fixed !important;
            width: 60px !important;
            height: 60px !important;
            bottom: 30px !important;
            right: 30px !important;
            background-color: #25d366 !important;
            color: #FFF !important;
            border-radius: 50px !important;
            text-align: center !important;
            font-size: 40px !important;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.3) !important;
            z-index: 9999 !important;
            transition: all 0.3s ease !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            text-decoration: none !important;
            line-height: 60px !important;
        }

        .whatsapp-float:hover {
            background-color: #128C7E !important;
            box-shadow: 2px 2px 15px rgba(0,0,0,0.5) !important;
            transform: scale(1.05) !important;
            color: #FFF !important;
        }

        .whatsapp-float::before {
            content: "" !important;
            display: block !important;
            width: 35px !important;
            height: 35px !important;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="white" d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"/></svg>') !important;
            background-size: contain !important;
            background-repeat: no-repeat !important;
            background-position: center !important;
        }

        .whatsapp-button {
            position: fixed !important;
            bottom: 30px !important;
            right: 30px !important;
            width: 60px !important;
            height: 60px !important;
            background: #25D366 !important;
            border-radius: 50% !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
            z-index: 9999 !important;
            transition: all 0.3s ease !important;
            text-decoration: none !important;
        }

        .whatsapp-button:hover {
            transform: scale(1.1) !important;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
            background: #128C7E !important;
        }

        .whatsapp-button .whatsapp-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
        }

        .whatsapp-button svg {
            width: 32px !important;
            height: 32px !important;
            color: white !important;
        }

        @media (max-width: 768px) {
            .whatsapp-float {
                width: 50px !important;
                height: 50px !important;
                bottom: 20px !important;
                right: 20px !important;
                font-size: 30px !important;
                line-height: 50px !important;
            }

            .whatsapp-float::before {
                width: 28px !important;
                height: 28px !important;
            }

            .whatsapp-button {
                width: 50px !important;
                height: 50px !important;
                bottom: 20px !important;
                right: 20px !important;
            }

            .whatsapp-button svg {
                width: 26px !important;
                height: 26px !important;
            }
        }

        