:root {
            --primary-yellow: #FFC107;
            --dark-yellow: #FFB300;
            --black: #000000;
            --dark-grey: #1a1a1a;
            --white: #FFFFFF;
            --light-grey: #f5f5f5;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        @font-face {
            font-family: 'OpenSansExtraBold';
            src: url('../font/OpenSans-ExtraBold.ttf') format('truetype');
            font-weight: 800; /* ExtraBold normalmente é 800 */
            font-style: normal;
        }

        .cameron-font {
            font-family: 'OpenSansExtraBold', sans-serif !important;
        }

        ::selection {
            background-color: var(--primary-yellow);
            color: var(--black);
        }
        
        body {
            font-family: 'Barlow', sans-serif;
            background: var(--black);
            color: var(--white);
            overflow-x: hidden;
            position: relative;
        }
        
        /* Background Pattern - Diagonal Stripes */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 10px,
                    rgba(255, 193, 7, 0.03) 10px,
                    rgba(255, 193, 7, 0.03) 20px
                );
            pointer-events: none;
            z-index: 0;
        }
        
        .container-custom {
            position: relative;
            z-index: 1;
            max-width: 600px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header/Hero Section */
        .hero-section {
            min-height: 100dvh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 35px 0;
            position: relative;
        }
        
        .logo-wrapper {
            position: relative;
            margin-bottom: 30px;
        }
        
        .logo-circle {
            width: 160px;
            height: 160px;
            background: linear-gradient(135deg, var(--primary-yellow) 0%,#8a6d26  100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            position: relative;
            box-shadow: 
                0 0 0 8px rgba(255, 193, 7, 0.2),
                0 20px 60px rgba(255, 193, 7, 0.4);
            animation: pulse-glow 3s ease-in-out infinite;
        }
        
        @keyframes pulse-glow {
            0%, 100% {
                box-shadow: 
                    0 0 0 8px rgba(255, 193, 7, 0.2),
                    0 20px 60px rgba(255, 193, 7, 0.4);
            }
            50% {
                box-shadow: 
                    0 0 0 8px rgba(255, 193, 7, 0.4),
                    0 20px 80px rgba(255, 193, 7, 0.6);
            }
        }
        
        .logo-circle i {
            font-size: 70px;
            color: var(--black);
        }
        
        .hero-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--white) 0%, var(--primary-yellow) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--primary-yellow);
            font-weight: 600;
            margin-bottom: 10px;
            letter-spacing: 4px;
            text-transform: uppercase;
        }
        
        .hero-description {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 500px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }
        
        /* CTA Buttons */
        .cta-section {
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 100%;
            max-width: 400px;
            margin: 0 auto 50px;
        }
        
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
            color: var(--black);
            border: none;
            padding: 18px 40px;
            font-size: 1.2rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }
        
        .btn-primary-custom:hover::before {
            left: 100%;
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 193, 7, 0.6);
        }
        
        .btn-secondary-custom {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--primary-yellow);
            padding: 16px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-secondary-custom:hover {
            background: var(--primary-yellow);
            color: var(--black);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
        }
        
        /* Services Section */
        .services-section {
            padding: 60px 0;
            background: linear-gradient(180deg, var(--black) 0%, var(--dark-grey) 50%, var(--black) 100%);
        }
        
        .section-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 50px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary-yellow);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .service-card {
            background: rgba(255, 193, 7, 0.1);
            border: 2px solid rgba(255, 193, 7, 0.3);
            border-radius: 20px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .service-card:hover {
            background: rgba(255, 193, 7, 0.2);
            border-color: var(--primary-yellow);
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(255, 193, 7, 0.3);
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--primary-yellow);
            margin-bottom: 15px;
        }
        
        .service-title {
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Features Section */
        .features-section {
            padding: 60px 0;
            background: var(--black);
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
            padding: 25px;
            background: rgba(255, 193, 7, 0.05);
            border-left: 4px solid var(--primary-yellow);
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .feature-item:hover {
            background: rgba(255, 193, 7, 0.1);
            transform: translateX(10px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-yellow);
            min-width: 60px;
        }
        
        .feature-content h3 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 5px;
            text-transform: uppercase;
        }
        
        .feature-content p {
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }
        
        /* Social Links Section */
        .social-section {
            padding: 60px 0;
            background: linear-gradient(180deg, var(--black) 0%, var(--dark-grey) 100%);
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .social-link {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .social-link::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.4s, height 0.4s;
        }
        
        .social-link:hover::before {
            width: 200%;
            height: 200%;
        }
        
        .social-link:hover {
            transform: translateY(-10px) rotate(5deg);
            box-shadow: 0 15px 40px rgba(255, 193, 7, 0.5);
        }
        
        .social-link i {
            font-size: 2rem;
            color: var(--black);
            z-index: 1;
        }
        
        .social-label {
            text-align: center;
            margin-top: 10px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Footer */
        .footer {
            padding: 40px 0;
            text-align: center;
            background: var(--black);
            border-top: 1px solid rgba(255, 193, 7, 0.2);
        }

        .footer p {
            margin: 5px 0;
        }

        .footer p a {
            color: var(--primary-yellow);
        }
        
        .footer-text {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        
        .footer-highlight {
            color: var(--primary-yellow);
            font-weight: 600;
        }
        
        /* Divider */
        .divider {
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
            margin: 40px auto;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
                letter-spacing: 2px;
            }
            
            .logo-circle {
                width: 130px;
                height: 130px;
            }
            
            .logo-circle i {
                font-size: 55px;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .feature-item {
                flex-direction: column;
                text-align: center;
            }
        }
        
        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }