html, body{
    width: 100%;
    height: 100%;
}
html{
    position: relative;
}

html, body, .conteudo{
    width: 100%;
    height: auto;
    background-color: rgb(240, 240, 240);
}


.box-home{
    border: 1px solid #ccc;
    border-radius: 10px;  
    background-color: #fff;
}

/* MENU  */

.header {
    background-color: rgba(199, 0, 0, 1);
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}
.header-content {
    width: 100%;
    max-width: 1300px;
    display: flex;
    flex-direction: column;
}

.header .topo{
    margin: 0px;
    width: 100%;
    height: auto;
    padding: 05px 20px;
    color: white;
    text-align: center;
}
.header .topo p{
    margin: 0px;
    width: auto;
    height: 100%;
    padding: 0px 10px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
}

.locationInfo{
    background-color: rgb(150, 0, 0);
    border-radius: 10px;
}

.menu{
    margin: 0px 10px;
    max-width: 1300px;
}

.menu .topo{
    width: 100%;
    height: 50px;
    max-height: 50px;
    display: inline-block;
}
    .menu .topo .logo{
        width: 20%;
        height: 100%;
        float: left;
        text-align: center;
    }
        .menu .topo .logo img{
            max-width: 100%;
            max-height: 100%;
            cursor: pointer;
        }

    .menu .topo .searchBar{
        width: 48%;
        height: 100%;
        float: left;
    }
        .menu .topo .searchBar .barraPesquisa{
            margin: 5px 5px;
            width: calc(100% - 10px);
            border-radius: 10px;
            background-color: white;
        }
            .menu .topo .searchBar .barraPesquisa img{
                width: 20px;
                height: 30px;
                margin-top: 0px;
                margin-left: 10px;
                padding: 5px 0px;
            }
            .menu .topo .searchBar .barraPesquisa input{
                height: 100%;
                padding: 5px 0px 0px 5px;
                width: calc(100% - 45px);
                border-top-right-radius: 10px ;
                border-bottom-right-radius: 10px ;
                border: none;
                font-size: 20px;
                float: right;
                outline: none;
                color: black;

            }

    .menu .topo .login{
        position: relative;
        width: calc(30% - 100px);
        height: 100%;
        padding: 0px;
        float: left;
        text-align: center;
    }
        .menu .topo .login .loginBarra{
            margin: 0px;
            width: calc(100% - 20px);
            height: 100%;
            border-radius: 10px;
        }
            .imgIcoUser{
                width: 25px;
                height: 25px;
                margin-top: 5px;
                margin-left: 10px;
                float: left;
                color: white;
            }
            .menu .topo .login .loginBarra p{
                float: left;
                margin: 0px;
                width: calc( 100% - 40px);
                color: white;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .menu .topo .login .loginBarra p:hover{
                cursor: pointer;
            }
 

            .loginMenu{
                position: absolute;
                top: 39px;
                margin: 0px;
                width: 250px;
                height: auto;
                padding: 0px;
                border-radius: 5px;

                background-color: white;
                z-index: 20000;
            }

            .loginMenu ul{
                padding: 0px;
                list-style: none;
            }

            .loginMenu button{
                margin: 0px;
                width: 100%;
                height: 40px;
                padding: 0px 20px;
                background-color: white;

                font-size: 18px;
                text-align: left;

                border: none;
                border-radius: 10px;
                color: red;
            }
                .loginMenu button:hover{
                    background-color: rgb(240, 240, 240);
                }
                .loginMenu button i{
                    margin-right: 5px;
                }


    .menu .topo .carrinho{
        width: 100px;
        height: 100%;
        float: left;
        display: flex;
        gap: 30px;
        text-align: center;
    }
        .menu .topo .carrinho p{
            margin: 0px;
            width: 30px;
            padding: 0px;
            font-size: 30px;
            font-weight: bold;
            color: white;
            float: left;
        }
        .menu .topo .carrinho i{
            margin: 0px;
            width: 30px;
            height: 30px;
            padding: 0px;
            padding-top: 5px;
            font-size: 30px;
        }
        .menu .topo .carrinho:hover{
            cursor: pointer;
        }


.menuList{
    position: sticky;
    top: 0;
    margin: 0px;
    z-index: 10;
    display: flex;
    justify-content: center;

    background-color: rgba(199, 0, 0, 1);
}

.menuList ul{
    width: 100%;
    max-width: 1300px;
    display: flex;
    justify-content: center; /* Centraliza os itens horizontalmente */
    list-style: none;
}

.menuList ul li{
    width:120px;
    min-height: 25px;
    margin: 5px 3px;
    padding-top: 5px ;
    float: left;
    text-align: center;
    font-weight: bolder;
    color: white;

}
    .menuList ul .tam0{ width: 120px; }
    .menuList ul .tam1{ width: 180px; }
    .menuList ul .tam2{ width: 240px; }
    .menuList ul .tam3{ width: 300px; }
    .menuList ul .tam4{ width: 360px; }
    
    .menuList ul li:hover{
        cursor: pointer;
        background-color:  rgba(185, 0, 0, 1);
    }


    .menuList ul ul{
        position: absolute;
        top: 30px;
        visibility: hidden;
        padding: 0px;
        background-color: rgba(199, 0, 0, 1);
      }
      
      .menuList ul li:hover ul{
        visibility: visible;
      }
      
      
      .menuList ul ul li{
        float:none;
        text-align: left;
        padding-left: 5px;
        font-size: 14px;
      }
        .menuList ul ul li:hover{
            background-color:  rgba(185, 0, 0, 1);
        }

/* ==== FIM MENU ==== */

.centralizar{
    height: auto;
    width: 100%;
    padding: 0px;
    overflow: auto;
    margin: 0px;

}

.conteudo{
    margin: auto;
    max-width: 1150px;
    height: auto;    
    background-color: #fff;
}

/* ============================================================ */
/* talkMe */
 

.talkMe{
    margin: 0px;
    width: 100%;
    height: auto;
    padding: 10px;
}

.talkMe div{
    margin: 0px;
    margin-bottom: 10px;
    width: 33%;
    height: 200px;
    padding: 20px;
    display: inline-block;
    vertical-align: top;

    border: none;
    border-radius: 10px;
    background-color: rgb(240, 240, 240);
}

.talkMe h4{
    font-weight: bold;
}

.contact h3{
    color: rgb(200, 0, 0);
}

.perfis{
    width: 100% !important;
}

.perfis svg{
    margin: 10px;
    width: 40px;
    height: 40px;
}



