    /* Reset e Base Styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        line-height: 1.6;
        color: #ffffff;
        background: #000;
        overflow-x: hidden;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    /* Navigation */
    .nav {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        transition: all 0.3s ease;
    }

    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 800;
        font-size: 1.2rem;
        color: #dc2626;
    }

    .logo-img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }

    .nav-links {
        display: flex;
        gap: 2rem;
        align-items: center;
    }

    .nav-link {
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
    }

    .nav-link:hover {
        color: #dc2626;
    }

    .cta-nav {
        background: #dc2626;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .cta-nav:hover {
        background: #b91c1c;
        color: #ffffff;
    }

    .mobile-menu {
        display: none;
        flex-direction: column;
        cursor: pointer;
    }

    .mobile-menu span {
        width: 25px;
        height: 3px;
        background: #ffffff;
        margin: 3px 0;
        transition: 0.3s;
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

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

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(220, 38, 38, 0.1) 50%,
            rgba(0, 0, 0, 0.9) 100%
        );
        z-index: 1;
    }

    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(20%);
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .hero-text {
        max-width: 600px;
    }

    .hero-title {
        text-align: left;
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-title1 {
        font-size: 3rem;
        font-weight: 800;
        text-align: left;
        margin-bottom: 2rem;
        color: #dc2626;
    }

    .highlight {
        color: #dc2626;
        text-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
    }

    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        font-weight: 300;
    }

    .hero-cta {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .btn-primary {
        background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
        color: white;
        padding: 1rem 2rem;
        border: none;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
    }

    .btn-secondary {
        background: transparent;
        color: white;
        padding: 1rem 2rem;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
        border-color: #dc2626;
        background: rgba(220, 38, 38, 0.1);
    }

    .scroll-indicator {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        animation: bounce 2s infinite;
    }

    .scroll-arrow {
        width: 30px;
        height: 30px;
        border-right: 2px solid #dc2626;
        border-bottom: 2px solid #dc2626;
        transform: rotate(45deg);
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateX(-50%) translateY(0);
        }
        40% {
            transform: translateX(-50%) translateY(-10px);
        }
        60% {
            transform: translateX(-50%) translateY(-5px);
        }
    }

    /* About Section */
    .about {
        padding: 6rem 0;
        background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .section-title {
        font-size: 3rem;
        font-weight: 800;
        text-align: center;
        margin-bottom: 2rem;
        color: #dc2626;
    }

    .about-name {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 2rem;
        color: #ffffff;
    }

    .about-description p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.7;
        opacity: 0.9;
    }

    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    /* Products Section */
    .products {
        padding: 6rem 0;
        background: #000;
    }

    .section-subtitle {
        font-size: 1.25rem;
        text-align: center;
        margin-bottom: 4rem;
        opacity: 0.8;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .product-card {
        background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
        border-radius: 20px;
        padding: 2rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
        z-index: -1;
    }

    .product-card:hover {
        transform: translateY(-5px);
        border-color: rgba(220, 38, 38, 0.3);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }

    .product-card.premium {
        background: linear-gradient(135deg, #1a1a1a 0%, #2a1a1a 100%);
        border-color: rgba(220, 38, 38, 0.3);
    }

    .product-card.featured {
        background: linear-gradient(135deg, #2a1f0a 0%, #1a1a1a 100%);
        border-color: rgba(255, 215, 0, 0.3);
        position: relative;
    }

    .featured-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
        color: #000;
        padding: 0.25rem 0.75rem;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 700;
        z-index: 10;
    }

    .product-header {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1.5rem;
        height: 150px; 
    }

    .product-header img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        border-radius: 12px;
    }

    .product-icon {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .product-icon img {
        width: 230px;
        height: auto;
    }

    .product-content {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .product-content h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: #ffffff;
    }

    .product-subtitle {
        color: #dc2626;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .product-content p {
        margin-bottom: 1.5rem;
        line-height: 1.6;
        opacity: 0.9;
        flex-grow: 1; /* Faz com que o parágrafo ocupe o espaço restante */
    }

    .product-btn {
        background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
        color: white;
        padding: 0.75rem 1.5rem;
        border: none;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-block;
        text-align: center;
    }

    .product-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
    }

    .product-btn.gold {
        background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
        color: #000;
    }

    .product-btn.gold:hover {
        box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    }

    /* YouTube Section */
    .youtube {
        padding: 6rem 0;
        background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    }

    .youtube-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .youtube-text .section-title {
        text-align: left;
        margin-bottom: 1rem;
    }

    .youtube-text p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

    .btn-youtube {
        background: #dc2626;
        color: white;
        padding: 1rem 2rem;
        border: none;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .btn-youtube:hover {
        background: #b91c1c;
        transform: translateY(-2px);
    }

    .youtube-preview {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .youtube-preview:hover {
        transform: scale(1.02);
    }

    .youtube-preview img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.3s ease;
    }

    .youtube-preview:hover .play-button {
        transform: translate(-50%, -50%) scale(1.1);
    }

    /* Partnerships Section */
    .partnerships {
        padding: 6rem 0;
        background: #000;
    }

    .partnership-card {
        background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
        border-radius: 20px;
        padding: 3rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 3rem;
    }

    .partnership-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .partnership-logo img {
        height: 60px;
        margin-bottom: 2rem;
    }

    .partnership-text p {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .coupon-code {
        background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
        color: white;
        padding: 1rem 2rem;
        border-radius: 12px;
        font-size: 2rem;
        font-weight: 800;
        text-align: center;
        margin: 1.5rem 0;
        letter-spacing: 2px;
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    }

    .partnership-btn {
        background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
        color: white;
        padding: 1rem 2rem;
        border: none;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .partnership-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
    }

    .partnership-image img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 12px;
    }

    /* Podcasts Section */
    .podcasts {
        padding: 6rem 0;
        background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    }

    .podcasts-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .podcast-card {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        transition: transform 0.3s ease;
        cursor: pointer;
    }

    .podcast-card:hover {
        transform: scale(1.05);
    }

    .podcast-card img {
        width: 331px;
        height: 132px;
        object-fit: cover;
    }

    .podcast-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        text-decoration: none;
    }

    .podcast-card:hover .podcast-overlay {
        opacity: 1;
    }

    .play-icon {
        width: 60px;
        height: 60px;
        background: rgba(220, 38, 38, 0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
    }

    .podcast-contact {
        text-align: center;
        margin-top: 4rem;
        padding-top: 3rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .podcast-contact p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .whatsapp-btn {
        background: #25d366;
        color: white;
        padding: 1rem 2rem;
        border: none;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .whatsapp-btn:hover {
        background: #128c7e;
        transform: translateY(-2px);
    }

    /* Footer */
    .footer {
        padding: 3rem 0;
        background: #000;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 800;
        font-size: 1.2rem;
        color: #dc2626;
    }

    .footer-logo img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }

    .footer-text {
        text-align: right;
    }

    .footer-text p {
        opacity: 0.7;
        margin-bottom: 0.25rem;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

        .mobile-menu {
            display: flex;
        }

        .hero-content {
            grid-template-columns: 1fr;
            text-align: center;
            padding: 2rem 1rem;
        }

        .hero-title {
            font-size: 2.5rem;
        }

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

        .about-content,
        .youtube-content,
        .partnership-content {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .section-title {
            font-size: 2rem;
            text-align: center;
        }

        .products-grid {
            grid-template-columns: 1fr;
        }

        .podcasts-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }

        .footer-content {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }

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

    @media (max-width: 480px) {
        .container {
            padding: 0 1rem;
        }

        .hero-title {
            font-size: 2rem;
        }

        .hero-subtitle {
            font-size: 1rem;
        }

        .btn-primary,
        .btn-secondary {
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
        }

        .product-card {
            padding: 1.5rem;
        }

        .partnership-card {
            padding: 2rem;
        }
    }