@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
/*importacão arquivos css para ficar mais organizado*/


:root {
    --bg-color: #fff;
    --snd-bg-color: #343434;
    --text-color: #000000;
    --text-color2: #fff;
    --main-color: #ff0026;
    --acept-color: #07cf00;
    --decline-color: #fa0202;
    --color-neutral-0: #0e0c0c;
    --color-neutral-10: #171717;
    --color-neutral-30: #a8a29e;
    --color-neutral-40: #f5f5f5;
    --preto: #000000;
    --azul: #1852a5;
    --branco: #ffffff;
    --laranja: #f05423;
    --cinza_escuro: #31313c;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    font-size: 65.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
}

section {
    min-height: 100vh;
    padding: 10rem 9% 2rem;
}

/*footer {
    padding: 10rem 9% 2rem;
}*/

#footer_content {
    padding: 10rem 9% 2rem
}

span {
    color: var(--azul);
}

.backgroud-black {
    color: var(--text-color2);
}

.btn {
    margin-top: 2rem;
    display: inline-block;
    padding: 1rem 2.8rem;
    background: var(--azul);
    border-radius: 4rem;
    font-size: 1.6rem;
    color: var(--bg-color);
    letter-spacing: .1rem;
    font-weight: 600;
    transition: .5s ease;
    border: none;
    text-decoration: none;
}

.btn:hover {
    box-shadow: none;
    background: var(--laranja);
    transform: scale(1.05);
}

/* Estilo do container do dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}


/* Garante que não haja gap */
.dropdown a,
.dropdown-content a {
    margin: 0 !important;
    padding-top: 10px !important; /* Ajuste fino se necessário */
    padding-bottom: 10px !important;
}
/* Estilo do link principal */
.dropdown-toggle {
    text-decoration: none;
    color: #4CAF50;
    font-size: 18px;
    cursor: pointer;
}

    .dropdown-toggle:hover {
        color: #45a049;
    }

/* Oculta o conteúdo do dropdown por padrão */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: auto; /* Ajusta a largura ao conteúdo */
    border-radius: 5px;
    z-index: 1;
    white-space: nowrap; /* Impede quebra de linha */
    left: 0; /* Alinha ao início do elemento pai */
}

/* Exibe o dropdown ao passar o mouse */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Estilo dos links dentro do dropdown */
.dropdown-content a {
    padding: 10px 10px;
    display: block;
    text-decoration: none;
    color: #333;
    left: 0; /* Alinha ao início do elemento pai */
}

    .dropdown-content a:hover {
        background-color: #f0f0f0;
    }

#menu_contato {
    padding-right: 30px;
}


/* Estilo do container do dropdown */

/*css home*/
.home {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-content h3 {
    font-size: 3.2rem;
    font-weight: 700;
}

    .home-content h3:nth-of-type(2) {
        margin-bottom: 2rem;
    }


.home-content h1 {
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.home-content p {
    font-size: 2rem;
    margin: 2rem 0 3rem;
    font-weight: 600;
    text-indent: 10px;
    text-align: justify;
}

@media (max-width: 768px) {
    .home-content #p-rede-social-home {
        text-align: center;
    }
}
/*css home*/
/*css header*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    background: var(--bg-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
    box-shadow: 5px 1px 5px rgba(0,0,0,0.1);
}

.logo {
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 700;
    cursor: default;
    text-decoration: none;
}
    .logo img {
        max-width: 250px; /* Ajuste o tamanho conforme necessário */
        height: auto; /* Mantém a proporção da imagem */
    }

.logo_footer img {
    max-width: 300px; /* Ajuste o tamanho conforme necessário */
    height: auto; /* Mantém a proporção da imagem */
    padding: 1rem;
}


.navbar a {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-left: 4rem;
    font-weight: 800;
    text-decoration: none;
}

.navbar a:hover,
.navbar a.active {
    color: var(--azul);
}

#menu_icon {
    font-size: 3.6rem;
    color: var(--text-color);
    display: none;
}
/*css header*/

/*css service*/
.icon-img {
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem auto;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--snd-bg-color);
    box-shadow: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

    .icon-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.services h2 {
    margin-bottom: 5rem;
}


.services-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}


.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
}

    .services-container .services-box {
        width: auto;
        height: 450px;
        flex: 1 1 30rem;
        flex: 1 1 30rem;
        background: var(--laranja);
        padding: 3rem 2rem 4rem;
        border-radius: 2rem;
        text-align: center;
        border: .4rem solid var(--azul);
        transition: .5s ease;
        display: flex;
        flex-direction: column;
        /* Gradiente sombra na parte de baixo */

        background-repeat: no-repeat;
        background-repeat: no-repeat;
        background-size: cover; /* opcional */
    }

        .services-container .services-box:hover {
            border-color: var(--laranja);
            cursor: pointer;
            transform: scale(1.05);
        }

.services-box a {
    text-decoration: none;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.services-box i {
    font-size: 7rem;
    color: var(--text-color2);
}

.services-box h3 {
    font-size: 2.6rem;
    color: var(--text-color2);
    margin-top: auto;

    /*background-color: rgba(0, 0, 0, 0.6);*/ /* preto com 60% de opacidade */
    /*padding: 1rem;
    border-radius: 1rem;
    text-align: center;*/
}

.services-box p {
    font-size: 1.6rem;
    margin: 1rem 0 3rem;
    color: var(--text-color2);
    font-weight: 700;
}

.services-container .bg-produtor {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, /* sem sombra nos 50% superiores */
    rgba(0, 0, 0, 0.7) 90%, /* sombra escurecendo forte */
    rgba(0, 0, 0, 0.85) 100%) /* ainda mais forte na base */, url('../../src/img/services_menu/produtor_rural.jpg') center/cover no-repeat;
    border: .4rem solid var(--azul);
    transition: .5s ease;
}

    .services-container .bg-produtor:hover {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../../src/img/services_menu/produtor_rural.jpg') center/cover no-repeat;
        border-color: var(--laranja);       
    }

.services-container .bg-transporte {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, /* sem sombra nos 50% superiores */
    rgba(0, 0, 0, 0.7) 90%, /* sombra escurecendo forte */
    rgba(0, 0, 0, 0.85) 100%) /* ainda mais forte na base */, url('../../src/img/services_menu/transportadora2.jpg') center/cover no-repeat;
    border: .4rem solid var(--azul);
    transition: .5s ease;
}

    .services-container .bg-transporte:hover {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../../src/img/services_menu/transportadora2.jpg') center/cover no-repeat;
        border-color: var(--laranja);
    }

.services-container .bg-atacado_varejo {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, /* sem sombra nos 50% superiores */
    rgba(0, 0, 0, 0.7) 90%, /* sombra escurecendo forte */
    rgba(0, 0, 0, 0.85) 100%) /* ainda mais forte na base */, url('../../src/img/services_menu/atacado_varejo2.jpg') center/cover no-repeat;
    border: .4rem solid var(--azul);
    transition: .5s ease;
}

    .services-container .bg-atacado_varejo:hover {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../../src/img/services_menu/atacado_varejo2.jpg') center/cover no-repeat;
        border-color: var(--laranja);
    }

.services-container .bg-industria {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, /* sem sombra nos 50% superiores */
    rgba(0, 0, 0, 0.7) 90%, /* sombra escurecendo forte */
    rgba(0, 0, 0, 0.85) 100%) /* ainda mais forte na base */, url('../../src/img/services_menu/industria1.jpg') center/cover no-repeat;
    border: .4rem solid var(--azul);
    transition: .5s ease;
}

    .services-container .bg-industria:hover {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../../src/img/services_menu/industria1.jpg') center/cover no-repeat;
        border-color: var(--laranja);
    }

.services-container .bg-locacao_nobreak {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, /* sem sombra nos 50% superiores */
    rgba(0, 0, 0, 0.7) 90%, /* sombra escurecendo forte */
    rgba(0, 0, 0, 0.85) 100%) /* ainda mais forte na base */, url('../../src/img/services_menu/nobreak2.jpg') center/cover no-repeat;
    border: .4rem solid var(--azul);
    transition: .5s ease;
}

    .services-container .bg-locacao_nobreak:hover {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../../src/img/services_menu/nobreak2.jpg') center/cover no-repeat;
        border-color: var(--laranja);
    }

.services-container .bg-manutencao_hardware {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 5%, /* sem sombra nos 50% superiores */
    rgba(0, 0, 0, 0.7) 90%, /* sombra escurecendo forte */
    rgba(0, 0, 0, 0.85) 100%) /* ainda mais forte na base */, url('../../src/img/services_menu/manutencao1.jpg') center/cover no-repeat;
    border: .4rem solid var(--azul);
    transition: .5s ease;
}

    .services-container .bg-manutencao_hardware:hover {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../../src/img/services_menu/manutencao1.jpg') center/cover no-repeat;
        border-color: var(--laranja);
    }

.services-container .bg-certificado-digital {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 5%, /* sem sombra nos 50% superiores */
    rgba(0, 0, 0, 0.7) 90%, /* sombra escurecendo forte */
    rgba(0, 0, 0, 0.85) 100%) /* ainda mais forte na base */, url('../../src/img/services_menu/certificadoDigital1.jpg') center/cover no-repeat;
    border: .4rem solid var(--azul);
    transition: .5s ease;
}

    .services-container .bg-certificado-digital:hover {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../../src/img/services_menu/certificadoDigital1.jpg') center/cover no-repeat;
        border-color: var(--laranja);
    }

.services-box p.descricao {
    display: none;
    font-size: 1.6rem;
    margin: 1rem 0 3rem;
    color: var(--text-color2);
    font-weight: 700;
    transition: .5s ease;
    /*box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.9);
    padding: 1rem;
    border-radius: 1rem;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.9);*/
}

.services-box p.read-more {
    font-size: 1.4rem;
    color: var(--text-color2);
    font-weight: 700;
    margin: 0.5rem 0 1rem;
    cursor: pointer;
    /*background-color: rgba(0, 0, 0, 0.6);*/ /* preto com 60% de opacidade */
    /*padding: 1rem;
    border-radius: 1rem;
    text-align: center;*/
}

.services-box:hover p.descricao {
    display: block;
    opacity: 1;
    visibility: visible;
}

.services-box:hover p.read-more {
    display: none;
}


@media (max-width: 1024px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);  
    }
}

@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr; 
    }
}

@media (max-width: 768px) {
    .icon-img {
        width: 150px;
        height: 150px;
    }
}


/*css service*/

/*css service pages*/
.pages_services {
    padding: 13rem 2rem;
    background: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    margin-top: 4rem;
}

.image-box {
    flex: 1 1 400px;
}

    .image-box img {
        width: 100%;
        border-radius: 1rem;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }

.text-box {
    flex: 1 1 500px;
}

    .text-box p {
        font-size: 2rem; /* ↑ maior para igualar à seção .about */
        line-height: 1.7;
        color: var(--text-color);
        margin-bottom: 2rem;
        font-weight: 600;
        text-indent: 10px;
        text-align: justify;
        hyphens: auto;
    }

.features-list {
    list-style: none;
    padding-left: 0;
    font-size: 1.8rem; /* ↑ maior para facilitar leitura */
    font-weight: 600;
    color: var(--text-color);
}

    .features-list li {
        margin-bottom: 1.2rem;
        padding-left: 2rem;
        position: relative;
        text-align: justify;
        text-indent: 8px;
    }

        .features-list li::before {
            content: "✔";
            color: var(--laranja);
            position: absolute;
            left: 0;
            font-weight: bold;
            font-size: 1.8rem;
        }
/*css service pages*/


/*css about*/
 .about {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: var(--azul);
    color: var(--text-color2);
 }

.about-img img {
    width: 35vw;
    display: none;
}

.heading {
    text-align: center;
    font-size: 4.5rem;
}

.about-content h2 {
    text-align: left;
    line-height: 1.5;
    text-align: center;
}

.about-content h3 {
    font-size: 2.6rem;
    text-align: center;
}

.about-content p {
    font-size: 1.6rem;
    margin: 2rem 0 3rem;
    font-size: 2rem;
    font-weight: 600;
    text-indent: 10px;
    text-align: justify;
    hyphens: auto;
}
/*css about*/

/*css portifolio*/
.portifolio {
    background: var(--bg-color);
}

    .portifolio h2 {
        margin-bottom: 4rem;
        color: var(--text-color);
    }

.portifolio-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 2.5rem;
}

    .portifolio-container .portifolio-box {
        position: relative;
        border-radius: 2rem;
        box-shadow: 0 0 1rem var(--text-color);
        overflow: hidden;
        display: flex;
    }

.portifolio-box img {
    width: 100%;
    transition: .5s ease;
    /* opacity: 0;*/
}

.portifolio-box:hover img {
    transform: scale(1.2);
}

.portifolio-box .portifolio-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.1), var(--main-color));
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 4rem;
    transform: translateY(100%);
    transition: .5s ease;
}

.portifolio-box:hover .portifolio-layer {
    transform: translateY(0);
}

.portifolio-layer h4 {
    font-size: 3rem;
}

.portifolio-layer p {
    font-size: 1.6rem;
    margin: .3rem 0 1rem;
}

.portifolio-layer a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    background: var(--text-color2);
    border-radius: 50%;
}

    .portifolio-layer a i {
        font-size: 2rem;
        color: var(--snd-bg-color);
    }

.link-portifolio {
    color: var(--text-color2);
}
/*css portifolio*/


/*css contact*/
.contact {
    /*background: var(--snd-bg-color);*/
    background: var(--bg-color); /*cor de fundo padrao1*/
}

.contact h2 {
    margin-bottom: 3rem;
    color: var(--text-color);
}

.contact form {
    max-width: 70rem;
    margin: 1rem auto;
    text-align: center;
    margin-bottom: 3rem;
}

.contact form .input-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact form .input-box input,
.contact form textarea {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    color: var(--text-color2); /*cor de fundo padrao1*/
    /*background: var(--bg-color);*/
    background: var(--snd-bg-color);
    border-radius: .8rem;
    margin: .7rem 0;
    font-weight: 700;
}

.contact form .input-box input {
    width: 49%;
    border: none;
}

.input-box-ficheiro {
    width: 100%;
}

    .input-box-ficheiro input {
        width: 100%;
        font-size: 1.6rem;
        color: var(--text-color2); /* Cor do texto */
        background: var(--snd-bg-color); /* Cor de fundo */
        border-radius: .8rem;
        font-weight: 700;
        cursor: pointer;
        opacity: 0; /* Esconde o input de arquivo original */
    }

.custom-file-label {
    display: inline-block;
    padding: 1.5rem;
    font-size: 1.6rem;
    color: var(--text-color2);
    background: var(--snd-bg-color);
    border-radius: .8rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

    .custom-file-label:hover {
        background: var(--azul)
    }
/* Estilo adicional quando o arquivo é selecionado */
.input-box-ficheiro input:valid + .custom-file-label::after {
    /* content: " Currículo Selecionado"; */
    font-size: 1.4rem;
    color: var(--text-color2);
}

.contact form .input-box input:focus-visible {
    border-color: var(--text-color);
    /*border-color: var(--text-color);*/
}


.contact form textarea {
    resize: none;
}

.contact form .btn {
    margin-top: 2rem;
    cursor: pointer;
}
/*css contact*/

/*FAQ*/
.faq {
    background-color: var(--branco);
}

    .faq h2 {
        text-align: center;
        margin-bottom: 4rem;   
    }

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-color);
    border-radius: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--azul);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    padding: 1.5rem 2rem;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    font-size: 1.6rem;
    color: var(--text-color);
    transition: max-height 0.4s ease, padding 0.4s ease;
}

/* Ativo */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1rem 2rem 2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/*FAQ*/


/*css footer*/
footer {
    width: 100%;
    color: var(--bg-color);
}

.footer-link {
    text-decoration: none;
}

#footer_content {
    background-color: var(--azul);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    padding: 3rem 3.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    align-items: start; /* Garante alinhamento vertical */
}

#footer_contacts p {
    margin-right: 2rem;
    max-width: 80%; /* Para evitar que o texto se espalhe muito */
}

#footer_contacts h1 {
    margin-bottom: 1rem;
}

.footer-list h3 {
    margin-bottom: 1rem;
}

#footer_social_media {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

#footer_social_media .footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    width: 4rem;
    color: var(--color-neutral-40);
    border-radius: 50%;
    transition: all 0.4s;
}

#footer_social_media .footer-link:hover {
    opacity: 0.8;
}

#footer_social_media .footer-link i {
    font-size: 2rem;
}

#instagram {
    background: linear-gradient(#7f37c9, #ff2992, #ff9807);
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

#facebook {
    background-color: #4267b3;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

#ico_email {
    background-color: var(--laranja);
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

#whatsapp {
    background-color: #25d366;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
    padding: 1rem;
    white-space: nowrap;
    height: auto !important; /* Permite que a altura se ajuste */
    min-height: 200px; /* Ajuste conforme necessário */
}


#img_selo_google {
    width: 150px !important; /* Ajuste conforme necessário */
    height: auto !important;
    max-width: none !important;
}

@media (max-width: 450px) {
    #footer_contacts {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: auto; /* Permite que a altura se ajuste */
        min-height: 100px; /* Ajuste conforme necessário */
    }

    #footer_social_media {
        display: flex;
        justify-content: center;
        gap: 30px;
    }

    #img_selo_google {
        display: block;
        margin: 0 auto;
        max-width: 100px; /* Garante que não fique muito grande */
    }
}

.footer-list .footer-link {
    color: var(--branco);
    transition: all 0.4s;
}

.footer-list .footer-link:hover {
    color: var(--laranja);
}

#footer_copyright {
    display: flex;
    justify-content: center;
    background-color: var(--azul);
    padding: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
}

#footer_endereco {
    display: flex;
    justify-content: center;
    background-color: var(--azul);
    padding: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
}

@media (max-width: 450px) {
    #footer_copyright {
        text-align: center;
    }

    #footer_endereco {
        text-align: center;
    }

    #footer_develop{
        text-align: center;
    }
}

#footer_develop {
    display: flex;
    justify-content: center;
    background-color: var(--azul);
    padding: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
}

#footer_develop p {
    display: inline-flex;
    align-items: center; /* Alinha os itens verticalmente */
    gap: 3px; /* Espaçamento entre o texto e a imagem */
}

.footer-logo-developer {
    height: 30px; /* tamanho da imagem */
    vertical-align: middle; /* Alinha verticalmente */
}

/*css footer*/

/*css breakpoint*/
@media (max-width: 1200px) {
    html {
        font-size: 55%;
    }
}

@media (max-width: 991px) {
    .header {
        padding: 2rem 3%;
    }

    .home-content {
        text-align: center;
    }

    section {
        padding: 10rem 3%;
    }

    .portifolio {
        padding-bottom: 7rem;
    }

    .contact {
        min-height: auto;
    }

    .footer {
        padding: 2rem 3%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    #menu_icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 3%;
        background: var(--bg-color);
        border-top: .1rem solid rgba(0,0,0, .2);
        box-shadow: 0 .5rem 1rem rgba(0,0,0, .2);
        display: none;
    }

        .navbar.active {
            display: block;
        }

        .navbar a {
            display: block;
            font-size: 2rem;
            margin: 3rem 0;
        }

    .home {
        flex-direction: column;
    }

    .home-content h3 {
        font-size: 2.6rem;
    }

    .home-content h1 {
        font-size: 5rem;
    }

    .home-content {
        order: 2;
    }

    .home-img img {
        width: 90vw;
        margin-top: 4rem;
    }

    .about {
        flex-direction: column;
    }

    .about-img img {
        width: 90vw;
        display: block;
    }

    .services h2 {
        margin-bottom: 3rem;
    }

    .portifolio h2 {
        margin-bottom: 3rem;
    }

    .portifolio-container {
        grid-template-columns: repeat(2, 1fr);
    }

    #footer_content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 617px) {
    .portifolio-container {
        grid-template-columns: 1fr;
    }

    .home-img img {
        width: 80vw;
        margin-top: 8rem;
    }

    .about-img img {
        width: 100vw;
        margin-top: 4rem;
    }
}

@media (max-width: 450px) {
    html {
        font-size: 50%;
    }

    .contact form .input-box .input-box {
        width: 100%;
    }

    #footer_content {
        grid-template-columns: repeat(1, 1fr);
    }
}
/*css breakpoint*/


/*css planos*/
.planos {
    background: var(--azul);
}

.planos h2 {
    margin-bottom: 5rem;
    color: var(--bg-color);
}

.planos-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colunas */
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 2rem;
}

    .planos-container .planos-box {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex: 1 1 30rem;
        background: var(--bg-color);
        padding: 3rem 2rem 4rem;
        border-radius: 2rem;
        text-align: center;
        border: .4rem solid var(--branco);
        transition: .5s ease;
    }

.planos-box .btn {
    margin-top: auto;
    align-self: center; /* centraliza horizontalmente */
}


.planos-container .planos-box:hover {
    border-color: var(--laranja);
    transform: scale(1.05);
}

.planos-box i {
    font-size: 7rem;
    color: var(--text-color);
}

.planos-box h3 {
    font-size: 2.6rem;
    color: var(--text-color);
}

.planos-box p {
    font-size: 1.6rem;
    margin: 1rem 0 3rem;
    color: var(--text-color);
    font-weight: 700;
}

.detalhes-plano {
    list-style: none;
    padding: 0;
    margin: 2rem;
    text-align:left;
}

    .detalhes-plano li {
        font-size: 1.6rem;
        color: var(--text-color);
        font-weight: 700;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;     
    }

        .detalhes-plano li i {
            color: var(--main-color);
            margin-right: 0.8rem;
            font-size: 1.6rem;
        }
            .detalhes-plano li i.fa-check {
                color: green; /* Ícone verde para itens inclusos */
    }

            .detalhes-plano li i.fa-xmark {
                color: red; /* Ícone vermelho para itens não inclusos */
            }

@media (max-width: 1024px) {
    .planos-container {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas */
    }
}

@media (max-width: 768px) {
    .planos-container {
        grid-template-columns: 1fr; /* 1 coluna para telas pequenas */
    }
}

/*css planos*/


/*css cookie*/
#cookieConsent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    margin: 0 auto;
    background: var(--azul);
    color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    z-index: 9999;
    animation: slideUp 0.5s ease-in-out;
}

    #cookieConsent p {
        margin: 0 0 15px;
        font-size: 16px;
        line-height: 1.5;
    }

    #cookieConsent button {
        padding: 10px 20px;
        margin: 0 10px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-size: 14px;
    }

#acceptCookies {
    background: var(--acept-color); /* Verde */
    color: white;
    transition: all 0.4s;
}

    #acceptCookies:hover {
        color: white;
        background: var(--laranja);
    }

#declineCookies {
    background: var(--decline-color); /* Vermelho */
    color: white;
    transition: all 0.4s;
}

    #declineCookies:hover {
        background: var(--laranja);
        color: white;
    }

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/*css cookie*/

/* Container principal */
.privacy {
    padding: 60px 20px;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    font-family: "Poppins", sans-serif;
}

    .privacy .container {
        max-width: 900px;
        margin: 0 auto;
    }

    /* Cartão centralizado */
    .privacy .card {
        background: #f9f9f9;
        padding: 40px;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease-in-out;
    }

    /* Título principal */
    .privacy .title {
        font-size: 4rem;
        font-weight: 700;
        margin-bottom: 30px;
        color: #111;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
    }

        .privacy .title::before {
            content: "🛡️";
            margin-right: 10px;
        }

    /* Subtítulos (seções) */
    .privacy h4 {
        font-size: 3rem;
        color: #222;
        margin-top: 30px;
        border-left: 4px solid #ff5722;
        padding-left: 10px;
    }

    /* Parágrafos e listas */
    .privacy p {
        margin: 15px 0;
        font-size: 2rem;
    }

    .privacy ul {
        margin-left: 20px;
        margin-top: 10px;
        padding-left: 20px;
    }

    .privacy li {
        margin-bottom: 8px;
        font-size: 2rem;
    }

    /* Linha final */
    .privacy .update {
        margin-top: 30px;
        font-size: 2rem;
        color: #666;
    }

/* Responsividade */
@media (max-width: 768px) {
    .privacy .card {
        padding: 24px;
    }

    .privacy .title {
        font-size: 2rem;
    }

    .privacy h4 {
        font-size: 2rem;
    }

    .privacy p, .privacy li {
        font-size: 2rem;
    }
}

.btn-actions {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

    .btn.back {
        background-color: #e0e0e0;
        color: #333;
    }

        .btn.back:hover {
            background-color: #ccc;
        }

    .btn.download {
        background-color: #ff5722;
        color: #fff;
    }

        .btn.download:hover {
            background-color: #e64a19;
        }

/*whatsapp button*/

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 70px; /* distância do botão */
    background: #25d366;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: opacity 0.2s ease;
}

    /* Triângulo do balão */
    .whatsapp-tooltip::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 100%;
        margin-top: -6px;
        border-width: 6px;
        border-style: solid;
        border-color: transparent transparent transparent #25d366;
    }


.whatsapp-tooltip {
    opacity: 0;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}


.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* ===================== SEÇÃO DE CONTADOR (REDEWORK) ===================== */
.stats {
    background: var(--laranja);
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    border-top: 2px solid #ff660030;
    border-bottom: 2px solid #ff660030;
    min-height: 120px;
}

    .stats div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .stats .counter {
        font-size: 2.8rem;
        font-weight: 700;
        color: var(--branco);
        line-height: 1.2;
    }

    .stats p {
        font-size: 1.5rem;
        color: #e6e6e6;
        margin-top: 5px;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

/* Responsivo */
@media (max-width: 768px) {
    .stats {
        flex-direction: column;
        gap: 20px;
        padding: 30px 10px;
        min-height: 180px;
    }

        .stats .counter {
            font-size: 2.4rem;
        }
}


