/* Variaveis padrões */

:root {
    --gradiente-laranja: linear-gradient(to right, #EF7C00, #F13947);
    --gradiente-azul: linear-gradient(to right, #3B85FD, #262681);
    --button-background: #3C86FD; 
    --text-hover-color: #3C86FD;
    --button-hover-background: #2d6cd1;
    --button-text-color: #FFFFFF; /* Nota: Corrigido de FFFFF para o código hexadecimal válido para branco. */
    --background-site: #f8fdfe;
    --background-section: #f6f2fc; /* f5f4f0 - FFFBFB */
    --background-section-azul: #E1E9F4;
    --padding-top: 120px;
    --color-p-padrao: #373739; 
    --opacidade-circulo: 0.3;
 
} 




/* Definição da fonte para Títulos */
@font-face { 
    font-family: 'Random Grotesque Spacious';
    /* Substitua 'RandomGrotesqueSpacious-Regular' pelo nome real do seu arquivo de fonte */
    src: url('../fontes/RandomGrotesqueSpacious-Regular.woff2') format('woff2'),
         url('../fontes/RandomGrotesqueSpacious-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap; 
}


/* Definição da fonte para Parágrafos e Subtítulos (Onest) */
@font-face {
    font-family: 'Onest';
    /* Substitua 'Onest-Light' pelo nome real do seu arquivo de fonte */
    src: url('../fontes/Onest-Light.woff2') format('woff2'),
         url('../fontes/Onest-Light.woff') format('woff');
    font-weight: 300; /* Light */
    font-style: normal;
    font-display: swap; 
}

@font-face {
    font-family: 'Onest';
    /* Substitua 'Onest-Bold' pelo nome real do seu arquivo de fonte */
    src: url('../fontes/Onest-Bold.woff2') format('woff2'),
         url('../fontes/Onest-Bold.woff') format('woff');
    font-weight: 700; /* Bold */
    font-style: normal;
    font-display: swap; 
}


/* Regras de Padrão de Fonte */

body { 
    font-family: 'Onest', sans-serif;
    font-weight: 300; /* Light */
/*     background-color: #EDF5F7; 
 */   /*overflow-x: hidden;  /* Previne scroll horizontal */
    background-color: var(--background-site); 
}

button {
    position: relative; /* Necessário para o posicionamento do pseudo-elemento */
    color: var(--button-text-color);
    background-color: var(--button-background);
    font-size: 16px;
    border: 0;
    padding: 8px 16px;
    border-radius: 45px;
    cursor: pointer;
    overflow: hidden; /* Esconde o que estiver fora dos limites do botão */
    z-index: 1; /* Garante que o conteúdo do botão fique acima do ::before */
}

/* Pseudo-elemento que criará a camada de preenchimento */
button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 45px;
    background-color: var(--button-hover-background);
    transform: translateX(-100%); /* Começa totalmente à esquerda, fora do botão */
    transition: transform 0.3s ease-in-out; /* Animação da propriedade transform */
    z-index: -1; /* Coloca o pseudo-elemento atrás do texto do botão */
}

button:hover::before {
    transform: translateX(0); /* Move o pseudo-elemento para preencher o botão */
}

/* Títulos Principais */
h1, h2 {
    color: #3b3c3d; /* #41414a */ /* 7499ff */
    font-family: 'Random Grotesque Spacious', sans-serif;
    font-size: 58px;
    font-weight: 800;
}

/* Subtítulos */
h3, h4, h5, h6 {
    color: #3b3c3d; /* #41414a */ /* 7499ff */
    font-weight: 700; /* Bold */
    font-size: 32px;
}

/* Parágrafos */
p {
    color: var(--color-p-padrao); /* #41414a */ /* 7499ff */
    line-height: 1.5; /* Adicionado para melhor legibilidade */
    font-size: 18px;
}
 



/* ==========================================================================
   Footer
   ========================================================================== */

.main-footer {
    background-color: #ffffff;
    color: #3f4246;
    padding: 60px 0 0;
    font-size: 15px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-about {
    flex: 1.5;
    min-width: 250px;
} 

.footer-about .logo-area {
    display: inline-flex; /* Mantém o alinhamento do flex, mas se comporta como inline */
    align-items: center;
    margin-bottom: 20px;
    text-decoration: none;
    position: relative; /* Cria o contexto para o pseudo-elemento */
    padding-bottom: 10px; /* Adiciona espaço para o traço */
}

.footer-about .logo-area img {
    max-width: 40px;
    margin-right: 10px;
}

.footer-about .logo-area span {
    color: #3C86FD;
    font-size: 32px;
    margin: 0;
    font-weight: 700;
}

.footer-about p {
    line-height: 1.6;
    max-width: 350px;
}

.footer-links, .footer-contact {
    flex: 1;
    min-width: 180px;
}

.footer-links h4, .footer-contact h4 {
    color: #41414a;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--gradiente-laranja);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
    line-height: 1.5;
} 

.footer-links li a {
    color: #3f4246;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: var(--button-background);
}

.footer-contact p {
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #3f4246;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #3ba2ca;
}

.footer-bottom {
    text-align: center;
    padding: 14px 0;
    background: linear-gradient(to left, #3B85FD, #262681);
}

.footer-bottom p {
    margin: 0;
    color: #FFFFFF;
    font-size: 0.8rem;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* --- Responsividade para o Footer --- */
@media (max-width: 1228px) {
    .footer-content {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .footer-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .footer-content {
        display: flex;
        flex-direction: column;
    }

    .footer-bottom p {
        font-size: 0.6rem;
    }
}


/* ==========================================================================
   Eslilização main
   ========================================================================== */


/* ==========================================================================
   index
   ========================================================================== */
   
main {
    position: relative;
}

#ciruculo-1-azul {
    position: absolute;
    opacity: var(--opacidade-circulo);
    z-index: -1;
    left: -40%;
}

#ciruculo-2-laranja {
    position: absolute;
    opacity: var(--opacidade-circulo);
    z-index: -1;
    top: -24%;
    right: -30%;
}

#ciruculo-3-bege {
    position: absolute;
    opacity: var(--opacidade-circulo);
    z-index: -1;
    top: 25%;
    right: -30%;
}

#ciruculo-4-rosa {
    position: absolute;
    opacity: 0.190;
    z-index: -1;
    top: 45%;
}

/* ==========================================================================
   wholesale
   ========================================================================== */


#ciruculo-1-azul-wholesale {
    position: absolute;
    opacity: var(--opacidade-circulo);
    z-index: -1;
    left: -45%;
}

#ciruculo-2-laranja-wholesale {
    position: absolute;
    opacity: 0.2;
    z-index: -1;
    top: 20%;
    right: -30%;
}

#ciruculo-3-bege-wholesale {
    position: absolute;
    opacity: 0.25;
    z-index: -1;
    top: 45%;
    left: -10%;
}

#ciruculo-4-rosa-wholesale {
    position: absolute;
    opacity: 0.190;
    z-index: -1;
    top: 65%;
    right: -30%;
}

/* ==========================================================================
   White Label
   ========================================================================== */


#ciruculo-1-azul-white-label {
    position: absolute;
    opacity: var(--opacidade-circulo);
    z-index: -1;
    top: 21%;
    right: 0%;
}

#ciruculo-2-laranja-white-label {
    position: absolute;
    opacity: 0.250;
    z-index: -1;
    top: 55%;
    left: -20%;
}


#ciruculo-3-rosa-white-label {
    position: absolute;
    opacity: 0.340;
    z-index: -1;
    top: 50%;
    right: -50%;
}

@media (max-width: 1200px) {
    #ciruculo-3-rosa-white-label {
        top: 50%;
        right: -60%;
    }
}

@media (max-width: 1024px) {
    #ciruculo-3-rosa-white-label {
        top: 50%;
        right: -75%;
    }
}

@media (max-width: 900px) {
    #ciruculo-3-rosa-white-label {
        top: 50%;
        right: -105%;
        opacity: 0.1;
    }

    #ciruculo-2-laranja-white-label {

        top: 70%;
        left: -20%;
    }
}

/* ==========================================================================
   Discador
   ========================================================================== */


#ciruculo-1-azul-discador {
    position: absolute;
    opacity: var(--opacidade-circulo);
    z-index: -1;
    left: -45%;
}

#ciruculo-2-laranja-discador {
    position: absolute;
    opacity: 0.3;
    z-index: -1;
    top: 10%;
    right: -20%;
    scale: 0.3;
}

#triangulo-bege-discador {
    position: absolute;
    opacity: 0.4;
    z-index: -1;
    top: 24%;
    left: 15%;
    scale: 0.5;
    transform: rotate(90deg);
}

/* ==========================================================================
   Ura
   ========================================================================== */


#ciruculo-1-azul-ura {
    position: absolute;
    opacity: var(--opacidade-circulo);
    z-index: -1;
    top: 10%;
    left: 45%;
    scale: 0.6;
}

#ciruculo-2-rosa-ura {
    position: absolute;
    opacity: 0.190;
    z-index: -1;
    top: 65%;
    right: -30%;
}

#ciruculo-3-bege-ura {
    position: absolute;
    opacity: 0.25;
    z-index: -1;
    top: 50%;
    left: -10%;
}

/* ==========================================================================
   PABX
   ========================================================================== */


#ciruculo-1-azul-pabx {
    position: absolute;
    opacity: var(--opacidade-circulo);
    z-index: -1;
    left: -45%;
}

#ciruculo-2-laranja-pabx {
    position: absolute;
    opacity: 0.2;
    z-index: -1;
    top: 20%;
    right: -30%;
}

#ciruculo-3-bege-pabx {
    position: absolute;
    opacity: 0.25;
    z-index: -1;
    top: 60%;
    left: -10%;
}

#ciruculo-4-rosa-pabx {
    position: absolute;
    opacity: 0.190;
    z-index: -1;
    top: 65%;
    right: -20%;
    scale: 0.7;
}

#triangulo-bege-pabx {
    position: absolute;
    opacity: 0.3;
    z-index: -1;
    top: 34%;
    left: 15%;
    scale: 0.6;
    transform: rotate(45deg);
}

/* ==========================================================================
   modulo
   ========================================================================== */


#ciruculo-1-azul-modulo {
    position: absolute;
    opacity: var(--opacidade-circulo);
    z-index: -1;
    left: -45%;
}

#ciruculo-2-bege-modulo {
    position: absolute;
    opacity: 0.3;
    z-index: -1;
    top: 50%;
    left: 10%;
}


#ciruculo-3-rosa-modulo {
    position: absolute;
    opacity: 0.190;
    z-index: -1;
    top: 15%;
    right: -10%;
    scale: 0.3;
}

/* ==========================================================================
   wholesale
   ========================================================================== */


#ciruculo-1-azul-sobre {
    position: absolute;
    opacity: var(--opacidade-circulo);
    z-index: -1;
    left: -45%;
}

#ciruculo-2-laranja-sobre {
    position: absolute;
    opacity: 0.2;
    z-index: -1;
    top: 20%;
    right: -30%;
    scale: 0.6;
}

#ciruculo-3-bege-sobre {
    position: absolute;
    opacity: 0.25;
    z-index: -1;
    top: 45%;
    left: -10%;
}

#ciruculo-4-rosa-sobre {
    position: absolute;
    opacity: 0.190;
    z-index: -1;
    top: 65%;
    right: -30%;
    scale: 0.4;
}

/* ==========================================================================
   produtos
   ========================================================================== */


#ciruculo-1-azul-produtos {
    position: absolute;
    opacity: var(--opacidade-circulo);
    z-index: -1;
    right: 0%;
    max-width: 300px;
}

#ciruculo-2-laranja-produtos {
    position: absolute;
    opacity: 0.2;
    z-index: -1;
    top: 30%;
    right: 20%;
    max-width: 400px;
}

#ciruculo-3-bege-produtos {
    position: absolute;
    opacity: 0.25;
    z-index: -1;
    top: 50%;
    right: -10%;
    max-width: 400px;
}

#ciruculo-4-rosa-produtos{
    position: absolute;
    opacity: 0.190;
    z-index: -1;
    top: 80%;
    left: 0%;
    max-height: 200px;
}

@media (max-width: 900px) {
    #ciruculo-1-azul-produtos {
        max-width: 200px;

    }

    #ciruculo-2-laranja-produtos {
        max-width: 200px;

    }

    #ciruculo-3-bege-produtos {
        max-width: 200px;

    }

    #ciruculo-4-rosa-produtos{
        max-width: 200px;

    }

}


/* ==========================================================================
   Ícone Flutuante do WhatsApp
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 1px 1px 2px #999;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float .bi-whatsapp {
    width: 30px;
    height: 30px;
}


.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 4px 4px 8px #888;
}

@media (max-width:420px ) {
    .whatsapp-float {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float .bi-whatsapp {
    width: 24px;
    height: 24px;
}
}