        /* --- DESIGN SYSTEM & VARS --- */
        :root {
            --c-bg: #E3E1DC;
            /* Stone/Concrete */
            --c-dark: #121212;
            /* Dark Matter */
            --c-accent: #374336;
            /* Deep Moss */
            --c-white: #ffffff;
            --font-display: 'Syncopate', sans-serif;
            --font-body: 'Manrope', sans-serif;
            --container-width: 1440px;
            --header-height: 100px;
            --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* --- RESET & BASE --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body {
            width: 100%;
            overflow-x: hidden;
            background-color: var(--c-dark);
            color: var(--c-white);
            font-family: var(--font-body);
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            display: block;
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .container {
            width: 90%;
            max-width: var(--container-width);
            margin: 0 auto;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 32px;
            font-family: var(--font-body);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-size: 0.85rem;
            cursor: pointer;
            transition: var(--transition-smooth);
            border-radius: 4px;
            border: none;
        }

        .btn-primary {
            background-color: var(--c-accent);
            color: var(--c-white);
            border: 1px solid var(--c-accent);
        }

        .btn-primary:hover {
            background-color: var(--c-white);
            color: var(--c-accent);
            border-color: var(--c-white);
        }

        .btn-ghost {
            background-color: transparent;
            color: var(--c-white);
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(5px);
        }

        .btn-ghost:hover {
            background-color: var(--c-white);
            color: var(--c-dark);
            border-color: var(--c-white);
        }

        .btn-whatsapp {
            background-color: #25D366;
            color: white;
            border-radius: 50px;
            padding: 12px 24px;
            font-size: 0.8rem;
        }

        .btn-whatsapp:hover {
            background-color: #1ebc57;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        }

        /* --- NAVBAR --- */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            z-index: 1000;
            display: flex;
            align-items: center;
            transition: var(--transition-smooth);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .navbar.scrolled {
            background: rgba(18, 18, 18, 0.4);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            height: 80px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .navbar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 90%;
            max-width: var(--container-width);
            margin: 0 auto;
        }

        .logo {
            display: flex;
            flex-direction: column;
            line-height: 1;
        }

        .logo-main {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.5rem;
            letter-spacing: -0.05em;
            color: var(--c-white);
        }

        .logo-sub {
            font-family: var(--font-body);
            font-size: 0.6rem;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 4px;
        }

        .nav-links {
            display: flex;
            gap: 40px;
        }

        @media (max-width: 1024px) {

            .nav-links,
            .nav-cta-group {
                display: none;
            }
        }

        .nav-link {
            font-family: var(--font-body);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--c-white);
            position: relative;
            padding-bottom: 4px;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 1px;
            background-color: var(--c-white);
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            opacity: 1;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Dropdown Styles */
        .nav-item-dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: rgba(18, 18, 18, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            min-width: 220px;
            padding: 15px 0;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            margin-top: 10px;
        }

        .nav-item-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-item {
            display: block;
            padding: 12px 25px;
            font-family: var(--font-body);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--c-white);
            opacity: 0.7;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .dropdown-item:hover {
            opacity: 1;
            background: rgba(255, 255, 255, 0.05);
            padding-left: 30px;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 20px;
            cursor: pointer;
            z-index: 1002;
        }

        @media (max-width: 1024px) {
            .menu-toggle {
                display: flex;
            }
        }

        .line {
            width: 100%;
            height: 2px;
            background-color: var(--c-white);
            transition: var(--transition-smooth);
        }

        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--c-dark);
            z-index: 1001;
            transform: translateY(-100%);
            transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .mobile-overlay.active {
            transform: translateY(0);
        }

        .mobile-link {
            font-family: var(--font-display);
            font-size: 2rem;
            margin: 20px 0;
            color: var(--c-white);
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.4s, transform 0.4s;
        }

        .mobile-overlay.active .mobile-link {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- HERO SECTION --- */
        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .hero-bg-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 120%;
            z-index: 1;
        }

        .hero-bg {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            background: linear-gradient(to top, rgba(18, 18, 18, 1) 0%, rgba(18, 18, 18, 0.7) 30%, rgba(18, 18, 18, 0.3) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 3;
            width: 100%;
        }

        .badge-wrapper {
            margin-bottom: 24px;
            opacity: 0;
        }

        .badge {
            display: inline-block;
            padding: 8px 16px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
        }

        h1.hero-title {
            font-family: var(--font-display);
            font-size: clamp(3rem, 6vw, 7rem);
            line-height: 1;
            margin-bottom: 24px;
            text-transform: uppercase;
            font-weight: 700;
        }

        .hero-subtitle {
            font-family: var(--font-body);
            font-size: clamp(1rem, 1.5vw, 1.25rem);
            font-weight: 300;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin-bottom: 48px;
            opacity: 0;
        }

        .hero-actions {
            display: flex;
            gap: 20px;
            opacity: 0;
        }

        .social-proof {
            margin-top: 48px;
            display: flex;
            align-items: center;
            gap: 20px;
            opacity: 0;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .stars {
            color: #FFD700;
        }

        .drone-container {
            position: absolute;
            bottom: 10%;
            right: 8%;
            z-index: 4;
            width: 200px;
            display: none;
        }

        @media (min-width: 1024px) {
            .drone-container {
                display: block;
            }
        }

        .drone-svg {
            width: 100%;
            transition: filter 0.3s;
        }

        .drone-container:hover .drone-svg,
        .drone-container:hover img {
            filter: drop-shadow(0 0 20px var(--c-accent));
        }

        .propeller {
            transform-origin: center;
            animation: spin 0.1s linear infinite;
        }

        @keyframes spin {
            100% {
                transform: rotate(360deg);
            }
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            opacity: 0.7;
            cursor: pointer;
        }

        .scroll-icon {
            width: 20px;
            height: 30px;
            border: 2px solid white;
            border-radius: 15px;
            position: relative;
        }

        .scroll-dot {
            width: 4px;
            height: 4px;
            background: white;
            border-radius: 50%;
            position: absolute;
            top: 5px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translate(-50%, 0);
            }

            40% {
                transform: translate(-50%, 10px);
            }

            60% {
                transform: translate(-50%, 5px);
            }
        }

        /* --- SERVICES SECTION --- */
        .section-services {
            background-color: var(--c-bg);
            color: var(--c-dark);
            padding: 120px 0;
            position: relative;
            z-index: 5;
        }

        .section-header {
            margin-bottom: 80px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            padding-bottom: 40px;
        }

        .section-eyebrow {
            font-family: var(--font-display);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--c-accent);
            display: block;
            margin-bottom: 15px;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            line-height: 1.1;
            text-transform: uppercase;
        }

        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        @media (min-width: 768px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .service-card {
            background: #fff;
            border: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            transition: var(--transition-smooth);
            overflow: hidden;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
        }

        .service-img-wrapper {
            width: 100%;
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .service-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .service-card:hover .service-img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 40px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .service-icon {
            font-size: 2rem;
            color: var(--c-accent);
            margin-bottom: 20px;
        }

        .service-title {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .service-desc {
            font-weight: 300;
            line-height: 1.6;
            color: #555;
            margin-bottom: 30px;
        }

        .service-link {
            font-weight: 700;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--c-dark);
            margin-top: auto;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .service-card:hover .service-link {
            opacity: 1;
        }

        .cta-strip {
            margin-top: 80px;
            text-align: center;
        }

        /* --- PHILOSOPHY SECTION --- */
        .section-philosophy {
            background-color: var(--c-bg);
            color: var(--c-dark);
            padding: 120px 0;
            position: relative;
            z-index: 5;
        }

        .philosophy-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .philosophy-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            text-transform: none;
            margin-bottom: 10px;
        }

        .philosophy-eyebrow {
            font-family: var(--font-display);
            font-size: 0.9rem;
            color: #d35400;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-weight: 700;
        }

        .philosophy-content {
            display: flex;
            flex-direction: column;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .philosophy-block {
            display: flex;
            flex-direction: column-reverse !important;
            background: transparent;
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 0;
            overflow: hidden;
        }

        @media (min-width: 992px) {
            .philosophy-block {
                flex-direction: row;
                min-height: 320px;
            }

            .philosophy-block[style*="flex-direction: row-reverse"] {
                flex-direction: row-reverse;
            }
        }

        .philosophy-text {
            flex: 0 0 45%;
            padding: 50px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .philosophy-card-title {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .philosophy-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .philosophy-list li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 15px;
            font-size: 0.9rem;
            color: #555;
            line-height: 1.6;
            font-weight: 500;
        }

        .philosophy-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #999;
            font-size: 1.2rem;
            line-height: 1;
            top: 2px;
        }

        .philosophy-image-wrapper {
            flex: 1;
            height: 300px;
            overflow: hidden;
        }

        @media (min-width: 768px) {
            .philosophy-image-wrapper {
                height: 350px;
            }
        }

        @media (min-width: 992px) {
            .philosophy-image-wrapper {
                height: auto;
            }
        }

        .philosophy-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .philosophy-block:hover .philosophy-image {
            transform: scale(1.05);
        }


        /* --- VIDEOS SECTION --- */
        .section-videos {
            background-color: var(--c-dark);
            color: #ffffff;
            padding: 120px 0;
            position: relative;
            z-index: 5;
        }

        .videos-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .videos-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            text-transform: none;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .videos-eyebrow {
            font-family: var(--font-display);
            font-size: 0.9rem;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-weight: 700;
        }

        .videos-content {
            display: flex;
            flex-direction: column;
            background: #1a1a1a;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 0;
            overflow: hidden;
            max-width: 1200px;
            margin: 0 auto;
        }

        @media (min-width: 992px) {
            .videos-content {
                flex-direction: row;
                min-height: 400px;
            }
        }

        .videos-text {
            flex: 0 0 45%;
            padding: 50px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: var(--c-white);
        }

        .videos-card-title {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .videos-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .videos-list li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 15px;
            font-size: 0.9rem;
            color: #555;
            line-height: 1.6;
            font-weight: 500;
        }

        .videos-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #999;
            font-size: 1.2rem;
            line-height: 1;
            top: 2px;
        }

        .videos-player-wrapper {
            flex: 1;
            position: relative;
            overflow: hidden;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .videos-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.6;
            transition: opacity 0.3s;
        }

        .videos-player-wrapper:hover .videos-thumbnail {
            opacity: 0.8;
        }

        .videos-play-button {
            position: absolute;
            font-size: 2rem;
            color: #ff0000;
            background: white;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 2;
        }

        .videos-play-button i {
            margin-left: 4px;
        }

        .videos-player-wrapper:hover .videos-play-button {
            transform: scale(1.1);
        }

        .videos-thumbnail-text {
            position: absolute;
            bottom: 30px;
            left: 0;
            width: 100%;
            text-align: center;
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            z-index: 2;
            letter-spacing: 0.1em;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
        }

        /* --- BENEFITS SECTION --- */
        .section-benefits {
            background-color: var(--c-bg);
            color: var(--c-dark);
            padding: 120px 0;
            position: relative;
            z-index: 5;
        }

        .benefits-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .benefits-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 3.5vw, 2.5rem);
            font-weight: 700;
            text-transform: none;
            margin-bottom: 15px;
        }

        .benefits-eyebrow {
            font-family: var(--font-display);
            font-size: 0.85rem;
            color: #d35400;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .benefits-intro {
            max-width: 800px;
            margin: 0 auto;
            font-size: 0.95rem;
            line-height: 1.6;
            color: #555;
            font-weight: 500;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
            margin-top: 50px;
        }

        @media (min-width: 768px) {
            .benefits-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .benefits-grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }

        .benefit-card {
            background: transparent;
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 0;
            padding: 30px 20px;
            text-align: center;
            box-shadow: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            object-fit: contain;
            margin-bottom: 20px;
        }

        .benefit-card-title {
            font-family: var(--font-display);
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--c-dark);
            line-height: 1.3;
        }

        .benefit-card-desc {
            font-size: 0.8rem;
            color: #666;
            line-height: 1.5;
        }

        /* --- PHOTOS SECTION --- */
        .section-photos {
            background-color: var(--c-dark);
            color: #ffffff;
            padding: 120px 0;
            position: relative;
            z-index: 5;
        }

        .photos-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .photos-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            text-transform: none;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .photos-eyebrow {
            font-family: var(--font-display);
            font-size: 0.9rem;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-weight: 700;
        }

        .photos-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 15px;
            max-width: 1200px;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .photos-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .photos-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .photo-card {
            position: relative;
            overflow: hidden;
            border-radius: 0;
            aspect-ratio: 4/3;
            cursor: pointer;
        }

        .photo-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .photo-card:hover .photo-img {
            transform: scale(1.1);
        }


        /* --- PARTNERS SECTION --- */
        .section-partners {
            background-color: var(--c-bg);
            color: var(--c-dark);
            padding: 80px 0;
            position: relative;
            z-index: 5;
            text-align: center;
        }

        .partners-title {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 15px;
        }

        .partners-eyebrow {
            font-family: var(--font-display);
            font-size: 0.8rem;
            color: #d35400;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-weight: 700;
            margin-bottom: 50px;
        }

        .partners-marquee {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            overflow: hidden;
            background-color: #f7f7f7;
            padding: 40px 0;
            display: flex;
        }

        .partners-marquee::before,
        .partners-marquee::after {
            content: "";
            position: absolute;
            top: 0;
            width: 15vw;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .partners-marquee::before {
            left: 0;
            background: linear-gradient(to right, #f7f7f7 0%, rgba(247, 247, 247, 0) 100%);
        }

        .partners-marquee::after {
            right: 0;
            background: linear-gradient(to left, #f7f7f7 0%, rgba(247, 247, 247, 0) 100%);
        }

        .partners-track {
            display: flex;
            width: max-content;
            animation: marquee 35s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .partner-logo-box {
            padding: 0 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .partner-logo-img {
            max-width: 160px;
            height: 50px;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.5;
            transition: all 0.3s ease;
        }

        .partner-logo-box:hover .partner-logo-img {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }

        /* --- CONTACT SECTION --- */
        .section-contact {
            background-color: var(--c-dark);
            color: #ffffff;
            padding: 100px 0 0 0;
            position: relative;
            z-index: 5;
            overflow: hidden;
        }

        .contact-content {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }

        @media (min-width: 992px) {
            .contact-content {
                flex-direction: row;
                justify-content: space-between;
                align-items: flex-start;
            }
        }

        .contact-left {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            padding-bottom: 100px;
            /* Space for drone */
        }

        .contact-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 3.5vw, 2.5rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 15px;
            text-transform: none;
        }

        .contact-subtitle {
            font-size: 1rem;
            color: #cccccc;
            margin-bottom: 40px;
        }

        .contact-drone-img {
            width: 120%;
            max-width: 600px;
            margin-left: -10%;
            filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
            transform: translateY(30px);
        }

        .contact-right {
            flex: 0 0 100%;
            max-width: 500px;
            margin: 0 auto;
            width: 100%;
            padding-bottom: 80px;
        }

        @media (min-width: 992px) {
            .contact-right {
                flex: 0 0 45%;
                margin: 0;
            }
        }

        .form-title {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 5px;
            text-align: center;
            color: #ffffff;
        }

        .form-subtitle {
            text-align: center;
            color: #e74c3c;
            font-weight: 700;
            margin-bottom: 30px;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.1em;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .form-input {
            width: 100%;
            padding: 15px 20px;
            background: #1a1a1a;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 0;
            font-family: var(--font-body);
            font-size: 0.9rem;
            color: var(--c-white);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--c-white);
        }

        textarea.form-input {
            resize: vertical;
            min-height: 120px;
        }

        .btn-submit {
            background-color: var(--c-white);
            color: var(--c-dark);
            border: none;
            border-radius: 0;
            padding: 16px;
            font-family: var(--font-body);
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-top: 10px;
        }

        .btn-submit:hover {
            background-color: #c0392b;
        }

        /* --- FOOTER --- */
        .footer-main {
            background-color: var(--c-dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 0 30px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        @media (min-width: 768px) {
            .footer-content {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
        }

        .footer-col-title {
            font-family: var(--font-display);
            color: var(--c-white);
            font-size: 1.2rem;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .footer-logo {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--c-white);
            margin-bottom: 5px;
            display: block;
        }

        .footer-sublogo {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-bottom: 25px;
            display: block;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .footer-contact-item i {
            color: #25D366;
            /* Whatsapp green or general accent */
            font-size: 1.2rem;
            width: 20px;
            text-align: center;
        }

        .footer-socials {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--c-white);
            transition: all 0.3s;
        }

        .social-link:hover {
            background: var(--c-accent);
            transform: translateY(-3px);
        }

        .social-link.whatsapp:hover {
            background: #25D366;
        }

        .social-link.instagram:hover {
            background: #E1306C;
        }

        .social-link.youtube:hover {
            background: #FF0000;
        }

        .social-link.facebook:hover {
            background: #1877F2;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.8rem;
        }

        /* --- TEXT REVEAL UTILS (Aethereal) --- */
        .word-wrap {
            display: inline-block;
            overflow: hidden;
            vertical-align: top;
            padding-bottom: 0.1em;
        }

        .word-inner {
            display: inline-block;
            transform: translateY(110%);
        }

        /* --- PRELOADER --- */
        .loader {
            position: fixed;
            inset: 0;
            background: var(--c-dark);
            z-index: 10000;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--c-white);
        }

        .loader-text {
            font-family: var(--font-display);
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 700;
            letter-spacing: 0.1em;
        }

        .loader-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 4px;
            background: var(--c-white);
            width: 0%;
        }

        /* --- NOISE --- */
        .noise-overlay {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 9000;
            opacity: 0.05;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
        }

        /* --- NAV ACTIVE STATE --- */
        .nav-link.active {
            opacity: 1;
        }
        .nav-link.active::after {
            width: 100%;
        }

        /* --- PHOTO CARD AS LINK (lightbox) --- */
        a.photo-card {
            display: block;
            cursor: zoom-in;
        }

        /* --- WHATSAPP FLOAT BUTTON --- */
        .whatsapp-float {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 58px;
            height: 58px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7rem;
            color: #fff;
            z-index: 998;
            box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
            text-decoration: none;
        }
        .whatsapp-float:hover {
            transform: scale(1.12) translateY(-3px);
            box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
        }
        .whatsapp-float .wa-tooltip {
            position: absolute;
            right: 70px;
            background: var(--c-dark);
            color: var(--c-white);
            font-family: var(--font-body);
            font-size: 0.78rem;
            font-weight: 600;
            white-space: nowrap;
            padding: 6px 14px;
            border-radius: 4px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s;
        }
        .whatsapp-float:hover .wa-tooltip {
            opacity: 1;
        }

        /* --- SCROLL TO TOP BUTTON --- */
        .scroll-top-btn {
            position: fixed;
            bottom: 100px;
            right: 32px;
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--c-white);
            font-size: 0.9rem;
            cursor: pointer;
            z-index: 997;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .scroll-top-btn.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .scroll-top-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        /* --- FORM FEEDBACK --- */
        .form-feedback {
            padding: 14px 20px;
            border-radius: 4px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 10px;
            text-align: center;
        }
        .form-feedback.success {
            background: rgba(37, 211, 102, 0.15);
            border: 1px solid rgba(37, 211, 102, 0.4);
            color: #25D366;
        }
        .form-feedback.error {
            background: rgba(220, 53, 69, 0.15);
            border: 1px solid rgba(220, 53, 69, 0.4);
            color: #ff6b6b;
        }
        .btn-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

/* --- FAQ --- */
.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 0;
    margin-bottom: 0;
}
.faq-question {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--c-dark);
    cursor: pointer;
    padding: 22px 40px 22px 0;
    list-style: none;
    position: relative;
    user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--c-accent);
    transition: transform 0.3s ease;
}
.faq-item[open] .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}
.faq-answer {
    font-size: 0.95rem;
    color: #555;
    font-weight: 300;
    line-height: 1.7;
    padding: 0 40px 22px 0;
    margin: 0;
}

/* --- COMO FUNCIONA --- */
.section-how {
    background: var(--c-dark);
    color: var(--c-white);
    padding: 100px 0;
}
.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 60px;
    position: relative;
}
.how-step {
    text-align: center;
    padding: 40px 30px;
    position: relative;
}
.how-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 58px;
    right: 0;
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}
.how-step-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--c-accent);
    line-height: 1;
}
.how-step-icon {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.3);
    margin: 16px 0 12px;
}
.how-step-title {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.how-step-desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}
@media (max-width: 768px) {
    .how-steps { grid-template-columns: 1fr; }
    .how-step:not(:last-child)::after { display: none; }
    .how-step { padding: 30px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .how-step:last-child { border-bottom: none; }
}

/* --- STATS STRIP --- */
.stats-strip {
    background: var(--c-accent);
    padding: 70px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--c-white);
    line-height: 1;
}
.stat-label {
    font-size: 0.72rem;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 10px;
}
@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

/* --- CASES --- */
.section-cases {
    background: var(--c-bg);
    padding: 100px 0;
}
.cases-note {
    font-size: 0.78rem;
    color: #999;
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}
.case-card {
    background: var(--c-white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}
.case-tag {
    background: var(--c-accent);
    color: var(--c-white);
    font-family: var(--font-display);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 8px 16px;
    display: block;
}
.case-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.case-label {
    font-size: 0.65rem;
    font-family: var(--font-display);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 2px;
}
.case-text {
    font-size: 0.88rem;
    color: #444;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}
.case-result {
    background: #f5f4f0;
    border-left: 3px solid var(--c-accent);
    padding: 12px 16px;
    margin-top: auto;
}
.case-result strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 4px;
}
.case-result span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--c-dark);
}
@media (max-width: 768px) {
    .cases-grid { grid-template-columns: 1fr; }
}

/* --- PAGE TRANSITION VEIL --- */
.page-veil {
    position: fixed;
    inset: 0;
    background: var(--c-bg);
    z-index: 99998;
    pointer-events: none;
}

/* --- SCROLL PROGRESS BAR --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--c-accent);
    z-index: 1100;
    transition: width 0.08s linear;
    pointer-events: none;
}


/* --- PROPELLERS SPIN --- */
@keyframes prop-spin {
    0%, 100% { transform: scaleX(1);    opacity: 0.45; }
    50%       { transform: scaleX(0.05); opacity: 0.08; }
}
.drone-svg .propeller {
    transform-box: fill-box;
    transform-origin: center;
    animation: prop-spin 0.13s linear infinite;
}

/* --- IMAGE REVEAL (blur to sharp) --- */
.img-reveal {
    filter: blur(8px);
    transform: scale(1.04);
    transition: filter 0.9s ease, transform 0.9s ease;
}
.img-reveal.img-loaded {
    filter: blur(0);
    transform: scale(1);
}

/* --- LGPD BANNER --- */
.lgpd-banner {
    position: fixed;
    bottom: -220px;
    left: 20px;
    max-width: 460px;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 20px 22px;
    z-index: 9980;
    box-shadow: 0 12px 50px rgba(0,0,0,0.6);
    transition: bottom 0.55s cubic-bezier(0.34, 1.4, 0.64, 1);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.lgpd-banner.visible { bottom: 20px; }
.lgpd-text {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}
.lgpd-text i { color: var(--c-accent); margin-right: 6px; }
.lgpd-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.lgpd-accept {
    background: var(--c-accent);
    color: var(--c-white);
    border: none;
    border-radius: 50px;
    padding: 9px 22px;
    font-family: var(--font-display);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s;
}
.lgpd-accept:hover { opacity: 0.82; }
.lgpd-reject {
    background: transparent;
    color: rgba(255,255,255,0.35);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    padding: 9px 22px;
    font-family: var(--font-display);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}
.lgpd-reject:hover { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.28); }
@media (max-width: 500px) {
    .lgpd-banner { left: 10px; right: 10px; max-width: none; }
}

/* --- FORM GUIADO --- */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}
select.form-input option {
    background: var(--c-dark);
    color: var(--c-white);
}
@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
}

/* --- LIGHTBOX --- */
.fslb-overlay {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.96);
    z-index: 9000;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    cursor: grab;
}
.fslb-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}
.fslb-overlay.is-dragging {
    cursor: grabbing;
}
.fslb-overlay img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
    will-change: transform;
    transform: translate(-50%, -50%) scale(1);
}
.fslb-btn-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 1.6rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.2s, border-color 0.2s;
}
.fslb-btn-close:hover {
    background: rgba(255,255,255,0.28);
    border-color: rgba(255,255,255,0.4);
}
.fslb-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0);
    font-size: 4rem;
    line-height: 1;
    cursor: pointer;
    padding: 40px 24px;
    transition: color 0.2s;
    z-index: 10;
    user-select: none;
}
.fslb-overlay:hover .fslb-btn { color: rgba(255,255,255,0.45); }
.fslb-btn:hover { color: #fff !important; }
.fslb-btn-prev { left: 0; }
.fslb-btn-next { right: 0; }
.fslb-hint {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.35);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    font-family: var(--font-display);
}

/* =====================================================
   MELHORIAS — robustez, acessibilidade, novos componentes
   ===================================================== */

/* Ícones dos cards de credenciais (substituem imagens hotlinkadas) */
.benefit-icon-fa {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(55, 67, 54, 0.08);
    border: 1px solid rgba(55, 67, 54, 0.25);
    color: var(--c-accent);
    font-size: 1.6rem;
    flex-shrink: 0;
}

/* Wordmarks de clientes (substituem logos hotlinkados de terceiros) */
.partner-wordmark {
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 1.4vw, 1.25rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--c-dark);
    opacity: 0.4;
    transition: opacity 0.3s ease;
}
.partner-logo-box:hover .partner-wordmark { opacity: 0.95; }

/* Grid de vídeos adicionais (portfólio de vídeos) */
.videos-embed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.video-frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.video-embed-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 15px;
    text-align: center;
}

/* O botão hambúrguer agora é um <button> real (acessível por teclado) */
button.menu-toggle {
    background: none;
    border: none;
    padding: 0;
}

/* Foco visível para navegação por teclado */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
.form-input:focus-visible {
    outline: 2px solid var(--c-accent);
    outline-offset: 3px;
    border-radius: 2px;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.35);
}

/* Fallback: se o GSAP não carregar (CDN fora) nada pode ficar invisível */
html.no-motion .word-inner { transform: none; }
html.no-motion .badge-wrapper,
html.no-motion .hero-subtitle,
html.no-motion .hero-actions,
html.no-motion .social-proof { opacity: 1; }

/* Usuários que preferem menos movimento veem tudo estático e visível */
@media (prefers-reduced-motion: reduce) {
    .word-inner { transform: none !important; }
    .badge-wrapper,
    .hero-subtitle,
    .hero-actions,
    .social-proof { opacity: 1 !important; }
    [data-aos] { opacity: 1 !important; transform: none !important; }
    .partners-track { animation: none !important; flex-wrap: wrap; justify-content: center; }
    .img-reveal { filter: none !important; }
    .scroll-icon .scroll-dot { animation: none !important; }
}

/* --- SEÇÃO INSTAGRAM --- */
.section-instagram {
    background-color: var(--c-dark);
    color: var(--c-white);
    padding: 120px 0;
    position: relative;
    z-index: 5;
}

.instagram-header {
    text-align: center;
    margin-bottom: 60px;
}

.instagram-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 15px;
}

.instagram-eyebrow {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.instagram-card {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.instagram-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 18, 18, 0.65), rgba(18, 18, 18, 0) 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.instagram-card .instagram-card-icon {
    position: absolute;
    bottom: 14px;
    left: 16px;
    z-index: 2;
    color: var(--c-white);
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.instagram-card:hover img { transform: scale(1.06); }
.instagram-card:hover::after,
.instagram-card:focus-visible::after { opacity: 1; }
.instagram-card:hover .instagram-card-icon,
.instagram-card:focus-visible .instagram-card-icon {
    opacity: 1;
    transform: translateY(0);
}

.instagram-cta {
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 900px) {
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}
