
        @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;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }

        html {
            margin: 0;
            padding: 0;
        }

        /* Header */
        header {
            background-color: #1b1c1c;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        nav a {
            color: #fff !important;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: #8fb3a1 !important;
        }

        .cta-button {
            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%);
        }

        h1 {
            font-size: 48px;
            color: #1b1c1c;
            font-style: italic;
        }

        h2 {
            font-size: 42px;
            color: #1b1c1c;
        }

        h3 {
            font-size: 24px;
            color: #1b1c1c;
        }

        p {
            font-size: 16px;
            color: #555;
            line-height: 1.8;
        }

        /* Hero Section */
        .hero-modelos {
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), 
                        url('../../assets/img/modelo.webp') center/cover no-repeat;
            color: #fff;
            text-align: center;
            height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 100%;
            margin-top: 80px;
            padding: 40px 20px;
        }

        .hero-modelos h1 {
            color: #fff;
            font-size: 64px;
            margin-bottom: 15px;
            letter-spacing: 2px;
        }

        .hero-modelos p {
            color: #fff;
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Models Section */
        .modelos-section {
            background-color: #1b1c1c;
            color: #fff;
            padding: 60px 20px;
            overflow-x: hidden;
        }

        .models-tabs {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 60px;
            flex-wrap: wrap;
            border-bottom: 1px solid #333;
            padding-bottom: 20px;
        }

        .model-tab {
            font-style: italic;
            font-size: 18px;
            cursor: pointer;
            color: #aaa;
            transition: color 0.3s ease;
            padding-bottom: 10px;
            border-bottom: 2px solid transparent;
        }

        .model-tab.active {
            color: #fff;
            border-bottom-color: #8fb3a1;
        }

        .model-tab:hover {
            color: #8fb3a1;
        }

        /* Model Details */
        .model-details {
            max-width: 1200px;
            margin: 0 auto;
              display: grid;
              grid-template-columns: 1fr 1fr;
              gap: 60px;
              align-items: start;
              position: relative;
        }

        .model-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .discount-badge {
            border: 2px solid #ff4444;
            color: #ff4444;
            padding: 10px 20px;
            display: inline-block;
            font-size: 14px;
            width: fit-content;
        }

        .model-title {
            font-size: 42px;
            color: #fff;
            font-style: italic;
        }

        .model-specs {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .spec-row {
            display: flex;
            justify-content: space-between;
            padding-bottom: 10px;
            border-bottom: 1px solid #333;
        }

        .spec-label {
            color: #ccc;
            font-size: 25px;
        }

        .spec-value {
            color: #fff;
            font-size: 23px;
        }

        .model-features {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .feature-item {
            color: #ccc;
            font-size: 23px;
            line-height: 1.6;
        }

        .pricing-section {
            margin-top: 4%;
            display: flex;
            flex-direction: column;
            align-items: center;    
            justify-content: center;
            text-align: center;
            gap: 15px;
        }

        .regular-price {
            text-align: center  ;
            color: #aaa;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .discount-price {
            color: #ffffff;
            font-size: 34px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .model-images {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 100%;
            width: 100%;
            overflow: hidden;
        }

        .model-images img {
            width: 100%;
            max-width: 100%;
            min-width: 0;
            height: auto;
            border-radius: 4px;
            object-fit: contain;
            display: block;
        }

        .btn-agendar {
            background-color: #ff6b6b;
            color: #fff;
            border: none;
            padding: 12px 30px;
            font-size: 14px;
            cursor: pointer;
            border-radius: 4px;
            transition: background-color 0.3s ease;
            width: fit-content;
        }

        .btn-agendar:hover {
            background-color: #ff5252;
        }

        /* Gallery Styles */
        .model-gallery {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0 20px;
            width: 100%;
            max-width: 100%;
            overflow: hidden;
        }

        .gallery-title {
            color: #fff;
            font-size: 24px;
            margin-bottom: 20px;
            font-style: italic;
        }

        /* Bootstrap Carousel Customization */
        .model-carousel {
            max-width: 900px;
            width: 100%;
            margin: 0 auto;
        }

        .model-carousel .carousel-inner {
            border-radius: 8px;
            overflow: hidden;
        }

        .model-carousel {
            cursor: grab;
        }

        .model-carousel:active {
            cursor: grabbing;
        }

        .model-carousel .carousel-item img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 8px;
            pointer-events: none;
            user-select: none;
            transition: transform 0.3s ease;
        }

        .model-carousel .carousel-item img:hover {
            transform: scale(1.02);
        }

        .model-carousel .carousel-control-prev,
        .model-carousel .carousel-control-next {
            width: 50px;
            height: 50px;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .model-carousel .carousel-control-prev {
            left: 10px;
        }

        .model-carousel .carousel-control-next {
            right: 10px;
        }

        .model-carousel .carousel-control-prev:hover,
        .model-carousel .carousel-control-next:hover {
            background-color: rgba(143, 179, 161, 0.8);
            opacity: 1;
        }

        .model-carousel .carousel-control-prev-icon,
        .model-carousel .carousel-control-next-icon {
            width: 25px;
            height: 25px;
        }

        .model-carousel .carousel-indicators {
            margin-bottom: -30px;
        }

        .model-carousel .carousel-indicators button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #666;
            border: none;
            opacity: 0.5;
            transition: all 0.3s ease;
        }

        .model-carousel .carousel-indicators button.active {
            background-color: #8fb3a1;
            opacity: 1;
            width: 12px;
            height: 12px;
        }

        /* Lightbox Modal */
        .lightbox-modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            justify-content: center;
            align-items: center;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .lightbox-image {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 4px;
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 40px;
            color: #fff;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 10001;
            transition: color 0.3s;
        }

        .lightbox-close:hover {
            color: #8fb3a1;
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: #fff;
            font-size: 50px;
            cursor: pointer;
            padding: 20px;
            user-select: none;
            transition: color 0.3s;
        }

        .lightbox-nav:hover {
            color: #8fb3a1;
        }

        .lightbox-prev {
            left: 20px;
        }

        .lightbox-next {
            right: 20px;
        }

        @media (max-width: 768px) {
            .model-gallery {
                padding: 0 10px;
            }

            .model-carousel .carousel-item img {
                height: 350px;
            }

            .model-carousel .carousel-control-prev,
            .model-carousel .carousel-control-next {
                width: 40px;
                height: 40px;
            }

            .gallery-title {
                font-size: 20px;
                margin-bottom: 15px;
            }
            
            .lightbox-close {
                top: 10px;
                right: 10px;
                font-size: 30px;
            }
            
            .lightbox-nav {
                font-size: 35px;
                padding: 10px;
            }
        }

        /* 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;
        }

        .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%);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .model-details {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .model-images {
                max-width: 600px;
                margin: 0 auto;
                width: 100%;
            }

            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 15px;
            }

            .gallery-image {
                height: 200px;
            }
        }

        @media (max-width: 768px) {
            .hero-modelos {
                height: 300px;
                margin-top: 70px;
            }

            .hero-modelos h1 {
                font-size: 42px;
            }

            .hero-modelos p {
                font-size: 16px;
            }

            .models-tabs {
                gap: 20px;
                font-size: 16px;
            }

            .model-title {
                font-size: 32px;
            }

            .discount-price {
                font-size: 20px;
            }

            .modelos-section {
                padding: 40px 15px;
            }

            .model-details {
                gap: 30px;
                padding: 0 10px;
            }

            .model-images {
                max-width: 100%;
                gap: 15px;
                padding: 0;
                margin: 0 auto;
            }

            .model-images img {
                max-height: 500px;
                width: 100%;
            }

            .regular-price {
                font-size: 16px;
                padding: 0 10px;
            }

            .footer {
                padding: 40px 15px;
            }

            .footer-container {
                gap: 30px;
            }

            .footer-branding {
                text-align: center !important;
                margin-top: 20px;
            }
        }

        @media (max-width: 480px) {
            .hero-modelos h1 {
                font-size: 32px;
            }

            .models-tabs {
                gap: 15px;
                font-size: 14px;
            }

            .model-info {
                justify-content: center;
                text-align: center;
                display: flex;
                flex-direction: column;
                gap: 30px;
            }

            .model-title {
                text-align: center;
                font-size: 39px;
            }

            .discount-price {
                font-size: 33px;
            }

            .model-details {
                gap: 20px;
                padding: 0 5px;
            }

            .model-images {
                gap: 10px;
                padding: 0;
                margin: 0 auto;
                width: 100%;
            }

            .model-images img {
                max-height: 350px;
                width: 100%;
            }

            .regular-price {
                font-size: 14px;
                padding: 0 5px;
            }

            .spec-label, .spec-value {
                font-size: 14px;
            }

            .feature-item {
                font-size: 16px;
            }

            .model-gallery {
                padding: 0 5px;
            }

            .model-carousel .carousel-item img {
                height: 280px;
            }

            .model-carousel .carousel-control-prev,
            .model-carousel .carousel-control-next {
                width: 35px;
                height: 35px;
            }

            .gallery-title {
                font-size: 18px;
                margin-bottom: 12px;
            }

            .footer {
                padding: 30px 10px;
            }

            .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;
            }
        }

        /* 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);
            }
        }
        /* 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;
        }

        @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;
            }
        }