@charset "UTF-8";

/* =================================================================== 
 *
 *  
 *  ------------------------------------------------------------------
 *
 *
 *
 * =================================================================== */

/* -----------------------------------------------------
Media Query Exemplos
-----------------------------------------------------

@media only screen and (min-width: 320px) {}
@media only screen and (min-width: 480px) {}
@media only screen and (min-width: 600px) {}
@media only screen and (min-width: 768px) {}
@media only screen and (min-width: 830px) {}
@media only screen and (min-width: 992px) {}
@media only screen and (min-width: 1382px) {}

@media only screen and (min-width: 320px) {}
@media only screen and (min-width: 768px) {}
@media only screen and (min-width: 992px) {}
@media only screen and (min-width: 1200px) {}
*/  

/* import fonts */
@import url("font/style.css");

img {max-width: 100%;}
img#norton-idsafe-field-logo-imgId {
    display: none;
}

@media only screen and (min-width: 320px) {
    .is-mobile {display:block}
    .is-desktop {display:none;}
}
@media only screen and (min-width: 992px) {
    .is-mobile {display:none}
    .is-desktop {display:block;}
}

a.link-posts-color {
    color: #504E28!important;
}

.loading,
.confirma,
.erro {
    display: none;
    font-family: 'Myriad Pro Regular';
    font-size: 14px;
    color:#ffffff;
    font-weight: bold;
    text-align: center;
}
.loading img {
    max-width: 30px;
}
figure figcaption {
    text-align: center;
}


/**********************************************************************
***********************************************************************
****
****        logo
****
****
***********************************************************************
**********************************************************************/
.logo-top img {
    width: 76px;
}

/**********************************************************************
***********************************************************************
****
****        Header, menu e submenu
****
****
***********************************************************************
**********************************************************************/
/*header e menu*/

.espaco-topo-internas {
    height: 90px;
    display: block;
}

/* # Header */
.cont-flex-horizontal {
    display: flex;
    align-items: center; 
    justify-content: space-between; 
}
.cont-flex-center {
    width: 100%;
    display: flex;
    justify-content: center;
}
main {
    overflow: hidden;
}
main #header-principal {
    position: fixed;
    background:#504E28;
    width: 100%;
    height: 90px;
    z-index: 2;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
    opacity: 1!important;
    z-index: 999;    
    padding-top: 10px;
}




/* ## Logo */
@media only screen and (min-width: 320px) {
    main #header-principal .logo-top {
        float: left;
        display: block;
        width: 100px;
        -webkit-transition: all .25s ease;
        transition: all .25s ease;
    }
    .logo-petland {
        width: 80px;
        -webkit-transition: all .25s ease;
        transition: all .25s ease;
    }
}
@media only screen and (min-width: 992px) {
    main #header-principal .logo-top {        
        width: 100px;
        -webkit-transition: all .25s ease;
        transition: all .25s ease;
    }
    .logo-petland {
        width: 100px;
        -webkit-transition: all .25s ease;
        transition: all .25s ease;
    }
}


/* ## Menu principal */
@media only screen and (min-width: 320px) {
    main #header-principal .menu-principal {
        display: none;
    }
}
@media only screen and (min-width: 992px) {
    main #header-principal .menu-principal {
        display: block;
        padding-top: 15px;
        width: 100%;        
        display: flex;
        justify-content: center;        
    }
    main #header-principal .menu-principal ul li {
        /*overflow: hidden;*/
        height: 30px;
        margin: 0 20px;
    }
    main #header-principal .menu-principal ul li a {
        display: inline-block;        
        font-family: 'Myriad Pro Regular';
        text-transform: none;
        position: relative;
        color:#ffffff;
        font-size: 22px;
        text-decoration: none;
        font-weight: 400;
        -webkit-transition: all .25s ease;
        transition: all .25s ease;        
    }
    main #header-principal .menu-principal ul li a.active::after {
        content: "";
        width: 100%;
        height: 4px;
        background:#915F16;
        bottom: -0px;
        left: 0;
        position: absolute;
        -webkit-transition: all .25s ease;
        transition: all .25s ease;
    }
    main #header-principal .menu-principal ul li a:hover::after {
        content: "";
        width: 100%;
        height: 4px;
        background:#915F16;
        bottom: -3px;
        left: 0;
        position: absolute;
        -webkit-transition: all .25s ease;
        transition: all .25s ease;
    }
    main #header-principal .menu-principal ul {
        list-style: none;
        padding:0;    
    }
    main #header-principal .menu-principal ul li {
        display: inline-block; 
        padding:0 5px 0 5px;   
    }
}
@media only screen and (min-width:1200px) {
    main #header-principal .menu-principal ul {
        list-style: none;
        padding:0;    
    }
    main #header-principal .menu-principal ul li a {
        font-size: 30px;        
    }
}



/* ## Menu hamburguer */
@media only screen and (min-width: 320px) {
    main #header-principal .mnu-togle {
        float: right;
        margin:14px 0 0 3px;
    }
}
@media only screen and (min-width: 992px) {
    main #header-principal .mnu-togle {        
        margin:30px 0 0 20px;
    }
}


/* ## Itens submenu */
.conteudo-menu-principal {
    position: absolute;
    display: none;
    background-color:#504E28;   
    top:0px;
    width: 100%;
    padding: 119px 0 0 0;
    z-index: -1;
    height: 104.5vh;    
}
.menu-principal-vertical {
    text-align: center;
}
.menu-principal-vertical ul {
    list-style: none;
    text-align: right;
    margin: 0 0 0 0;
    padding: 0;
}
.menu-principal-vertical ul li {
    margin: 0 0 7px 0;
    padding: 0;
}
.menu-principal-vertical ul li a {
    font-family: 'Myriad Pro Regular';
    text-transform: uppercase;
    color:#ffffff;
    font-size: 24px;
    text-decoration: none;
    font-weight: 700;
}
.menu-principal-vertical ul li a.active {
    color:#915F16;
}
.menu-principal-vertical ul li a:hover {
    color:#915F16;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
}
.apps {
    text-align: center;
    margin-top: 20px;
}


/* # Menu Fix */
.classFixMenuHeader {
    position: fixed!important;
    height: 95px!important;
    width: 100%;
    background-color: #504E28;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;   
}
.classFixMenuHeader .logo-top {
    width: 55px!important;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
}
@media only screen and (min-width: 992px) {
    
    .classFixMenuHeader .mnu-togle {        
        margin:20px 0 0 20px!important;
    }
}
/**********************************************************************
***********************************************************************
****
****        Header, menu e submenu
****
****
***********************************************************************
**********************************************************************/







/**********************************************************************
***********************************************************************
****
****        Menu Categorias
****
****
***********************************************************************
**********************************************************************/
@media only screen and (min-width: 320px) {
    .menucategorias {
        display: none;
    }
    .conteiner-menu-vertical {
        border-top: solid 1px #fff;
        margin-top: 20px;
        padding-top:20px;
        display: flex;
        justify-content: right;
    }
    .conteiner-menu-vertical ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: flex-end;
    }
    .conteiner-menu-vertical ul li a {
        font-family: 'Myriad Pro Light';
        color: #ffffff;
        font-size: 18px;
        font-weight: normal;
        text-align: right;
    }
}
@media only screen and (min-width: 992px) {
    .menucategorias {
        display: block;
        background:#635f32;
        position: relative;
        height: 30px;
        margin-top: 10px;
        -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.3);
        -moz-box-shadow:    0px 10px 30px 0px rgba(0, 0, 0, 0.3);
        box-shadow:         0px 10px 30px 0px rgba(0, 0, 0, 0.3);
    }
    .menucategorias .conteiner-menu {
        display: flex;
        justify-content: right;
    }
    .menucategorias .conteiner-menu ul {
        list-style: none;
        display: flex;
        gap: 20px;
        align-items: center;
        justify-content: center;
        margin-right: 127px;
    }
    .menucategorias .conteiner-menu ul li a {
        font-family: 'Myriad Pro Light';
        color: #ffffff;
        font-size: 18px;
        font-weight: normal;
    }
}

/**********************************************************************
***********************************************************************
****
****        Menu Categorias
****
****
***********************************************************************
**********************************************************************/
