* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}
body {
    background-color: rgb(17, 33, 56);
    height: 100vh;
    -webkit-user-select: none; /* Para Chrome/Safari */
    -moz-user-select: none; /* Para Firefox */
    -ms-user-select: none; /* Para Internet Explorer */
    user-select: none; /* Para outros navegadores modernos */
    overflow-x: hidden;
    width: 100%;
}
.interface {
    max-width: 1280px;
    margin: 0 auto;
    overflow-x: hidden;
    width: 100%;   
}
.flex {
    display: flex;
}
.btn-contato button {
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    background-color: rgb(241, 153, 20);
    border: 0;
    border-radius: 25px;
    cursor: pointer;
    transition: .3s;
    color: white;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(241, 153, 20, 0.2);
}
        #btn1{
            position: relative;
            top: 340px;
            padding: 20px;
            cursor: pointer;
        }
        #btn1:hover{
            box-shadow: 0px 0px 8px rgb(241, 153, 20);
            transform: scale(1.05);
            
        }
h2.titulo {
    color: #fff;
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 0;
}
h2.titulo span {
    color: rgb(241, 153, 20);
    position: relative;
}
h2.titulo::after {
    display: none;
}
button:hover,
form .btn-enviar input:hover {
    
    transform: scale(1.05);
}
/* ESTILO DO CABEÇALHO */
header {
    padding: 20px 4%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.63), rgba(0, 0, 0, 0.274)), url("DSC02739-HDR.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: scroll;
    min-height: 93vh;
    max-width: 100%;
    position: relative;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    
}
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 4%;
}
header > .interface {
    border-radius: 18px;
    padding: 20px;
    background-color: rgba(23, 41, 68, 0.863);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 92%;
    margin: 0 auto;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.logo {
    display: flex;
    align-items: center;
}
.menu-desktop {
    flex: 1;
    margin: 0 20px;
}
.menu-desktop ul {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.btn-contato {
    margin-left: auto;
}
header a {
    color: #f7f7f7;
    text-decoration: none;
    display: inline-block;
    transition: .2s;
}
header nav.menu-desktop a:hover {
    color: rgb(241, 153, 20);
    transform: scale(1.05);
}
header nav ul {
    list-style-type: none;
    position: relative;
    top:6px;   
}
header nav.menu-desktop ul li {
    display: inline-block;
    padding: 0 27px;
    position: relative;
    left: 20px;
    transition: all 0.3s ease;
}
header nav.menu-desktop a {
    position: relative;
}
header nav.menu-desktop a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgb(241, 153, 20);
    transition: width 0.3s ease;
}
header nav.menu-desktop a:hover::after {
    width: 100%;
}
/* ESTILO DO MENU MOBILE */
.btn-abrir-menu {
    display: none;
}
.btn-abrir-menu i {
    color: rgb(241, 153, 20);
    font-size: 32px;
    cursor: pointer;
    transition: 0.3s;
}
.btn-abrir-menu i:hover {
    transform: scale(1.1);
}
.menu-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background: linear-gradient(135deg, rgba(23, 41, 68, 0.97), rgba(23, 41, 68, 0.95));
    backdrop-filter: blur(10px);
    z-index: 99999;
    transition: 0.5s ease-in-out;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    border-radius: 1px;;
}
.menu-mobile.abrir-menu {
    right: 0;
}
.menu-mobile .btn-fechar {
    position: absolute;
    top: 20px;
    right: 20px;
}
.menu-mobile .btn-fechar i {
    color: rgb(241, 153, 20);
    font-size: 30px;
    cursor: pointer;
}
.menu-mobile nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
    
}
.menu-mobile nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.menu-mobile nav ul li {
    margin: 20px 0;
}
.menu-mobile nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    display: block;
    transition: 0.3s ease;
}
.menu-mobile nav ul li a:hover {
    color: rgb(241, 153, 20);
    padding-left: 10px;
}
.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 99998;
}
body.menu-opened .overlay-menu {
    visibility: visible;
    opacity: 1;
}
@media screen and (max-width: 768px) {
    .menu-desktop,
    .btn-contato {
        display: none;
    }
    .btn-abrir-menu {
        display: block;
    }
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    .interface {
        overflow-x: hidden;
        width: 100%;
    }
    .sobre a{
        display: flex;
        justify-content: center;
        
    }
    .btn-social{
        text-align: center;
        justify-content: center;
    }
    main {
        overflow-x: hidden;
        width: 100%;
    }
    .ansmain {
        overflow-x: hidden;
        width: 100%;
        padding: 10px;
    }
    #imglogos {
        overflow-x: hidden;
        width: 100%;
    }
    .slider {
        width: 900%;
        gap: 0;
        animation: slide-continuous-mobile 22s linear infinite;
    }
    h2.titulo, 
    .section-container h1,
    .sobre .txt-sobre h2 {
        font-size: 28px;
        margin-bottom: 30px;
        padding-bottom: 12px;
    }
    .sobre .txt-sobre h2 {
        text-align: center;
    }
    .sobre .txt-sobre p {
        text-align: center;
        font-size: 16px;
        line-height: 1.6;
    }
    header {
        flex-direction: column;
        background-image: linear-gradient(rgba(0, 0, 0, 0.63), rgba(0, 0, 0, 0.274)), url("DSC02739-HDR.jpg");
        background-position: center center;
        background-size: cover;
        background-attachment: scroll;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        object-fit: cover;
    }
    footer {
        padding: 40px 4% 0;
    }
    footer .line-footer .flex {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }
    .btn-social {
        margin-top: 20px;
    }
    .ansmain {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }
    .ansimg {
        padding: 15px;
    }
    .copyright {
        flex-direction: column;
        gap: 10px;
        padding: 20px 0;
    }

    #p1 {
        font-size: 14px;
        padding: 6px 12px;
    }
}
@media screen and (max-width: 480px) {
    h2.titulo, 
    .section-container h1,
    .sobre .txt-sobre h2 {
        font-size: 24px;
        margin-bottom: 25px;
        padding-bottom: 10px;
    }
    .sobre .txt-sobre p {
        font-size: 15px;
        line-height: 1.5;
        padding: 0 15px;
    }
    .section-container {
        padding: 30px 20px;
    }
    .stats-section {
                padding: 40px 15px;
            }
            
            .title {
                font-size: 1.8rem;
                margin-bottom: 40px;
            }
            
            .counter-number {
                font-size: 2rem;
            }
}
section.topo-do-site .flex {
    align-items: center;
    justify-content: center;
    gap: 90px;
    position: relative;
    bottom: 7px;
}
.topo-do-site h1 {
    color: #fff;
    font-size: 42px;
    line-height: 40px;
    position: relative;
    bottom: 45px;
}
.topo-do-site .txt-topo-site h1 span {
    color: rgb(241, 153, 20);
}
.topo-do-site .txt-topo-site p {
    color: #fff;
    margin: 40px 0;
    position: relative;
    bottom: 45px;
}
/* ESTILO DAS ESPECIALIDADES */
section.especialidades {
    padding: 40px 4%;
    position: relative;
    top: 15px;
    box-shadow: 0 0 40px 10px #ffffff1d;   
}
section.especialidades .flex {
    gap: 60px;
}
.especialidades .especialidades-box {
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    margin-top: 45px;
    transition: .2s;
}
.especialidades .especialidades-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgb(241, 153, 20);
    cursor: default;
}
.especialidades .especialidades-box i {
    font-size: 70px;
    color: rgb(241, 153, 20);
}
.especialidades .especialidades-box h3 {
    font-size: 28px;
    margin: 15px 0;
}
/* ESTILO DO SOBRE */
section.sobre {
    padding: 100px 4%;
    background: linear-gradient(45deg, rgba(23, 41, 68, 0.97), rgba(23, 41, 68, 0.9));
    border-radius: 20px;
    margin: 40px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.sobre .interface {
    max-width: 1200px;
    margin: 0 auto;
}
.sobre .flex {
    align-items: center;
    gap: 60px;
    position: relative;
}
.sobre .img-sobre {
    position: relative;
    max-width: 500px;
}
.sobre .img-sobre::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(241, 153, 20);
    top: -20px;
    left: -20px;
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}
.sobre .txt-sobre {
    flex: 1;
}
.sobre .txt-sobre h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #fff;
    
}
.sobre .txt-sobre h2 span {
    color: rgb(241, 153, 20);
    position: relative;
    display: inline-block;
}
.sobre .txt-sobre h2 span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: rgb(241, 153, 20);
    bottom: -5px;
    left: 0;
}
.sobre .txt-sobre p {
    color: #fff;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-social button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: rgb(241, 153, 20);
    font-size: 20px;
    cursor: pointer;
    margin: 0 10px;
    transition: .3s;
    box-shadow: 0 4px 15px rgba(241, 153, 20, 0.2);
}
.btn-social button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(241, 153, 20, 0.3);
}
/* ESTILO DO PORTFÓLIO */
section.portfolio {
    padding: 100px 4%;
    background: linear-gradient(45deg, rgba(23, 41, 68, 0.97), rgba(23, 41, 68, 0.9));
    border-radius: 20px;
    margin: 40px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);   
}
.portfolio .titulo {
    text-align: center;
    margin-bottom: 1px;
    font-size: 45px;
}
.portfolio .titulo span {
    color: rgb(241, 153, 20);
    position: relative;
}
.portfolio .titulo span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: rgb(241, 153, 20);
    bottom: -5px;
    left: 0;
}
.portfolio .flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;   
}
.img-port {
    width: 360px;
    height: 460px;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
    cursor: pointer;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.img-port:hover {
    transform: translateY(-10px);
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(47, 108, 201, 0.8), rgb(23, 41, 68));
    backdrop-filter: blur(3px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
    text-align: center;
    opacity: 0;
    transition: 0.5s;
}
.overlay h3 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}
.overlay p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
}
.overlay button {
    padding: 12px 30px;
    background-color: #fff;
    color: rgb(241, 153, 20);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
}
.overlay button:hover {
    background-color: rgb(241, 153, 20);
    color: #fff;
}
.img-port:hover .overlay {
    opacity: 1;
}
/* ESTILO DO RODAPÉ */
footer {
    background: linear-gradient(135deg, rgba(23, 41, 68, 0.8), rgba(23, 41, 68, 0.9));
    padding: 60px 4%;
    border-radius: 30px 30px 0 0;
    margin-top: 100px;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(241, 153, 20, 0.1), transparent 60%);
    pointer-events: none;
}
footer .interface {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
footer .line-footer {
    padding: 20px 0;
}
footer .line-footer .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.borda {
    position: relative;
    margin-top: 30px;
    padding-top: 30px;
}
.borda::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(241, 153, 20, 0.3), transparent);
}
footer .line-footer p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    transition: 0.15s ease;
    letter-spacing: 0.3px;
}
footer .line-footer p i {
    color: rgb(241, 153, 20);
    font-size: 20px;
    margin-right: 8px;
    transition: 0.15s ease;
}
footer .line-footer p a {
    color: #fff;
    text-decoration: none;
    transition: 0.15s ease;
    position: relative;
    padding: 2px 4px;
    border-radius: 4px;
}
footer .line-footer p a:hover {
    color: rgb(241, 153, 20);
    background: rgba(241, 153, 20, 0.1);
}
.btn-social {
    display: flex;
    gap: 10px;
}
.btn-social button {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    border: none;
    background: rgba(241, 153, 20, 0.9);
    font-size: 18px;
    cursor: pointer;
    transition: 0.15s ease;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-social button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: 0.15s ease;
}
.btn-social button:hover::before {
    opacity: 1;
}
.btn-social button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(241, 153, 20, 0.2);
}
.ansmain {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 40px 0;
}
.ansimg {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 16px;
    transition: 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.ansimg:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(241, 153, 20, 0.3);
}
.ansimg p {
    margin: 0;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.ansimg img {
    width: 100px;
    height: auto;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    transition: 0.2s ease;
}
.ansimg:hover img {
    transform: scale(1.05);
}
#credits {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 40px;
    cursor: default;
    letter-spacing: 0.5px;
}
.copyright {
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0 0 20px 20px;
}
.copyright i {
    color: rgb(241, 153, 20);
    font-size: 16px;
    margin: 0 5px;
}
#p1 {
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin: 5px 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
/* imagens */
#img1{
    width: 100px;
    height: 100px;
    border-radius: 12px;
}
#img1:hover{
    transform: scale(1.05);
}
#img2:hover{
    transform: scale(1.05);
}
@media screen and (max-width: 1020px) {
    .nav-fixed {
        padding: 10px 4%;
    }
    
    header > .interface {
        width: 100%;
        padding: 15px 20px;
        border-radius: 0;
        justify-content: space-between;
    }
    #s3 button{
        left: 0;
    }
    .sobre a{
        position: relative;
        left:10px;
    }
    #logosparceiras img {
        width: 150px;
        height: 60px;
    }

    /* CLASSES GERAIS */
    .flex {
        flex-direction: column;
    }
    .topo-do-site .flex{
        flex-direction: column-reverse;
    }
    .txt-topo-site{
        transform: translateY(-100px);
    }
    h2.titulo, 
    .section-container h1,
    .sobre .txt-sobre h2 {
        font-size: 32px;
        margin-bottom: 40px;
        padding-bottom: 15px;
    }
    h2.titulo::after,
    .section-container h1::after {
        width: 80px;
    }
    #img2{
        display:none;
    }
    header{
        flex-direction: column;
        background-image: url("DSC02739-HDR.jpg");
        background-position: center;
        object-fit: cover;
    }
    .overlay-menu{
        display:fixed;
    }
    /* CABEÇALHO */
    .menu-desktop,
    .btn-contato {
        display: none;
    }
    /* TOPO DO SITE */
    section.topo-do-site .flex {
        gap: 40px;
    }
    #h1-mobile{
        display: block;
    }
    #p-mobile{
        display: block;
    }
    section.topo-do-site {
        flex-direction: column;
        background-image: url("B&B Saúde e Seguros.gif");
        background-position: center;
    }
    .topo-do-site h1 {
        font-size: 30px;
    }
    .topo-do-site .img-topo-site img {
        width: 100%;
    }
    /* ESPECIALIDADES */
    section.especialidades {
        padding: 40px 8%;
    }
    /* SOBRE */
    section.sobre {
        padding: 80px 8%;
    }

    .sobre .txt-sobre h2 {
        font-size: 34px;
        line-height: 35px;
    }
    .img-sobre img{
        width: 100%;
    }
    /* PORTFÓLIO */
    section.portfolio {
        padding: 80px 8%;
    }
    .img-port {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }
    section.portfolio .flex {
       gap: 60px;
    }
    /* RODAPÉ */
    footer .flex {
        flex-direction: column;
        gap: 30px;
    }
    footer .line-footer {
        text-align: center;
    }
    .btn-abrir-menu{
        display: block;
        margin-left: auto;
    }
    .btn-flutuante{ 
        display: none;
    }
    #navrodape-mobile{
        display:block;
    }
    #ofter{
        display: flex;
        flex-direction: column;
    }
}
#s1{
    scroll-margin-top: 50px;
}
#s2{
    scroll-margin-top: 130px;
}
/* Barra de rolagem geral (fina) */
::-webkit-scrollbar {
    width: 10px; /* Largura da barra de rolagem */
}
/* Fundo da barra de rolagem (translúcido) */
::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1); /* Fundo translúcido */
    border-radius: 10px; /* Bordas arredondadas */
}
/* Cor e estilo do 'thumb' (parte que se move) */
::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.4); /* Fundo translúcido do thumb */
    border-radius: 10px; /* Bordas arredondadas */
    border: 2px solid rgba(255, 255, 255, 0.2); /* Borda ao redor do thumb */
}
/* Efeito ao passar o mouse sobre o 'thumb' */
::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.6); /* Torna o thumb mais escuro */
}
    #l1{
        border: none;
        height: 1px;
        background-color: #ccc; 
        box-shadow: 0px 0px 8px rgb(241, 153, 20) ;
    }   
    #h1-mobile{
        display:none;
    }
    #p-mobile{
        display: none;
    }
    .btn-social2{
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: none;
        background-color: rgb(241, 153, 20);
        font-size: 22px;
        cursor: pointer;
        margin: 0 5px;
        transition: .2s;
        display: none;
    }
    footer{   
        border-radius: 13px;
    }
        .especialidades, .sobre, .portfolio, .formulario{
            visibility: hidden;
        }
      #sp1{
        color:rgb(241, 153, 20);
      }
      #ps2{
        align-items: center;
        position: relative;
        font-size: small;
      }
      #credits{
        opacity: 30%;
        cursor:default;
        position: relative;
        top: 20px;
      }
.avaliacoes {
    background-color:rgb(23, 41, 68);
    padding: 20px;
    text-align: center;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;     
}
.avaliacoes h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: rgb(241, 153, 20);
  display: none;
}
.avaliacao {
  background-color: rgb(241, 153, 20);
  padding: 20px;
  margin: 10px auto;
  border-radius: 12px;
  max-width: 400px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  cursor: default;
}
.avaliacao:hover{
    transform: scale(1.05);
}
.avaliacao p {
  font-size: 16px;
  color: #ffffff;
  padding: 7px;
}
.avaliacao span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #555;
}
.btn-flutuante {
      position: fixed;
      top: 83vh;
      right: 67.5vh;  
      background-color: #f0a500;
      color: #ffffff;
      border: none;
      border-radius: 50px;
      padding: 15px 20px;
      font-size: 1.1rem;
      box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
      cursor: pointer;
      transition: background-color 0.3s ease;
      display: none;
    }
    .btn-flutuante:hover {
            box-shadow: 0px 0px 8px rgb(241, 153, 20);
            transform: scale(1.05);           
    }
    #p1{
        color: white;
        font-size:18px;
    }
    #navrodape{
        display: inline-block;
    }
    #navrodape a{
        color: rgb(241, 153, 20);
        text-decoration: none;
    }
    #navrodape ul li{
        list-style-type: none;
        position: relative;
        top: 10px;
    }
    #navrodape ul li:hover{
        transform: scale(1.05);
        color: rgb(241, 153, 20);
    }
    .section-container {
    margin: 40px auto;
    max-width: 1600px;
    padding: 60px 40px;
    background: linear-gradient(45deg, rgba(23, 41, 68, 0.97), rgba(23, 41, 68, 0.9));
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.section-container h1 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #fff;
    position: relative;
    padding-bottom: 20px;
}
.section-container h1 span {
    color: rgb(241, 153, 20);
    position: relative;
}

.section-container h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: rgb(241, 153, 20);
}
#imglogos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
#logosparceiras {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#logosparceiras img {
    width: 200px;
    height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
}

#logosparceiras:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.slider-container {
    width: 100%;
    overflow: hidden;
    
}

.slider {
    display: flex;
    width: 900%; /* A largura total para acomodar os 9 slides */
    gap: 0; /* Sem espaço entre os slides */
    animation: slide-continuous 22s linear infinite; 
    
}

.slider-item {
    flex: 0 0 11.11%; /* Cada slide ocupa 11.11% da largura do container (9 itens) */
    max-width: 100%;
    text-align: center;
    margin: 0; /* Remove qualquer margem entre os itens */
    padding: 0; /* Remove padding, se houver */
}

.slider-item img {
    width: 18%; /* Ajusta as imagens para ocuparem toda a largura do slide */
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: 0; /* Remove bordas */
    border-radius: 12px; /* Remove bordas arredondadas */
    padding: 0;
    margin: 0;
   
}

@keyframes slide-continuous {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%); /* Percorrer todos os slides suavemente */
    }
}

/* Media Query para dispositivos móveis */
@media (max-width: 768px) {
    .slider {
        width: 900%; /* Largura total para acomodar os slides */
        gap: 0; /* Sem espaço entre slides no mobile */
        animation: slide-continuous-mobile 22s linear infinite; /* Movimento mais lento no mobile */
    }

    body{
        overflow-x: hidden;
    }

    .slider-item {
        flex: 0 0 100%; /* Cada slide ocupa 100% da largura do container */
        margin: 0;
        padding: 0;
        
    }

   #s3 button{
    left: 600px;
   }
   #s3 a button{
    left: 0px;
   }

    #imglogos{
        justify-content: center;
    
    }
    .slider-item img {
        width: 10%;
        aspect-ratio: 16/9;
    }
    
    #p1{
        font-size: 15px;
    }
    #logosparceiras{
    align-items: center;
    display: flex;
  
}
.contador{
    display: flex;
    flex-direction: column;
}
#ofter{
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
    }
    #flex1{
        flex-direction:column; 
        align-items: center;
    }
    #img-logos{
        display: flex;
        align-items: center;
    }
    .ansmain{
        flex-direction: column;
        gap: 10px;
        justify-content: center;
    }
    

    .title {
                font-size: 2rem;
            }
            
            .counter-number {
                font-size: 2.5rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .counter-card {
                padding: 30px 20px;
                min-height: 150px;
            }


    @keyframes slide-continuous-mobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-800%); /* Percorrer todos os slides suavemente */
        }
    }
}
#imglogos{
    display: flex;
    flex-direction: row;
    flex-wrap:wrap;
    
}
#logosparceiras{
    padding: 2px;
    
    
}
#logosparceiras img{
    border-radius: 40px;
    object-fit: cover;
    width: 260px; /* ou qualquer tamanho desejado */
    height: 100px;
    object-fit:contain; 
}
#logosparceiras:hover{
    transform: scale(1.05);
}
        .contador {
            display: flex;
            gap: 20px;
            padding: 30px;
            align-items: center;
            flex-direction: row;
            margin: 20px;
        }
        .caixa {
            background: #22222283;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            font-size: 24px;
            font-weight: bold;
            min-width: 200px;
            color: white;
            padding: 30px;
        }
       
        .caixa:hover{
            transform: scale(1.05);

        }
        #img-ofter:hover{
            transform: scale(1.05);
        }
        #ofters{
            box-shadow: 0 0 40px 10px #ffffff1d;
        }

        .whatsapp-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25d36591;
            color: white;
            border: none;
            padding: 18px;
            padding-left: 21px;
            border-radius: 50%;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease-in-out;
            z-index: 9999;
        }

        .whatsapp-button:hover {
            background-color: #1ebe5d;
            transform: scale(1.1);
            color: white;
            
        }
        #s3 button{
            color:rgba(23, 41, 68, 0.97);
            font-size: larger;
            border: none;
            background-color: #f0a500;
            padding: 15px;
            border-radius: 12px;
            position: relative;
            margin-left: 0px;
            
        }
        
        #s3 button:hover{
            transform: scale(1.01);
            transition: 0.3s;
            color: #f7f7f7;
        }
       .stats-section {
            padding: 60px 20px;
            min-height: 70vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .title {
            color: white;
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 60px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .counter-card {
            background: #3a4451;
            border: 2px solid #f7c52d;
            border-radius: 15px;
            padding: 40px 20px;
            text-align: center;
            min-height: 180px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            transition: all 0.3s ease;
            
        }

        .counter-card:hover {
            transform: scale(1.05);
            border-color: #ffd700;
        }

        .counter-title {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .counter-number {
            color: white;
            font-size: 4rem;
            font-weight: bold;
        }
        .eq{
            display: flex;
            justify-content: center;
        }
