/* Estilo do botão flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 50px; /* Distância do rodapé */
    right: 20px; /* Distância da lateral direita */
    z-index: 1000; /* Garante que fique acima de outros elementos */
    width: 60px; /* Largura do ícone */
    height: 60px; /* Altura do ícone */
    background-color: #25d366; /* Cor de fundo (WhatsApp verde) */
    border-radius: 50%; /* Deixa o botão circular */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Sombra leve */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
    width: 35px; /* Tamanho do ícone */
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1); /* Aumenta o botão ao passar o mouse */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3); /* Intensifica a sombra */
}



/* Hero Section */
.hero-section {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background: linear-gradient(to right, rgb(0, 47, 90), rgb(0, 132, 255));
    color: #fff;
    height: 100vh;
    box-sizing: border-box;
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin: 0;
    color: #fff;
}

.hero-content h1 span {
    color: #00d9ff; /* Destaque */
}

.hero-content p {
    margin: 20px 0;
    font-size: 1.2rem;
    line-height: 1.5;
}

.hero-buttons {
    margin-top: 20px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.btn-primary {
    background-color: #00d9ff;
    color: #1e1e2f;
}

.btn-primary:hover {
    background-color: #007a99;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #00d9ff;
}

.btn-secondary:hover {
    background-color: #00d9ff;
    color: #1e1e2f;
}

/* Hero Image */
.hero-image img {
    max-width: 40%;
    height: auto;
    border-radius: 20px;
    margin-left: 50vh;

    /* Animação */
    animation: tech-glow 3s infinite alternate, float 6s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
    transition: transform 0.3s ease-in-out;
}

/* Animação de brilho */
@keyframes tech-glow {
    0% {
        box-shadow: 0 0 10px rgba(0, 255, 255, 0.6), 0 0 30px rgba(0, 255, 255, 0.4);
    }
    100% {
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.8), 0 0 60px rgba(0, 255, 255, 0.6);
    }
}

/* Animação de flutuação */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Efeito ao passar o mouse */
.hero-image img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 255, 255, 1), 0 0 60px rgba(0, 255, 255, 0.9);
}


@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
        font-weight: bold;
        margin: 0;
        color: #fff;
    }
    
    .hero-content h1 span {
        color: #00d9ff; /* Destaque */
    }
    /* Hero Image */
    .hero-image img {
        max-width: 90%;
        height: auto;
        border-radius: 20px;
        margin-left: 20%;
    }
    .hero-content {
        margin-bottom: 50%;
        max-width: 60%;
    }

}
