﻿:root {
    --verde-okemo: #45a745;
    --verde-claro: #f7fff8;
}

.pagina-site .hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem 2rem;
    position: relative;
    background: #fff;
}

.pagina-site #particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.pagina-site .hero-content {
    z-index: 2;
    max-width: 600px;
}

    .pagina-site .hero-content h1 {
        font-family: 'Orbitron', sans-serif;
        font-size: 2.8rem;
        font-weight: bold;
        color: var(--verde-okemo);
    }

    .pagina-site .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

.pagina-site .btn-success {
    background-color: var(--verde-okemo);
    border: none;
}

    .pagina-site .btn-success:hover {
        background-color: #369136;
    }

.pagina-site .card-unidades {
    background-color: var(--verde-claro);
    border: none;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

    .pagina-site .card-unidades:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    }

.pagina-site .start-here-section .redes-sociais{
    background: none;
}



.pagina-site .start-here-section {
    padding: 5rem 1rem;
    text-align: center;
}

.pagina-site .redes-sociais {
    color: rgb(0, 0, 0);
}

    .pagina-site .redes-sociais a:hover {
        transform: scale(1.05);
        transition: transform 0.3s ease;
    }

    .pagina-site .redes-sociais a {
        color: #000;
        text-decoration: none;
        font-weight: bold;
    }

.pagina-site .lottie-container {
    z-index: 2;
    max-width: 600px;
}

@media (max-width: 768px) {
    .pagina-site .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 4rem;
    }

    .pagina-site .lottie-container {
        margin-top: 2rem;
    }
}

.btn-suporte-flutuante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    background: #45a745;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
    transition: width 0.4s ease, padding 0.4s ease;
    padding: 0 15px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(69, 167, 69, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(69, 167, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(69, 167, 69, 0);
    }
}

/* texto escondido inicialmente */
.btn-suporte-flutuante .btn-texto {
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-width 0.3s ease;
    font-size: 14px;
    font-weight: bold;
    color: blue;
    text-decoration: none;
}

.btn-suporte-flutuante:hover {
    border-color: green;
    background-color: white;
    text-decoration: none;
    width: 220px;
    justify-content: flex-start;
    padding: 0 20px;
}

    .btn-suporte-flutuante:hover .btn-texto {
        opacity: 1;
        max-width: 200px;
    }

html {
    scroll-behavior: smooth;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.pagina-site {
    position: relative;
    z-index: 1; /* conteúdo acima das partículas */
}

.cabecalho {
    text-align: center !important;
    background-color: white; 
}

.fundo-unico {
    background: white;
    background-size: 400% 400%, cover;
    background-attachment: fixed;
    animation: gradienteAnimado 10s ease infinite;
}

@keyframes gradienteAnimado {
    0% {
        background-position: 0% 50%, center;
    }

    50% {
        background-position: 100% 50%, center;
    }

    100% {
        background-position: 0% 50%, center;
    }
}
