:root{--page-title-display:none;}/* Start custom CSS */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
            background: #0a0a0a;
            color: #e0e0e0;
            line-height: 1.6;
        }

        /* HEADER HERO */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 60px 20px;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center top, rgba(255,165,0,0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .logo {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 10;
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo img {
            height: 70px;
            width: auto;
            object-fit: contain;
            filter: brightness(1);
            transition: filter 0.3s ease;
        }

        .logo:hover img {
            filter: brightness(1.1);
        }

        @media (max-width: 768px) {
            .logo img {
                height: 60px;
            }
        }

        @media (max-width: 480px) {
            .logo img {
                height: 50px;
            }

            .logo {
                top: 15px;
                left: 15px;
            }
        }

        .hero-content {
            max-width: 900px;
            z-index: 5;
            text-align: center;
        }

        /* VIDEO CONTAINER */
        .video-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            margin-bottom: 50px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.8);
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.3);
            z-index: 2;
        }

        .video-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
            position: relative;
            z-index: 1;
        }

        /* COPY */
        .hero-copy {
            margin-bottom: 40px;
        }

        .hero-copy h1 {
            font-size: clamp(28px, 5vw, 48px);
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            color: #ffffff;
        }

        .hero-copy h1 span {
            color: #ffa500;
        }

        .hero-copy p {
            font-size: 16px;
            color: #b0b0b0;
            max-width: 700px;
            margin: 0 auto 30px;
            line-height: 1.8;
        }

        /* CTA BUTTON */
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
            color: #000;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(255,165,0,0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(255,165,0,0.4);
        }

        .cta-button-text {
            display: flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
        }

        /* SOCIAL PROOF SECTION */
        .social-proof {
            background: rgba(255,165,0,0.05);
            border-top: 1px solid rgba(255,165,0,0.1);
            border-bottom: 1px solid rgba(255,165,0,0.1);
            padding: 60px 20px;
            margin-top: 80px;
        }

        .proof-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .proof-label {
            color: #ffa500;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .proof-title {
            font-size: clamp(24px, 4vw, 40px);
            font-weight: 700;
            margin-bottom: 30px;
            color: #ffffff;
        }

        .proof-dividers {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 40px 0;
            flex-wrap: wrap;
        }

        .proof-dividers span {
            width: 200px;
            height: 2px;
            background: linear-gradient(90deg, rgba(255,165,0,0.3) 0%, rgba(255,165,0,0.1) 50%, transparent 100%);
        }

        /* CARROSSEL */
        .carousel-wrapper {
            margin: 50px 0;
            position: relative;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            margin: 0 auto;
            overflow: visible;
        }

        .carousel-slides-wrapper {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .carousel-slide {
            flex: 0 0 calc(33.333% - 14px);
            aspect-ratio: 3 / 4;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            transition: transform 0.3s ease, opacity 0.3s ease;
            opacity: 0.5;
        }

        .carousel-slide.active {
            opacity: 1;
            transform: scale(1.05);
        }

        .carousel-slide.active-prev,
        .carousel-slide.active-next {
            opacity: 0.8;
        }

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

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,165,0,0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #ffa500;
            transform: scale(1.2);
        }

        .dot:hover {
            background: rgba(255,165,0,0.6);
        }

        @media (max-width: 768px) {
            .carousel-slide {
                flex: 0 0 calc(50% - 10px);
            }
        }

        /* MOBILE: mostra somente o slide ativo, sem espaço vazio dos slides ocultos */
        @media (max-width: 480px) {
            .carousel-slides-wrapper {
                gap: 0;
            }

            .carousel-slide {
                display: none;
                flex: 0 0 100%;
                width: 100%;
                aspect-ratio: 3 / 4;
                opacity: 1;
            }

            .carousel-slide.active {
                display: block;
                transform: none;
            }

            .carousel-slide.active-next,
            .carousel-slide.active-prev {
                display: none;
            }
        }

        .proof-cta {
            margin-top: 40px;
        }

        /* FEATURES SECTION */
        .features {
            padding: 80px 20px;
            background: linear-gradient(180deg, #0a0a0a 0%, rgba(255,165,0,0.02) 100%);
        }

        .features-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .features-title {
            font-size: clamp(24px, 4vw, 40px);
            font-weight: 700;
            margin-bottom: 40px;
            color: #ffffff;
        }

        .features-title span {
            color: #ffa500;
        }

        .feature-item {
            padding: 30px;
            background: rgba(255,165,0,0.03);
            border: 1px solid rgba(255,165,0,0.1);
            border-radius: 8px;
            margin-bottom: 20px;
            text-align: left;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: rgba(255,165,0,0.08);
            border-color: rgba(255,165,0,0.3);
        }

        .feature-icon {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #ffa500;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .feature-item h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .feature-item p {
            font-size: 14px;
            color: #a0a0a0;
            line-height: 1.6;
        }

        /* FOOTER CTA */
        .footer-cta {
            padding: 80px 20px;
            text-align: center;
            background: rgba(255,165,0,0.05);
            border-top: 1px solid rgba(255,165,0,0.1);
        }

        .footer-cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .footer-cta h2 {
            font-size: clamp(28px, 5vw, 44px);
            font-weight: 700;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .footer-cta p {
            font-size: 16px;
            color: #b0b0b0;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        /* MOBILE RESPONSIVIDADE */
        @media (max-width: 768px) {
            .hero {
                padding: 40px 20px;
            }

            .logo {
                top: 20px;
                left: 20px;
                font-size: 16px;
            }

            .proof-dividers {
                flex-direction: column;
                gap: 15px;
            }

            .proof-dividers span {
                width: 100%;
            }

            .feature-item {
                padding: 20px;
            }
        }

        /* ANIMATIONS */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content {
            animation: fadeInUp 0.8s ease-out;
        }

        .video-wrapper {
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .hero-copy {
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .cta-button {
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }
.elementor-widget-pfx-html-section{margin:0!important;width:100%;}.elementor-widget-pfx-html-section>.elementor-widget-container{margin:0!important;padding:0!important;}/* End custom CSS */