 /* Hero Section */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 80px;
        background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(15, 27, 46, 0.5) 100%);
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
    }

    .hero-content {
        position: relative;
        z-index: 10;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .hero-text h1 {
        font-size: 3.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-text p {
        font-size: 1.1rem;
        color: var(--text-muted);
        margin-bottom: 2rem;
        line-height: 1.8;
    }

    .hero-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .btn {
        padding: 1rem 2rem;
        border-radius: 8px;
        font-weight: bold;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        display: inline-block;
        text-decoration: none;
        text-align: center;
    }

    .btn-primary {
        background: var(--primary);
        color: var(--dark-bg);
    }

    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(0, 212, 255, 0.3);
    }

    .btn-secondary {
        border: 2px solid var(--primary);
        color: var(--primary);
        background: transparent;
    }

    .btn-secondary:hover {
        background: rgba(0, 212, 255, 0.1);
    }

    .hero-image {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-triangle {
        width: 300px;
        height: 300px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
        animation: pulse 3s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }

    .stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }

    .stat {
        text-align: center;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: bold;
        color: var(--primary);
        font-family: 'Orbitron', sans-serif;
    }

    .stat-label {
        color: var(--text-muted);
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }

    /* Services Section */
    .services {
        padding: 6rem 0;
        background: var(--dark-card);
    }

    .section-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 1rem;
        font-family: 'Orbitron', sans-serif;
    }

    .section-title span {
        color: var(--primary);
    }

    .section-subtitle {
        text-align: center;
        color: var(--text-muted);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto 3rem;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .service-card {
        background: rgba(0, 212, 255, 0.05);
        border: 1px solid rgba(0, 212, 255, 0.2);
        padding: 2rem;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .service-card:hover {
        border-color: var(--primary);
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0, 212, 255, 0.15);
    }

    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: var(--text-light);
    }

    .service-card p {
        color: var(--text-muted);
        line-height: 1.8;
    }

    /* Crescere Section */
    .crescere-section {
        padding: 6rem 0;
        background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(15, 27, 46, 0.5) 100%);
    }

    .crescere-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .crescere-text h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .crescere-text p {
        color: var(--text-muted);
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }

    .crescere-image {
        background: rgba(0, 212, 255, 0.1);
        border-radius: 12px;
        padding: 2rem;
        text-align: center;
        min-height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(0, 212, 255, 0.2);
    }

    .crescere-image img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }

    /* Why Choose */
    .why-choose {
        padding: 6rem 0;
        background: var(--dark-card);
    }

    .why-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .why-card {
        background: rgba(0, 212, 255, 0.05);
        border: 1px solid rgba(0, 212, 255, 0.2);
        padding: 2rem;
        border-radius: 12px;
        text-align: center;
    }

    .why-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: var(--primary);
    }

    .why-card p {
        color: var(--text-muted);
        line-height: 1.8;
    }

    /* CTA Section */
    .cta-section {
        padding: 6rem 0;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        text-align: center;
    }

    .cta-section h2 {
        font-size: 2.5rem;
        color: var(--dark-bg);
        margin-bottom: 1rem;
    }

    .cta-section p {
        color: rgba(5, 10, 16, 0.8);
        font-size: 1.1rem;
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-section .btn {
        background: var(--dark-bg);
        color: var(--primary);
    }

    .cta-section .btn:hover {
        background: rgba(5, 10, 16, 0.8);
    }

    .logo-container {
        margin-bottom: 30px;
        position: relative;
        display: inline-block;
    }

    .logo-img {
        width: 100%;
        max-width: 560px; /* Tamanho em desktop */
        height: auto;
        filter: drop-shadow(0 0 15px var(--accent-glow));
        animation: float 4s ease-in-out infinite;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .hero-text h1 {
            font-size: 2rem;
        }

        .hero-triangle {
            width: 200px;
            height: 200px;
        }

        .stats {
            grid-template-columns: 1fr;
        }

        .section-title {
            font-size: 1.8rem;
        }

        .crescere-content {
            grid-template-columns: 1fr;
        }

        .cta-section h2 {
            font-size: 1.8rem;
        }

        .logo-img {
            max-width: 280px; /* Reduz a logo da Initium pela metade em dispositivos móveis */
        }
    }
    

    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 80px;
        background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(15, 27, 46, 0.5) 100%);
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
    }

    .hero-content {
        position: relative;
        z-index: 10;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-text p {
        font-size: 1.1rem;
        color: var(--text-muted);
        margin-bottom: 2rem;
        line-height: 1.8;
    }

    .hero-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 2rem;
    }

    .btn {
        padding: 1rem 2rem;
        border-radius: 8px;
        font-weight: bold;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        display: inline-block;
        text-decoration: none;
        font-family: 'Rajdhani', sans-serif;
        font-size: 1rem;
    }

    .btn-primary {
        background: var(--primary);
        color: var(--dark-bg);
    }

    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(0, 212, 255, 0.3);
    }

    .btn-secondary {
        border: 2px solid var(--primary);
        color: var(--primary);
        background: transparent;
    }

    .btn-secondary:hover {
        background: rgba(0, 212, 255, 0.1);
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .stat {
        text-align: center;
    }

    .stat-number {
        font-size: 2rem;
        font-weight: bold;
        color: var(--primary);
        font-family: 'Orbitron', sans-serif;
    }

    .stat-label {
        color: var(--text-muted);
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }

    /* Phone Mockup */
    .phone-mockup {
        perspective: 1000px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .phone-container {
        position: relative;
        width: 280px;
        height: 580px;
        background: #000;
        border-radius: 40px;
        padding: 12px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
        transform: rotateY(-15deg) rotateX(5deg);
    }

    .phone-screen {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #0F3215 0%, #051408 100%);
        border-radius: 35px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .phone-notch {
        height: 0px;
        background: #000;
        border-radius: 0 0 20px 20px;
        margin: 0 auto;
        width: 150px;
        z-index: 10;
    }

    .phone-content {
        flex: 1;
        overflow-y: auto;
        padding: 20px;
        display: flex;
        flex-direction: column;
    }

    .phone-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    .phone-title {
        font-size: 20px;
        font-weight: bold;
        color: var(--gold-main);
        font-family: 'Orbitron', sans-serif;
    }

    .phone-icon {
        width: 24px;
        height: 24px;
        background: rgba(242, 201, 76, 0.2);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
    }

    .phone-welcome {
        margin-bottom: 20px;
    }

    .phone-welcome-title {
        color: var(--text-light);
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 4px;
    }

    .phone-welcome-subtitle {
        color: var(--text-muted);
        font-size: 12px;
    }

    .phone-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(242, 201, 76, 0.2);
        border-radius: 12px;
        padding: 15px;
        margin-bottom: 12px;
    }

    .phone-card-title {
        color: var(--text-light);
        font-size: 12px;
        font-weight: bold;
        margin-bottom: 8px;
    }

    .phone-metric {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
    }

    .phone-metric-label {
        color: var(--text-muted);
        font-size: 11px;
    }

    .phone-metric-value {
        color: var(--gold-main);
        font-size: 14px;
        font-weight: bold;
    }

    .phone-bottom {
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding-top: 12px;
        border-top: 1px solid rgba(242, 201, 76, 0.2);
        margin-top: auto;
    }

    .phone-nav-item {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: var(--text-muted);
    }

    .phone-nav-item.active {
        color: var(--gold-main);
    }

    /* Features Section */
    .features {
        padding: 5rem 2rem;
        background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(15, 27, 46, 0.3) 100%);
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1280px;
        margin: 0 auto;
    }

    .feature-card {
        background: rgba(0, 212, 255, 0.05);
        border: 1px solid rgba(0, 212, 255, 0.2);
        padding: 2rem;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .feature-card:hover {
        border-color: var(--primary);
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0, 212, 255, 0.15);
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        color: var(--text-light);
        margin-bottom: 1rem;
    }

    .feature-card p {
        color: var(--text-muted);
        line-height: 1.8;
    }

    .section-title {
        text-align: center;
        font-size: 2.2rem;
        margin-bottom: 1rem;
        color: var(--text-light);
        font-family: 'Orbitron', sans-serif;
    }

    .section-title span {
        color: var(--primary);
    }

    .section-subtitle {
        text-align: center;
        color: var(--text-muted);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto 3rem;
    }

    .cta {
        padding: 5rem 2rem;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        text-align: center;
    }

    .cta h2 {
        font-size: 2.5rem;
        color: var(--dark-bg);
        margin-bottom: 1rem;
    }

    .cta p {
        color: rgba(5, 20, 16, 0.8);
        font-size: 1.1rem;
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta .btn {
        background: var(--dark-bg);
        color: var(--primary);
    }

    .cta .btn:hover {
        background: var(--dark-card);
    }

    @media (max-width: 768px) {
        .hero-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .hero-text h1 {
            font-size: 2rem;
        }

        .hero-stats {
            grid-template-columns: 1fr;
        }

        .phone-container {
            transform: rotateY(0) rotateX(0);
            width: 240px;
            height: 480px;
        }

        .cta h2 {
            font-size: 1.8rem;
        }
    }
