@import url("sobre-seaborn.css");
@import url("produtos.css");
@import url("vantagens.css");
@import url("redes.css");
@import url("eventos.css");
@import url("contact-us.css");
@import url("footer.css");
/* =====================================================
RESET
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body.wp-theme-seaborn-2026{
    background: #fff;
    font-family:Arial, Helvetica, sans-serif;
    color:#222;
    padding-top: 150px;
}

a:hover {
    text-decoration: none;
}

/* =====================================================
HEADER
===================================================== */

.header{
    background:#fff;
    height:150px;
    box-shadow:0 4px 20px rgba(0,0,0,.05);
    z-index:9999;
}

.navbar{
    height:150px;
}

.navbar-brand img{
    height:100px;
}

.nav-link{
    color:#1d1d1d;
    font-weight:500;
    margin:0 7px;
    transition:.3s;
    font-size: 18px;
    font-weight: bold;
}

.nav-link:hover{
    color:#0a8f98;
}

.header-contact{
    font-size:12px;
    margin-left:20px;
}

.header-contact i{
    color:#0a8f98;
    margin-left: 5px;
}

.header-social{
    display:flex;
    gap:10px;
    margin-left:15px;
}

.header-social a{
    width:30px;
    height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#0a8f98;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.header-social a:hover{
    transform:translateY(-3px);
}

/* =====================================================
HERO
===================================================== */

.hero{
    position:relative;
    /*height:100vh;*/
    /*    background:url("../images/hero/banner.jpg");*/
    background-position:center;
    background-size:cover;
    overflow:hidden;
}

.hero img {
    max-width: 100%;
}

.languages{
    position:absolute;

    top:45px;
    right:50px;
    z-index:20;
    display:flex;
    gap:12px;
}

.languages img{
    width:40px;
    border-radius:4px;
}

.hero-content{
    position:relative;
    height:100%;
    z-index:5;
}

/* ==============================
   COMPARTILHAMENTO
================================= */

.cnt-share {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 16px;
}

.cnt-share strong {
    margin-right: 3px;
}

.cnt-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
}
.btn-saiba-mais {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 150px;
    height: 27px;

    padding: 0 20px;

    background: #22959d;
    border-radius: 30px;

    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;

    text-decoration: none;
    box-sizing: border-box;
    margin: 15px 0 0 0
}
.btn-saiba-mais:hover {
    text-decoration: none;
    color: #fff;
}

/**/

.wrp-nav-mobile {
    display: none;
}

#navMenu {
    position: absolute;
    right: 30px;
    top: 60px;
    z-index: 1000;

}
#navMenu > span {
    background: #1d8d91;
    border-radius: 9999px;
    display: block;
    height: 3px;
    width: 35px;
    z-index: 100;
}
#navMenu > span:not(:last-child) {
    margin-bottom: 7px;
} 

#navMenu, #navMenu > span {
    transition:  all .4s ease-in-out;
}

#navMenu.active {
    transition-delay:  0.8s;
    transform: rotate(45deg);
}
#navMenu.active > span {
    background: #1d8d91;
}

#navMenu.active > span:nth-child(2) {
    width: 0;
}
#navMenu.active > span:nth-child(1),
#navMenu.active > span:nth-child(3) {
    transition-delay:  .4s;
} 
#navMenu.active > span:nth-child(1) {
    transform: translateY(9px);
}
#navMenu.active > span:nth-child(3) {
    transform:  translateY(-10px) rotate(90deg);
}


.cnt-nav-mobile {
    /*background: rgba(5, 56, 50, 0.9);*/
    background: rgba(29, 141, 145, 1.0);
    height: 100vh;
    padding-top: 30px;
    position: fixed;
    width: 100%;
    z-index: 10;
    top: 0;
    left: -100%;
}
.menu-menu-principal-container {
    width: 100%;
}
.cnt-nav-mobile nav {
    width: 100%;
}
.cnt-nav-mobile nav ul {
    list-style: none;
    width: 100%;
    margin: 120px 0 0 0;
    padding: 0 15px;
} 
.cnt-nav-mobile nav li {
    border-bottom: 1px solid #fff;
    margin-bottom: 10px;
    padding:0 20px 10px 20px;
    width: 100%;
} 

.cnt-nav-mobile nav li a {
    color: #fff!important;
    font-size: 20px;
    /*text-transform: uppercase;*/
    text-decoration: none;
}


@media only screen and (max-width : 768px)  {
    body.wp-theme-seaborn-2026{
        padding-top: 100px;
    }    

    .languages{
        top:10px;
        right:15px;
    }

    .languages img {
        width: 30px;
    }


    .wrp-nav-mobile {
        display: block;
    }   
    .menu {
        display: flex;
    }
    .navbar-nav {
        display: none;
    }    
}