#home {
    width: 100%;
    padding-top: 100px; /* Compensa o header fixo */
}

.home-hero {
    width: 100%;
    height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8%;
}

.hero-content {
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.25rem;
    color: #ffffff;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

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

.btn-primary {
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #00ffc8;
    color: #61168C;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: fit-content;
}

.btn-primary:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0px 5px 20px rgba(0, 255, 200, 0.4);
}

/* Responsividade */
@media (max-width: 968px) {
    .home-hero {
        height: auto; /* Permite crescer conforme conteúdo no tablet */
        padding-bottom: 40px; /* Deixa uma faixa roxa abaixo da imagem */
    }
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
        align-items: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        margin-top: 60px; /* Garante espaçamento apenas na primeira frase em tablet */
    }

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

    .hero-image img {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .home-hero {
        height: auto; /* Evita que a imagem cubra a próxima seção no mobile */
        padding-bottom: 60px; /* Mais roxo aparente abaixo da imagem no mobile */
    }
    .hero-text h1 {
        font-size: 2rem;
        margin-top: 120px; /* Aumenta o espaçamento no mobile */
    }

    .hero-text p {
        font-size: 1rem;
    }

    .home-hero {
        padding: 0 5%;
    }
}
