  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            overflow-x: hidden;
        }

        :root {
            /* Cores extraídas da logo */
            --primary-orange: #F5A623;
            --secondary-orange: #E67E22;
            --dark-bg: #1a1a1a;
            --darker-bg: #0f0f0f;
            --accent-green: #7FB069;
            --light-green: #A8D08D;
            --white: #ffffff;
            --light-gray: #f4f4f4;
            --text-gray: #666;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #f4f4f4 0%, #e8e8e8 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* Top Bar */
        .top-bar {
            background: var(--darker-bg);
            color: var(--white);
            padding: 10px 0;
            font-size: 14px;
        }

        .top-bar-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 30px;
        }

        .top-bar-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--light-gray);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 300;
        }

        .top-bar-item:hover {
            color: var(--primary-orange);
            transform: translateY(-2px);
        }

        .top-bar-item i {
            color: var(--primary-orange);
            font-size: 16px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-left: 20px;
        }

        .social-links a {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-links a:hover {
            background: var(--primary-orange);
            transform: scale(1.1) rotate(5deg);
        }

        /* Main Navbar */
        .navbar {
            background: var(--dark-bg);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 90px;
        }

        /* Logo */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
            transition: transform 0.3s ease;
        }

        .logo-container:hover {
            transform: scale(1.05);
        }

        .logo {
            height: 90px;
            width: auto;
            filter: drop-shadow(0 2px 8px rgba(245, 166, 35, 0.3));
            transition: filter 0.3s ease;
        }

        .logo:hover {
            filter: drop-shadow(0 4px 12px rgba(245, 166, 35, 0.5));
        }

        .brand-text {
            font-family: 'Montaga', serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--white);
            letter-spacing: 1px;
        }

        /* Navigation Menu */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 5px;
            align-items: center;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            color: var(--light-gray);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }

        .nav-link:hover::before {
            width: 80%;
        }

        .nav-link:hover {
            color: var(--white);
            background: rgba(245, 166, 35, 0.1);
        }

        .nav-link i {
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .nav-link:hover i {
            color: var(--primary-orange);
            transform: scale(1.15) rotate(-5deg);
        }

        /* Destaque para menu ESTRUTURA */
        .nav-item.estrutura .nav-link {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            color: var(--white);
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
        }

        .nav-item.estrutura .nav-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
        }

        .nav-item.estrutura .nav-link::before {
            display: none;
        }

        /* Dropdown Menu */
        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--dark-bg);
            min-width: 250px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            margin-top: 10px;
            overflow: hidden;
            border: 1px solid rgba(245, 166, 35, 0.2);
        }

        .nav-item:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 20px;
            color: var(--light-gray);
            text-decoration: none;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .dropdown-item:hover {
            background: rgba(245, 166, 35, 0.15);
            color: var(--white);
            border-left-color: var(--primary-orange);
            padding-left: 25px;
        }

        .dropdown-item i {
            color: var(--primary-orange);
            font-size: 14px;
            width: 20px;
            text-align: center;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 10px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle:hover {
            background: rgba(245, 166, 35, 0.1);
        }

        .mobile-menu-toggle span {
            width: 30px;
            height: 3px;
            background: var(--white);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 92vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background:
                linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(26, 26, 26, 0.85) 40%, rgba(50, 50, 20, 0.8) 100%),
                radial-gradient(ellipse at 80% 50%, rgba(127, 176, 105, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(245, 166, 35, 0.1) 0%, transparent 50%);
            background-color: var(--darker-bg);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                repeating-linear-gradient(
                    90deg,
                    transparent,
                    transparent 80px,
                    rgba(127, 176, 105, 0.03) 80px,
                    rgba(127, 176, 105, 0.03) 81px
                ),
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 80px,
                    rgba(245, 166, 35, 0.02) 80px,
                    rgba(245, 166, 35, 0.02) 81px
                );
            pointer-events: none;
        }

        .hero-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(to top, #1c1d0b, transparent);
            pointer-events: none;
            z-index: 1;
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .hero-content {
            flex: 1;
            text-align: left;
        }

        .hero-title {
            font-family: 'Montaga', serif;
            font-size: 54px;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -0.5px;
        }

        .hero-title span {
            color: var(--primary-orange);
        }

        .hero-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            margin-bottom: 36px;
            font-weight: 300;
            max-width: 520px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 10px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 0.3px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .hero-btn-primary {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            color: var(--white);
            box-shadow: 0 4px 20px rgba(245, 166, 35, 0.35);
        }

        .hero-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(245, 166, 35, 0.5);
        }

        .hero-btn i {
            font-size: 18px;
        }

        /* Hero Images */
        .hero-images {
            flex: 1;
            position: relative;
            height: 540px;
            max-width: 580px;
        }

        .hero-img-card {
            position: absolute;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(245, 166, 35, 0.15);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .hero-img-card:hover {
            transform: scale(1.03);
            box-shadow: 0 16px 50px rgba(0, 0, 0, 0.6);
            border-color: rgba(245, 166, 35, 0.35);
        }

        .hero-img-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .hero-img-main {
            width: 420px;
            height: 280px;
            top: 10px;
            right: 0;
            z-index: 3;
        }

        .hero-img-secondary {
            width: 330px;
            height: 230px;
            top: 220px;
            right: 200px;
            z-index: 2;
        }

        .hero-img-tertiary {
            width: 280px;
            height: 200px;
            top: 310px;
            right: 0;
            z-index: 1;
        }

        /* Scroll Indicator */
        .hero-scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.35);
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            z-index: 2;
        }

        .hero-scroll-indicator i {
            animation: bounceDown 2s ease-in-out infinite;
        }

        @keyframes bounceDown {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(8px); }
        }

        /* Produtos Section */
        .produtos {
            background: var(--darker-bg);
            padding: 100px 0 80px;
            overflow: hidden;
        }

        .produtos-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
            padding: 0 40px;
        }

        .produtos-title {
            font-family: 'Montaga', serif;
            font-size: 44px;
            color: var(--white);
            margin-bottom: 12px;
        }

        .produtos-title span {
            color: var(--primary-orange);
        }

        .produtos-subtitle {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.55);
            font-weight: 300;
            line-height: 1.6;
        }

        /* Slider */
        .slider {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
        }

        .slider-track {
            position: relative;
            overflow: hidden;
        }

        .slide {
            display: none;
            align-items: center;
            gap: 60px;
            animation: slideFadeIn 0.6s ease forwards;
        }

        .slide.active {
            display: flex;
        }

        @keyframes slideFadeIn {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .slide-image {
            flex: 1.2;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(245, 166, 35, 0.12);
        }

        .slide-image img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
        }

        .slide:hover .slide-image img {
            transform: scale(1.03);
        }

        .slide-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(245, 166, 35, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .slide-content {
            flex: 1;
        }

        .slide-tag {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            color: var(--white);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 6px 16px;
            border-radius: 50px;
            margin-bottom: 20px;
        }

        .slide-name {
            font-family: 'Montaga', serif;
            font-size: 34px;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 18px;
        }

        .slide-desc {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            font-weight: 300;
            margin-bottom: 28px;
        }

        .slide-specs {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 32px;
        }

        .slide-specs li {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 10px 18px;
            border-radius: 10px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            font-weight: 400;
        }

        .slide-specs li i {
            color: var(--primary-orange);
            font-size: 15px;
        }

        .slide-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 30px;
            background: transparent;
            border: 2px solid var(--primary-orange);
            color: var(--primary-orange);
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .slide-btn:hover {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            color: var(--white);
            border-color: transparent;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(245, 166, 35, 0.35);
        }

        .slide-btn i {
            transition: transform 0.3s ease;
        }

        .slide-btn:hover i {
            transform: translateX(4px);
        }

        /* Slider Controls */
        .slider-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            margin-top: 48px;
        }

        .slider-arrow {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            border: 2px solid rgba(245, 166, 35, 0.3);
            background: transparent;
            color: var(--primary-orange);
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-arrow:hover {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            color: var(--white);
            border-color: transparent;
            transform: scale(1.1);
            box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
        }

        .slider-dots {
            display: flex;
            gap: 10px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(245, 166, 35, 0.3);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .slider-dot.active {
            background: var(--primary-orange);
            border-color: var(--primary-orange);
            transform: scale(1.2);
            box-shadow: 0 0 12px rgba(245, 166, 35, 0.4);
        }

        .slider-dot:hover {
            border-color: var(--primary-orange);
        }

        /* Progress Bar */
        .slider-progress {
            max-width: 400px;
            height: 3px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 3px;
            margin: 24px auto 0;
            overflow: hidden;
        }

        .slider-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
            border-radius: 3px;
            width: 25%;
            transition: width 0.4s ease;
        }

        /* Financiamentos Section */
        .financiamentos {
            background: var(--dark-bg);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .financiamentos::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(245, 166, 35, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .fin-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
        }

        .fin-header {
            text-align: center;
            max-width: 650px;
            margin: 0 auto 60px;
        }

        .fin-title {
            font-family: 'Montaga', serif;
            font-size: 44px;
            color: var(--white);
            margin-bottom: 12px;
        }

        .fin-title span {
            color: var(--primary-orange);
        }

        .fin-subtitle {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.55);
            font-weight: 300;
            line-height: 1.6;
        }

        /* Financing Cards */
        .fin-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-bottom: 60px;
        }

        .fin-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 20px;
            padding: 40px 32px 36px;
            position: relative;
            transition: all 0.4s ease;
            overflow: hidden;
        }

        .fin-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.3), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .fin-card:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(245, 166, 35, 0.2);
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .fin-card:hover::before {
            opacity: 1;
        }

        /* Card Destaque */
        .fin-card-destaque {
            background: rgba(245, 166, 35, 0.06);
            border-color: rgba(245, 166, 35, 0.2);
        }

        .fin-card-destaque::before {
            opacity: 1;
            background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
            height: 3px;
        }

        .fin-card-icon {
            width: 60px;
            height: 60px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--white);
            margin-bottom: 24px;
            box-shadow: 0 6px 20px rgba(245, 166, 35, 0.25);
        }

        .fin-card-title {
            font-family: 'Montaga', serif;
            font-size: 24px;
            color: var(--white);
            margin-bottom: 14px;
        }

        .fin-card-desc {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.7;
            font-weight: 300;
            margin-bottom: 24px;
        }

        .fin-card-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 24px;
        }

        .fin-card-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.75);
            font-weight: 400;
        }

        .fin-card-list li i {
            color: var(--primary-orange);
            font-size: 12px;
        }

        .fin-card-badge {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary-orange);
            border: 1px solid rgba(245, 166, 35, 0.3);
            padding: 5px 14px;
            border-radius: 50px;
        }

        .fin-card-destaque .fin-card-badge {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            color: var(--white);
            border: none;
        }

        /* CTA Banner */
        .fin-cta {
            background: linear-gradient(135deg, rgba(245, 166, 35, 0.1) 0%, rgba(230, 126, 34, 0.05) 100%);
            border: 1px solid rgba(245, 166, 35, 0.15);
            border-radius: 20px;
            padding: 48px 52px;
        }

        .fin-cta-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .fin-cta-text h3 {
            font-family: 'Montaga', serif;
            font-size: 26px;
            color: var(--white);
            margin-bottom: 8px;
        }

        .fin-cta-text p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.55);
            font-weight: 300;
            line-height: 1.6;
            max-width: 550px;
        }

        .fin-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            color: var(--white);
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            border-radius: 12px;
            white-space: nowrap;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
        }

        .fin-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(245, 166, 35, 0.5);
        }

        .fin-cta-btn i {
            font-size: 18px;
        }

        /* Sobre Section */
        .sobre {
            background: var(--dark-bg);
            padding: 100px 0;
        }

        .sobre-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            align-items: center;
            gap: 70px;
        }

        .sobre-imagem {
            flex: 1;
            position: relative;
            overflow: hidden;
        }

        .sobre-imagem img {
            width: 100%;
            border-radius: 16px;
            display: block;
            box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
            border: 2px solid rgba(245, 166, 35, 0.15);
        }

        .sobre-imagem-badge {
            position: absolute;
            bottom: 16px;
            right: 16px;
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            color: var(--white);
            padding: 20px 28px;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: 0 8px 30px rgba(245, 166, 35, 0.35);
        }

        .badge-numero {
            font-family: 'Montaga', serif;
            font-size: 38px;
            font-weight: 700;
            line-height: 1;
        }

        .badge-texto {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 500;
            white-space: nowrap;
        }

        .sobre-content {
            flex: 1;
        }

        .sobre-title {
            font-family: 'Montaga', serif;
            font-size: 44px;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 24px;
        }

        .sobre-title span {
            color: var(--primary-orange);
        }

        .sobre-descricao {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .sobre-descricao:last-of-type {
            margin-bottom: 36px;
        }

        .sobre-pilares {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .sobre-pilar {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }

        .pilar-icon {
            width: 44px;
            height: 44px;
            min-width: 44px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-orange);
            font-size: 18px;
        }

        .pilar-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .pilar-text strong {
            font-size: 15px;
            color: var(--white);
            font-weight: 600;
        }

        .pilar-text span {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 300;
            line-height: 1.4;
        }

        /* Representantes Section */
        .representantes {
            background: var(--darker-bg);
            padding: 100px 0;
        }

        .rep-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .rep-header {
            text-align: center;
            max-width: 650px;
            margin: 0 auto 60px;
        }

        .rep-title {
            font-family: 'Montaga', serif;
            font-size: 44px;
            color: var(--white);
            margin-bottom: 12px;
        }

        .rep-title span {
            color: var(--primary-orange);
        }

        .rep-subtitle {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.55);
            font-weight: 300;
            line-height: 1.6;
        }

        .rep-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .rep-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            padding: 28px;
            transition: all 0.4s ease;
        }

        .rep-card:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(245, 166, 35, 0.2);
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
        }

        .rep-card-top {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }

        .rep-avatar {
            width: 52px;
            height: 52px;
            min-width: 52px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--white);
            box-shadow: 0 4px 14px rgba(245, 166, 35, 0.25);
        }

        .rep-name {
            font-size: 17px;
            color: var(--white);
            font-weight: 600;
        }

        .rep-cargo {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
            font-weight: 300;
        }

        .rep-regiao {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(245, 166, 35, 0.1);
            border: 1px solid rgba(245, 166, 35, 0.15);
            padding: 7px 16px;
            border-radius: 50px;
            margin-bottom: 14px;
        }

        .rep-regiao i {
            color: var(--primary-orange);
            font-size: 13px;
        }

        .rep-regiao span {
            font-size: 13px;
            color: var(--primary-orange);
            font-weight: 600;
            letter-spacing: 0.3px;
        }

        .rep-cidades {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.45);
            font-weight: 300;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .rep-contatos {
            display: flex;
            flex-direction: column;
            gap: 10px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 18px;
        }

        .rep-contato-item {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.65);
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .rep-contato-item:hover {
            color: var(--primary-orange);
        }

        .rep-contato-item i {
            font-size: 16px;
            color: var(--primary-orange);
            width: 18px;
            text-align: center;
        }

        /* Contato Section */
        .contato {
            background: var(--dark-bg);
            padding: 100px 0;
        }

        .contato-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            gap: 60px;
            align-items: stretch;
        }

        .contato-info {
            flex: 1;
        }

        .contato-title {
            font-family: 'Montaga', serif;
            font-size: 44px;
            color: var(--white);
            margin-bottom: 12px;
        }

        .contato-title span {
            color: var(--primary-orange);
        }

        .contato-subtitle {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 300;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .contato-items {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .contato-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .contato-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--white);
            box-shadow: 0 4px 15px rgba(245, 166, 35, 0.25);
        }

        .contato-text {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }

        .contato-text strong {
            color: var(--white);
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .contato-text span {
            color: rgba(255, 255, 255, 0.55);
            font-size: 15px;
            font-weight: 300;
        }

        .contato-mapa {
            flex: 1;
            border-radius: 16px;
            overflow: hidden;
            border: 2px solid rgba(245, 166, 35, 0.15);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
            min-height: 460px;
        }

        .contato-mapa iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        /* Footer */
        .footer {
            background: var(--darker-bg);
        }

        .footer-main {
            padding: 80px 0 50px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            gap: 50px;
        }

        .footer-col {
            flex: 1;
        }

        .footer-brand {
            flex: 1.4;
        }

        .footer-logo {
            height: 80px;
            width: auto;
            margin-bottom: 20px;
            filter: drop-shadow(0 2px 8px rgba(245, 166, 35, 0.2));
        }

        .footer-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.7;
            font-weight: 300;
            margin-bottom: 24px;
            max-width: 320px;
        }

        .footer-social {
            display: flex;
            gap: 10px;
        }

        .footer-social a {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            border-color: transparent;
            color: var(--white);
            transform: translateY(-2px);
        }

        .footer-heading {
            font-family: 'Montaga', serif;
            font-size: 18px;
            color: var(--white);
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--primary-orange);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.45);
            text-decoration: none;
            font-size: 14px;
            font-weight: 300;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-orange);
            padding-left: 6px;
        }

        .footer-contact {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .footer-contact li i {
            color: var(--primary-orange);
            font-size: 14px;
            margin-top: 3px;
            width: 16px;
            text-align: center;
            flex-shrink: 0;
        }

        .footer-contact li span {
            color: rgba(255, 255, 255, 0.45);
            font-size: 14px;
            font-weight: 300;
            line-height: 1.5;
        }

        /* Footer Bottom */
        .footer-bottom {
            padding: 24px 0;
        }

        .footer-bottom .footer-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .footer-bottom span {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.3);
            font-weight: 300;
        }

        .footer-bottom-links {
            display: flex;
            gap: 24px;
        }

        .footer-bottom-links a {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.3);
            text-decoration: none;
            font-weight: 300;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--primary-orange);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .nav-container {
                padding: 0 20px;
            }

            .nav-menu {
                gap: 2px;
            }

            .nav-link {
                padding: 10px 12px;
                font-size: 13px;
                gap: 6px;
            }

            .nav-link i {
                font-size: 14px;
            }

            .hero-inner {
                gap: 40px;
                padding: 0 30px;
            }

            .hero-title {
                font-size: 44px;
            }

            .hero-images {
                max-width: 480px;
                height: 480px;
            }

            .hero-img-main {
                width: 350px;
                height: 240px;
            }

            .hero-img-secondary {
                width: 280px;
                height: 200px;
            }

            .hero-img-tertiary {
                width: 240px;
                height: 175px;
            }

            .rep-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 1024px) {
            .top-bar {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 90px;
                left: 0;
                right: 0;
                bottom: 0;
                background: var(--dark-bg);
                flex-direction: column;
                gap: 2px;
                padding: 20px;
                overflow-y: auto;
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.3s ease, visibility 0.3s ease;
                z-index: 999;
            }

            .nav-menu.active {
                opacity: 1;
                visibility: visible;
            }

            .nav-item {
                width: 100%;
            }

            .nav-link {
                width: 100%;
                justify-content: flex-start;
                padding: 14px 16px;
                font-size: 15px;
                gap: 12px;
                border-radius: 10px;
                overflow: visible;
            }

            .nav-link::before {
                display: none;
            }

            .nav-link:hover i {
                transform: none;
            }

            .nav-link i {
                font-size: 16px;
                width: 20px;
                text-align: center;
                flex-shrink: 0;
            }

            .nav-item.estrutura .nav-link {
                width: 100%;
                box-shadow: none;
            }

            .nav-item.estrutura .nav-link:hover {
                transform: none;
                box-shadow: none;
            }

            .dropdown-content {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                min-width: 0;
                margin: 2px 0 0 0;
                box-shadow: none;
                border: none;
                background: rgba(255, 255, 255, 0.04);
                border-radius: 10px;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .nav-item.active .dropdown-content {
                max-height: 300px;
            }

            .dropdown-item {
                padding: 12px 16px 12px 48px;
                border-left: none;
                font-size: 14px;
            }

            .dropdown-item:hover {
                padding-left: 48px;
                background: rgba(245, 166, 35, 0.08);
            }

            /* Hero Responsive */
            .hero {
                min-height: auto;
                padding: 60px 0 80px;
            }

            .hero-inner {
                flex-direction: column;
                gap: 40px;
                padding: 0 24px;
            }

            .hero-content {
                text-align: center;
            }

            .hero-title {
                font-size: 34px;
            }

            .hero-subtitle {
                font-size: 16px;
                margin-bottom: 28px;
                max-width: 100%;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-btn {
                padding: 14px 28px;
            }

            .hero-images {
                max-width: 100%;
                height: 340px;
            }

            .hero-img-main {
                width: 58%;
                height: 220px;
                top: 0;
                right: 5%;
            }

            .hero-img-secondary {
                width: 52%;
                height: 185px;
                top: 145px;
                right: auto;
                left: 0;
            }

            .hero-img-tertiary {
                width: 42%;
                height: 155px;
                top: 185px;
                right: 0;
            }

            .hero-scroll-indicator {
                display: none;
            }

            /* Produtos Responsive */
            .produtos {
                padding: 60px 0;
            }

            .produtos-header {
                margin-bottom: 40px;
                padding: 0 24px;
            }

            .produtos-title {
                font-size: 32px;
            }

            .produtos-subtitle {
                font-size: 15px;
            }

            .slider {
                padding: 0 24px;
            }

            .slide.active {
                flex-direction: column;
                gap: 32px;
            }

            .slide-image img {
                height: 260px;
            }

            .slide-name {
                font-size: 26px;
            }

            .slide-desc {
                font-size: 15px;
                margin-bottom: 20px;
            }

            .slide-specs {
                gap: 10px;
                margin-bottom: 24px;
            }

            .slide-specs li {
                padding: 8px 14px;
                font-size: 13px;
            }

            .slider-controls {
                margin-top: 32px;
            }

            .slider-arrow {
                width: 44px;
                height: 44px;
                font-size: 16px;
            }

            /* Financiamentos Responsive */
            .financiamentos {
                padding: 60px 0;
            }

            .fin-container {
                padding: 0 24px;
            }

            .fin-header {
                margin-bottom: 40px;
            }

            .fin-title {
                font-size: 32px;
            }

            .fin-subtitle {
                font-size: 15px;
            }

            .fin-cards {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-bottom: 40px;
            }

            .fin-card {
                padding: 32px 24px 28px;
            }

            .fin-cta {
                padding: 32px 24px;
            }

            .fin-cta-content {
                flex-direction: column;
                text-align: center;
                gap: 24px;
            }

            .fin-cta-text h3 {
                font-size: 22px;
            }

            .fin-cta-text p {
                font-size: 14px;
            }

            /* Sobre Responsive */
            .sobre {
                padding: 60px 0;
            }

            .sobre-container {
                flex-direction: column;
                padding: 0 24px;
                gap: 36px;
            }

            .sobre-title {
                font-size: 32px;
            }

            .sobre-descricao {
                font-size: 15px;
            }

            .sobre-pilares {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .sobre-imagem-badge {
                bottom: -16px;
                right: -8px;
                padding: 14px 20px;
            }

            .badge-numero {
                font-size: 30px;
            }

            .badge-texto {
                font-size: 11px;
            }

            /* Representantes Responsive */
            .representantes {
                padding: 60px 0;
            }

            .rep-container {
                padding: 0 24px;
            }

            .rep-header {
                margin-bottom: 40px;
            }

            .rep-title {
                font-size: 32px;
            }

            .rep-subtitle {
                font-size: 15px;
            }

            .rep-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            /* Contato Responsive */
            .contato {
                padding: 60px 0;
            }

            .contato-container {
                flex-direction: column;
                padding: 0 24px;
                gap: 40px;
            }

            .contato-title {
                font-size: 32px;
            }

            .contato-subtitle {
                font-size: 15px;
                margin-bottom: 32px;
            }

            .contato-mapa {
                min-height: 320px;
            }

            /* Footer Responsive */
            .footer-main {
                padding: 50px 0 40px;
            }

            .footer-container {
                flex-direction: column;
                gap: 36px;
                padding: 0 24px;
            }

            .footer-brand {
                text-align: center;
            }

            .footer-logo {
                height: 70px;
            }

            .footer-desc {
                max-width: 100%;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-heading::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-col {
                text-align: center;
            }

            .footer-links {
                align-items: center;
            }

            .footer-links a:hover {
                padding-left: 0;
            }

            .footer-contact li {
                justify-content: center;
            }

            .footer-bottom .footer-container {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }

            .footer-bottom-links {
                gap: 16px;
            }
        }