/* =========================================================
   TEMA 02 - HOME
   ========================================================= */

.soft42-home {
    background: #f5f6f8;
    padding-bottom: 50px;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.soft42-home .container {
    position: relative;
}


/* =========================================================
   SEÇÕES
   ========================================================= */

.home-section {
    padding: 35px 0;
}

.home-category-section {
    margin-bottom: 40px;
}


/* =========================================================
   CABEÇALHO DAS SEÇÕES
   ========================================================= */

.home-section-header,
.home-category-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 22px;
    padding-bottom: 12px;

    border-bottom: 2px solid #e5e7eb;
}

.home-section-header h2,
.home-category-header h2 {
    margin: 0;

    font-size: 25px;
    font-weight: 700;

    color: #222;
}

.home-section-kicker {
    display: block;

    margin-bottom: 5px;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.2px;

    color: var(--cor-secundaria);
}

.home-category-header h2 {
    position: relative;

    padding-left: 14px;
}

.home-category-header h2:before {
    content: "";

    position: absolute;

    left: 0;
    top: 4px;
    bottom: 4px;

    width: 4px;

    background: var(--cor-secundaria);
}

.home-category-header a {
    font-size: 13px;
    font-weight: 600;

    color: #777;

    text-decoration: none;
}

.home-category-header a:hover {
    color: var(--cor-secundaria);
}


/* =========================================================
   DESTAQUES
   ========================================================= */

.home-destaques-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}

.home-destaque-card {
    overflow: hidden;

    background: #fff;

    border-radius: 6px;

    box-shadow: 0 3px 15px rgba(0, 0, 0, .06);

    transition: transform .25s ease,
        box-shadow .25s ease;
}

.home-destaque-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 8px 25px rgba(0, 0, 0, .11);
}

.home-destaque-link {
    display: block;

    color: inherit;

    text-decoration: none;
}

.home-destaque-image {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;
}

.home-destaque-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .4s ease;
}

.home-destaque-card:hover
.home-destaque-image img {
    transform: scale(1.04);
}

.home-destaque-content {
    padding: 18px 20px 20px;
}

.home-category {
    display: inline-block;

    margin-bottom: 8px;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .8px;

    color: var(--cor-secundaria);
}

.home-destaque-content h3 {
    margin: 0;

    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;

    color: #222;
}


/* =========================================================
   META
   ========================================================= */

.home-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 12px;

    font-size: 11px;

    color: #999;
}

.home-meta span {
    display: inline-flex;

    align-items: center;

    gap: 5px;
}

.home-meta i {
    color: var(--cor-secundaria);
}


/* =========================================================
   GRID DE NOTÍCIAS
   ========================================================= */

.home-news-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.home-news-card {
    background: #fff;

    border-radius: 5px;

    overflow: hidden;

    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);

    transition: transform .25s ease,
        box-shadow .25s ease;
}

.home-news-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 7px 20px rgba(0, 0, 0, .09);
}

.home-news-card a {
    display: block;

    color: inherit;

    text-decoration: none;
}

.home-news-image {
    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;
}

.home-news-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .35s ease;
}

.home-news-card:hover
.home-news-image img {
    transform: scale(1.04);
}

.home-news-content {
    padding: 15px 17px 17px;
}

.home-news-content h3 {
    margin: 0;

    font-size: 17px;
    line-height: 1.35;

    font-weight: 700;

    color: #222;
}


/* =========================================================
   LISTAGEM COMPACTA
   ========================================================= */

.home-list-card {
    margin-bottom: 15px;

    padding-bottom: 15px;

    border-bottom: 1px solid #e5e5e5;
}

.home-list-card:last-child {
    border-bottom: 0;
}

.home-list-card a {
    display: flex;

    gap: 15px;

    color: inherit;

    text-decoration: none;
}

.home-list-image {
    flex: 0 0 125px;

    width: 125px;
    height: 82px;

    overflow: hidden;

    border-radius: 4px;
}

.home-list-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .3s ease;
}

.home-list-card:hover .home-list-image img {
    transform: scale(1.05);
}

.home-list-content {
    flex: 1;
}

.home-list-content h3 {
    margin: 0 0 8px;

    font-size: 15px;
    line-height: 1.35;

    font-weight: 700;

    color: #222;
}

.home-list-content span {
    font-size: 11px;

    color: #999;
}


/* =========================================================
   BANNER
   ========================================================= */

.home-banner {
    margin: 35px 0;

    width: 100%;
}

.home-banner-item {
    width: 100%;

    margin-bottom: 15px;

    text-align: center;
}

.home-banner-item img {
    display: inline-block;

    max-width: 100%;
    height: auto;
}


/* =========================================================
   HORÓSCOPO
   ========================================================= */

.home-horoscopo {
    background: #fff;
}

.home-widget-box {
    min-height: 120px;

    padding: 20px;

    background: #fff;

    border: 1px solid #e5e5e5;

    border-radius: 6px;

    overflow: hidden;
}


/* =========================================================
   SIDEBAR
   ========================================================= */

.soft42-home .col-md-4 {
    position: relative;
}

.soft42-home .col-md-4 > * {
    margin-bottom: 25px;
}


/* =========================================================
   PARCEIROS
   ========================================================= */

.home-parceiros {
    background: #fff;

    border-top: 1px solid #e5e5e5;
}


/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-width: 991px) {

    .home-destaques-grid {
        grid-template-columns: 1fr;
    }

    .home-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 767px) {

    .home-section {
        padding: 25px 0;
    }

    .home-section-header h2,
    .home-category-header h2 {
        font-size: 21px;
    }

    .home-news-grid {
        grid-template-columns: 1fr;
    }

    .home-destaque-content h3 {
        font-size: 18px;
    }

    .home-news-content h3 {
        font-size: 16px;
    }

    .home-list-image {
        flex: 0 0 100px;

        width: 100px;
        height: 70px;
    }

}


@media (max-width: 480px) {

    .home-list-card a {
        gap: 10px;
    }

    .home-list-image {
        flex: 0 0 90px;

        width: 90px;
        height: 65px;
    }

    .home-list-content h3 {
        font-size: 14px;
    }

}



/* =========================================================
   TEMA 02
   SUPER DESTAQUE
   ========================================================= */

.tema02-super {
    padding: 25px 0 35px;

    background: #f5f6f8;
}


/* =========================================================
   ESTRUTURA
   ========================================================= */

.tema02-super-grid {
    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 8px;

    height: 500px;
}


/* =========================================================
   LINK
   ========================================================= */

.tema02-super-link {
    display: block;

    width: 100%;
    height: 100%;

    color: inherit;

    text-decoration: none;
}

.tema02-super-link:hover {
    color: inherit;

    text-decoration: none;
}


/* =========================================================
   SUPER DESTAQUE PRINCIPAL
   ========================================================= */

.tema02-super-principal {
    position: relative;

    width: 100%;
    height: 500px;

    overflow: hidden;

    background: var(--cor-primaria);

    border-radius: 6px;
}

.tema02-super-image {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;
}

.tema02-super-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.tema02-super-principal:hover
.tema02-super-image img {
    transform: scale(1.03);
}


/* =========================================================
   GRADIENTE PRINCIPAL
   ========================================================= */

.tema02-super-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 65%;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.90),
        rgba(0,0,0,.45),
        transparent
        );
}


/* =========================================================
   TEXTO PRINCIPAL
   ========================================================= */

.tema02-super-content {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 30px;
}

.tema02-super-category {
    display: inline-block;

    margin-bottom: 10px;

    padding: 5px 9px;

    background: var(--cor-secundaria);

    border-radius: 3px;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;

    color: #fff;
}

.tema02-super-content h1 {
    max-width: 90%;

    margin: 0;

    font-size: 34px;
    line-height: 1.15;

    font-weight: 700;

    color: #fff;
}

.tema02-super-meta {
    margin-top: 15px;

    font-size: 11px;

    color: rgba(255,255,255,.85);
}


/* =========================================================
   DESTAQUES LATERAIS
   ========================================================= */

.tema02-super-secundarias {
    display: grid;

    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);

    gap: 8px;

    height: 500px;
}


/* =========================================================
   CARD LATERAL
   ========================================================= */

.tema02-super-card {
    position: relative;

    min-height: 0;

    overflow: hidden;

    background: var(--cor-primaria);

    border-radius: 6px;
}

.tema02-super-card-image {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;
}

.tema02-super-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .4s ease;
}

.tema02-super-card:hover
.tema02-super-card-image img {
    transform: scale(1.04);
}


/* =========================================================
   GRADIENTE DOS CARDS
   ========================================================= */

.tema02-super-card-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 75%;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.88),
        rgba(0,0,0,.20),
        transparent
        );
}


/* =========================================================
   TEXTO DOS CARDS
   ========================================================= */

.tema02-super-card-content {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 18px;
}

.tema02-super-card-category {
    display: inline-block;

    margin-bottom: 6px;

    padding: 4px 7px;

    background: var(--cor-secundaria);

    border-radius: 3px;

    font-size: 8px;
    font-weight: 700;

    text-transform: uppercase;

    color: #fff;
}

.tema02-super-card-content h2 {
    margin: 0;

    font-size: 18px;
    line-height: 1.25;

    font-weight: 700;

    color: #fff;
}

.tema02-super-card-date {
    display: block;

    margin-top: 8px;

    font-size: 9px;

    color: rgba(255,255,255,.8);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .tema02-super-grid {
        grid-template-columns: 1.7fr 1fr;

        height: 430px;
    }

    .tema02-super-principal,
    .tema02-super-secundarias {
        height: 430px;
    }

    .tema02-super-content {
        padding: 22px;
    }

    .tema02-super-content h1 {
        font-size: 27px;
    }

    .tema02-super-card-content {
        padding: 13px;
    }

    .tema02-super-card-content h2 {
        font-size: 15px;
    }

}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 767px) {

    .tema02-super {
        padding: 15px 0 25px;
    }

    .tema02-super-grid {
        display: block;

        height: auto;
    }

    .tema02-super-principal {
        height: 350px;

        margin-bottom: 8px;
    }

    .tema02-super-secundarias {
        height: auto;

        grid-template-rows: none;

        gap: 8px;
    }

    .tema02-super-card {
        height: 180px;
    }

    .tema02-super-content {
        padding: 20px;
    }

    .tema02-super-content h1 {
        max-width: 100%;

        font-size: 23px;
    }

}



/* =========================================================
   TEMA 02
   NOTÍCIAS EM DESTAQUE
   ========================================================= */

.tema02-destaques {
    padding: 10px 0 35px;
}


/* =========================================================
   TÍTULO DA SEÇÃO
   ========================================================= */

.tema02-section-title {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 20px;

    padding-bottom: 12px;

    border-bottom: 2px solid #e5e7eb;
}

.tema02-section-kicker {
    display: block;

    margin-bottom: 4px;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;

    color: var(--cor-secundaria);
}

.tema02-section-title h2 {
    position: relative;

    margin: 0;

    padding-left: 12px;

    font-size: 24px;
    line-height: 1.2;

    font-weight: 700;

    color: #17202a;
}

.tema02-section-title h2:before {
    content: "";

    position: absolute;

    left: 0;
    top: 2px;
    bottom: 2px;

    width: 4px;

    background: var(--cor-secundaria);

    border-radius: 2px;
}

.tema02-section-more {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    font-size: 12px;
    font-weight: 600;

    color: #777;

    text-decoration: none;
}

.tema02-section-more:hover {
    color: var(--cor-secundaria);

    text-decoration: none;
}


/* =========================================================
   GRID
   ========================================================= */

.tema02-destaques-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;
}


/* =========================================================
   CARD
   ========================================================= */

.tema02-destaque-card {
    overflow: hidden;

    background: #fff;

    border: 1px solid #e7e9ec;

    border-radius: 8px;

    box-shadow: 0 3px 12px rgba(0, 0, 0, .05);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.tema02-destaque-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, .10);
}

.tema02-destaque-link {
    display: block;

    color: inherit;

    text-decoration: none;
}

.tema02-destaque-link:hover {
    color: inherit;

    text-decoration: none;
}


/* =========================================================
   IMAGEM
   ========================================================= */

.tema02-destaque-image {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #eee;
}

.tema02-destaque-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .4s ease;
}

.tema02-destaque-card:hover
.tema02-destaque-image img {
    transform: scale(1.04);
}


/* =========================================================
   CONTEÚDO
   ========================================================= */

.tema02-destaque-content {
    padding: 15px 17px 16px;
}

.tema02-destaque-category {
    display: inline-block;

    margin-bottom: 7px;

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .8px;

    color: var(--cor-secundaria);
}

.tema02-destaque-content h3 {
    margin: 0;

    font-size: 17px;
    line-height: 1.35;

    font-weight: 700;

    color: #20252b;
}


/* =========================================================
   META
   ========================================================= */

.tema02-destaque-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 11px;

    font-size: 10px;

    color: #999;
}

.tema02-destaque-meta span {
    display: inline-flex;

    align-items: center;

    gap: 4px;
}

.tema02-destaque-meta i {
    color: var(--cor-secundaria);
}


/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-width: 767px) {

    .tema02-section-title {
        align-items: center;
    }

    .tema02-section-title h2 {
        font-size: 20px;
    }

    .tema02-section-more {
        font-size: 11px;
    }

    .tema02-destaques-grid {
        grid-template-columns: 1fr 1fr;

        gap: 12px;
    }

    .tema02-destaque-content {
        padding: 12px;
    }

    .tema02-destaque-content h3 {
        font-size: 14px;
    }

}


@media (max-width: 480px) {

    .tema02-destaques-grid {
        grid-template-columns: 1fr;
    }

    .tema02-destaque-content h3 {
        font-size: 16px;
    }

}

/* =========================================================
   TEMA 02
   TOPBAR
   ========================================================= */

.tema02-topbar {
    width: 100%;

    background: var(--cor-primaria);

    color: #fff;

    font-size: 11px;
}

.tema02-topbar-inner {
    min-height: 42px;

    display: flex;

    align-items: center;

    gap: 22px;
}

.tema02-topbar-item {
    display: flex;

    align-items: center;

    gap: 6px;

    white-space: nowrap;

    color: #eee;
}

.tema02-topbar-item i {
    color: #f58220;
}


/* =========================================================
   MERCADO
   ========================================================= */

.tema02-topbar-market {
    display: flex;

    align-items: center;

    gap: 6px;

    white-space: nowrap;

    font-size: 10px;
}

.tema02-market-label {
    color: #aaa;
}

.tema02-market-value {
    color: #fff;

    font-weight: 600;
}

.tema02-market-change {
    color: #23c483;

    font-weight: 600;
}


/* =========================================================
   AO VIVO
   ========================================================= */

.tema02-live {
    display: flex;

    align-items: center;

    gap: 6px;

    padding: 5px 8px;

    border: 1px solid #555;

    border-radius: 3px;

    font-size: 9px;

    font-weight: 700;

    color: #fff;
}

.tema02-live-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--cor-secundaria);
}


/* =========================================================
   REDES
   ========================================================= */

.tema02-topbar-social {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-left: auto;
}

.tema02-topbar-social a {
    display: flex;

    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 13px;

    text-decoration: none;

    transition: color .2s ease;
}

.tema02-topbar-social a:hover {
    color: #f58220;
}


/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-width: 991px) {

    .tema02-topbar-inner {
        gap: 12px;

        overflow: hidden;
    }

    .tema02-topbar-market:nth-of-type(n+3) {
        display: none;
    }

}


@media (max-width: 767px) {

    .tema02-topbar {
        display: none;
    }

}
/* =========================================================
   TEMA 02
   LOGO + BANNER + BUSCA
   ========================================================= */

.tema02-logo-row {
    background: #fff;

    padding: 22px 0;
}

.tema02-logo-grid {
    display: grid;

    grid-template-columns: 1fr 2fr 1fr;

    align-items: center;

    gap: 25px;
}

.tema02-logo img {
    display: block;

    max-width: 100%;

    max-height: 105px;

    width: auto;
}

.tema02-logo-banner {
    display: flex;

    align-items: center;
    justify-content: center;
}

.tema02-logo-banner img {
    display: block;

    max-width: 100%;
    height: auto;
}

.tema02-logo-search {
    display: flex;

    align-items: center;
    justify-content: flex-end;
}

.tema02-logo-search form {
    width: 100%;
}

.tema02-logo-search input {
    height: 44px;

    border: 1px solid #e5e5e5;

    border-radius: 22px;

    padding: 0 45px 0 18px;

    box-shadow: none;
}

.tema02-logo-search button {
    height: 44px;

    width: 44px;

    border: 0;

    border-radius: 50%;

    background: var(--cor-secundaria);

    color: #fff;
}


/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-width: 991px) {

    .tema02-logo-grid {
        grid-template-columns: 1fr 1.7fr;
    }

    .tema02-logo-search {
        display: none;
    }

}


@media (max-width: 767px) {

    .tema02-logo-row {
        padding: 15px 0;
    }

    .tema02-logo-grid {
        grid-template-columns: 1fr;
    }

    .tema02-logo {
        text-align: center;
    }

    .tema02-logo img {
        margin: 0 auto;

        max-height: 75px;
    }

}

/* =========================================================
   TEMA 02
   MENU PRINCIPAL
   ========================================================= */

.tema02-menu {
    width: 100%;

    background: var(--cor-primaria);

    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.tema02-menu-inner {
    position: relative;

    display: flex;

    align-items: stretch;
}


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

.tema02-main-menu {
    display: flex;

    align-items: stretch;

    width: 100%;

    margin: 0;
    padding: 0;

    list-style: none;
}


/* =========================================================
   ITENS
   ========================================================= */

.tema02-main-menu > li {
    position: relative;

    margin: 0;
    padding: 0;
}

.tema02-main-menu > li > a {
    display: flex;

    align-items: center;

    height: 52px;

    padding: 0 18px;

    color: #fff;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    text-decoration: none;

    white-space: nowrap;

    transition:
        background .2s ease,
        color .2s ease;
}

.tema02-main-menu > li > a:hover {
    background: #222;

    color: #fff;
}


/* =========================================================
   HOME
   ========================================================= */

.tema02-main-menu .tema02-home > a {
    width: 52px;

    justify-content: center;

    padding: 0;

    background: var(--cor-secundaria);

    font-size: 18px;
}

.tema02-main-menu .tema02-home > a:hover {
    background: #d4470c;

    color: #fff;
}


/* =========================================================
   MAIS
   ========================================================= */

.tema02-menu-more > a i {
    margin-left: 6px;

    font-size: 10px;
}


/* =========================================================
   DROPDOWN
   ========================================================= */

.tema02-dropdown {
    position: absolute;

    top: 52px;
    left: 0;

    z-index: 9999;

    display: none;

    min-width: 200px;

    margin: 0;
    padding: 8px 0;

    background: var(--cor-primaria);

    border-top: 3px solid var(--cor-secundaria);

    list-style: none;

    box-shadow: 0 5px 15px rgba(0,0,0,.25);
}

.tema02-menu-more:hover .tema02-dropdown {
    display: block;
}

.tema02-dropdown li {
    margin: 0;
    padding: 0;
}

.tema02-dropdown li a {
    display: block;

    padding: 11px 16px;

    color: #fff;

    font-size: 11px;

    font-weight: 600;

    text-decoration: none;

    text-transform: uppercase;
}

.tema02-dropdown li a:hover {
    background: var(--cor-secundaria);

    color: #fff;
}


/* =========================================================
   MOBILE
   ========================================================= */

.tema02-mobile-button {
    display: none;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    color: #fff;

    font-size: 20px;

    cursor: pointer;
}

.tema02-mobile-check {
    display: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .tema02-main-menu > li > a {
        padding: 0 11px;

        font-size: 10px;
    }

    .tema02-main-menu .tema02-home > a {
        width: 46px;
    }

}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 767px) {

    .tema02-menu {
        min-height: 48px;
    }

    .tema02-menu-inner {
        display: block;
    }

    .tema02-mobile-button {
        display: flex;
    }

    .tema02-main-menu {
        display: none;

        flex-direction: column;

        width: 100%;
    }

    .tema02-mobile-check:checked
    + .tema02-main-menu {
        display: flex;
    }

    .tema02-main-menu > li > a {
        width: 100%;

        height: 45px;

        padding: 0 15px;
    }

    .tema02-main-menu .tema02-home > a {
        width: 100%;

        justify-content: flex-start;

        padding: 0 15px;
    }

    .tema02-dropdown {
        position: static;

        width: 100%;

        border-top: 0;

        box-shadow: none;
    }

    .tema02-menu-more:hover .tema02-dropdown {
        display: none;
    }

    .tema02-menu-more > a:focus + .tema02-dropdown {
        display: block;
    }

}