* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #cf2e2e;
            --secondary-color: #161616;
            --text-light: rgba(255,255,255,0.6);
            --bg-dark: #0e0e0e;
            --bg-section: #1a1a1a;
            --white: #ffffff;
            --border-color: rgba(255,255,255,0.1);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--white);
            background-color: var(--bg-dark);
            overflow-x: hidden;
            /* Corrige problemas no Safari mobile */
            -webkit-overflow-scrolling: touch;
        }

        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header */
        header {
            background: #0f0f13;
            padding: 10px 0;
            position: fixed;
            top: 0;
            z-index: 1000;
            width: 100%;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-wrapper {
            flex: 0 0 25%;
        }

        .logo {
            max-height: 60px;
            width: auto;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 20px;
            align-items: center;
        }

        .nav-menu a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            padding: 8px 15px;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: var(--primary-color);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--secondary-color);
            border-radius: 8px;
            padding: 10px 0;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu a {
            display: block;
            padding: 10px 20px;
        }

        /* Hero Section - Corrigido para mobile */
        .hero {
            display: flex;
            justify-content: center;
            align-items: center;
            /* Mudança principal: usar min-height com fallback */
            min-height: 100vh;
            min-height: 100svh; /* Safari viewport height */
            position: relative;
            background-color: #16161b;
            background: radial-gradient(ellipse at center, rgba(207, 46, 46, 0.1) 0%, #16161b 70%);
            padding-top: 80px; /* Espaço para o header fixo */
            padding-bottom: 40px; /* Padding inferior para evitar cortes */
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            width: 100%;
            /* position: relative; */
            z-index: 2;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 30px;
            line-height: 1.2;
            background: linear-gradient(135deg, var(--white), var(--primary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: glow 3s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from {
                filter: drop-shadow(0 0 10px rgba(207, 46, 46, 0.3));
            }
            to {
                filter: drop-shadow(0 0 20px rgba(207, 46, 46, 0.6));
            }
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
            margin-bottom: 40px;
        }

        .feature-card {
            background: linear-gradient(135deg, rgba(207, 46, 46, 0.1), rgba(22, 22, 22, 0.8));
            border: 1px solid rgba(207, 46, 46, 0.3);
            border-radius: 12px;
            padding: 15px 20px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(207, 46, 46, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-color);
            box-shadow: 0 10px 30px rgba(207, 46, 46, 0.4);
        }

        .feature-icon {
            font-size: 1.5rem;
            margin-bottom: 10px;
            display: block;
            color: var(--primary-color);
            font-weight: bold;
        }

        .feature-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 5px;
        }

        .feature-description {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.4;
        }

        .btn-content {
            display: flex;
            justify-content: center;
            width: 100%;
        }

        .btn {
            background: linear-gradient(135deg, var(--primary-color), #691b1b);
            color: var(--white);
            padding: 10px 35px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
            font-size: 14px;
            position: relative;
            overflow: hidden;
            animation: pulse 3s ease-in-out infinite;
        }

        .btn::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 ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(207, 46, 46, 0.5);
        }

        .hero-images {
            display: flex;
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50%;
            height: auto;
            z-index: 1;
        }

        .hero-images img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0px);
            }
            50% { 
                transform: translateY(-20px);
            }
        }

        .responsible {
            background: var(--secondary-color);
            padding: 60px 0;
        }

        .responsible-content {
            max-width: 900px;
            margin: 0 auto;
            color: var(--text-light);
            line-height: 1.8;
        }

        .responsible-content p {
            margin-bottom: 20px;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }

        .cta-section {
            text-align: center;
            margin: 0rem 0 1.5rem 0;
            border-radius: 15px;
        }

        .cta-section h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #f76350, var(--primary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .exclusive-highlight {
            background: linear-gradient(135deg, #FFD700, #FFA500, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 2s ease-in-out infinite alternate;
            position: relative;
        }

        @keyframes shimmer {
            0% {
                filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6));
            }
            100% {
                filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.9));
            }
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 4px 15px rgba(207, 46, 46, 0.4);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 6px 25px rgba(207, 46, 46, 0.7);
                transform: scale(1.02);
            }
        }

        .sparkle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 50%;
            animation: sparkle 2s linear infinite;
        }

        @keyframes sparkle {
            0% {
                opacity: 0;
                transform: scale(0);
            }
            50% {
                opacity: 1;
                transform: scale(1);
            }
            100% {
                opacity: 0;
                transform: scale(0);
            }
        }

        .sparkle:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .sparkle:nth-child(2) {
            top: 80%;
            left: 80%;
            animation-delay: 1s;
        }

        .sparkle:nth-child(3) {
            top: 40%;
            left: 90%;
            animation-delay: 2s;
        }

        /* Media Queries - Melhorados para mobile */
        @media (max-width: 920px) {
            .hero h1 {
                width: 600px;
            }

            .hero-images {
                z-index: 1;
                opacity: 0.4;
                width: 45%;
            }
        }

        /* Tablets */
        @media (max-width: 768px) {
            .hero {
                padding-top: 100px;
                padding-bottom: 60px;
            }
            
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
                text-align: center;
                width: 100%;
            }
            
            .hero-images {
                position: relative;
                width: 80%;
                margin: 0 auto;
                opacity: 1;
            }
        }

        /* Mobile pequeno */
        @media (max-width: 500px) {
            .hero {
                /* Ajustes específicos para telas pequenas */
                min-height: 100vh;
                min-height: 100dvh; /* Dynamic viewport height para dispositivos móveis */
                padding-top: 100px;
                padding-bottom: 80px;
                padding-left: 20px;
                padding-right: 20px;
                overflow: hidden;
            }

            .container {
                padding: 0 10px;
            }

            .nav-menu {
                padding-right: 1em;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                align-items: stretch;
            }
            
            .hero h1 {
                font-size: 2.2rem;
                margin-bottom: 25px;
                text-align: center;
                width: 100%;
            }
            
            .hero-images {
                position: absolute;
                width: 100%;
                max-width: 300px;
                opacity: 0.2;
                bottom: -5em;
                right: -8em;
                z-index: 1;
            }
            
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
            }
            
            .dropdown.active .dropdown-menu {
                display: block;
            }

            .features-grid {
                gap: 15px;
                margin-bottom: 30px;
            }

            .feature-card {
                padding: 12px 18px;
            }

            .feature-title {
                font-size: 1rem;
            }

            .feature-description {
                font-size: 0.85rem;
            }

            .cta-section h3 {
                font-size: 1.1rem;
            }

            .btn {
                padding: 12px 30px;
                font-size: 13px;
            }
        }

        /* iPhone SE e dispositivos muito pequenos */
        @media (max-width: 375px) and (max-height: 667px) {
            .hero {
                min-height: 100vh;
                min-height: 100dvh;
                padding-top: 90px;
                padding-bottom: 60px;
            }
            
            .hero h1 {
                font-size: 1.8rem;
                margin-bottom: 20px;
            }
            
            .hero-grid {
                gap: 20px;
            }
            
            .features-grid {
                gap: 10px;
                margin-bottom: 25px;
            }
            
            .feature-card {
                padding: 10px 15px;
            }
            
            .cta-section {
                margin: 0 0 1rem 0;
            }
        }

        /* Landscape em mobile */
        @media (max-height: 500px) and (orientation: landscape) {
            .hero {
                min-height: auto;
                padding-top: 80px;
                padding-bottom: 40px;
            }
            
            .hero-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
                align-items: center;
            }
            
            .hero h1 {
                font-size: 1.8rem;
                margin-bottom: 15px;
            }
            
            .features-grid {
                gap: 8px;
                margin-bottom: 20px;
            }
            
            .hero-images {
                position: relative;
                width: 80%;
                margin: 0;
            }
        }