/* Estilos gerais (adicione se não tiver) */
body {
    margin: 0;
    font-family: sans-serif; /* Exemplo de fonte */
}

a {
    text-decoration: none; /* Remove sublinhado de links */
}

/* Estilos da seção Laucher */
.laucher-section {
    background: linear-gradient(135deg, #000000, #1a0d3a);
    padding: 100px 20px; /* Padding vertical ligeiramente reduzido se desejar */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.laucher-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(101, 45, 245, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(245, 166, 35, 0.15) 0%, transparent 40%);
    z-index: 0;
}

.laucher-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    /* Adicionado para alinhar itens em coluna com flexbox (alternativa) */
    /* display: flex; */
    /* flex-direction: column; */
    /* align-items: center; */
}

.laucher-title {
    font-size: 3.5rem;
    color: #ffffff;
    /* ALTERAÇÃO: Reduzido o margin-bottom para diminuir o espaço abaixo do título */
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    /* Necessário para remover margem padrão do h1 se usar flexbox no container */
    /* margin-top: 0; */
}

.laucher-title span {
    color: #f5a623;
    position: relative;
}

.laucher-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f5a623, transparent);
}

.launcher-logo {
    display: block; /* Para que a imagem ocupe sua própria linha */
    /* ALTERAÇÃO: Ajustado margin-top e margin-bottom para reequilibrar o espaço */
    margin-top: 20px;
    margin-bottom: 30px;
    margin-left: auto; /* Para centralizar a imagem se for 'block' */
    margin-right: auto; /* Para centralizar a imagem se for 'block' */
    /* ALTERAÇÃO: Aumentado o max-width para tornar a imagem maior */
    max-width: 450px; /* Ajuste este valor conforme necessário */
    height: auto; /* Mantém a proporção da imagem */
    /* Se usar flexbox no container, as margens auto não são necessárias para centralizar */
    /* margin-left: 0; */
    /* margin-right: 0; */
}

.laucher-button {
    background: linear-gradient(145deg, #f5a623, #e6951a);
    color: #000;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
    position: relative;
    overflow: hidden;
}

.laucher-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.laucher-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
}

.laucher-button:hover::before {
    left: 100%;
}

.button-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.laucher-button:hover .button-icon {
    transform: translateX(5px);
}

/* Responsividade */
@media (max-width: 768px) {
    .laucher-title {
        font-size: 2.5rem;
        margin-bottom: 30px; /* Ajuste responsivo */
    }

    .launcher-logo {
        max-width: 380px; /* Ajuste responsivo */
        margin-top: 15px; /* Ajuste responsivo */
        margin-bottom: 25px; /* Ajuste responsivo */
    }

    .laucher-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .laucher-title {
        font-size: 2rem;
        margin-bottom: 20px; /* Ajuste responsivo */
    }

     .laucher-section {
        padding: 80px 20px; /* Ajuste responsivo */
    }

    .launcher-logo {
        max-width: 300px; /* Ajuste responsivo */
        margin-bottom: 20px; /* Ajuste responsivo */
    }
}