/*
Theme Name: Expresso Planejamento
Author: Daniela Ponciano 
Author URI: http://www.danielaponciano.com
Description: Tema feito para você
Version: 1.0
Tags: Responsive, Flexbox

*/
:root {
    /* Fonts */
    --ff-main: "Oswald", sans-serif;
    --ff-title: "Oswald", sans-serif;
    /* Defaults */
    --base-boxshadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    --base-transition: 0.3s ease-in-out;
    /* Colours */
    --basecolor-black: #1F1F1F;
    --basecolor-light-gray: #C6C6C6;
    --basecolor-light-gray-text: #707070;
    --basecolor-white: #FCFCFC;
}

html {
}

body {
    font-family: var(--ff-main);
    line-height: 1.5;
    font-weight: 300;
    height: 100%;
    font-size: 17px;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: var(--base-transition);
}

a:hover, a:focus {
    color: inherit;
    opacity: 0.5;
    text-decoration: none;
}

a:focus {
    outline: 0;
}

img {
    vertical-align: middle;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-title);
}

.custom-edit-button {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    background-color: var(--basecolor-white);
    color: var(--basecolor-black);
    border-radius: 3rem;
    height: 3rem;
    width: 3rem;
    text-indent: -999999px;
    background-image: url(./images/edit.svg);
    background-size: 1.6rem;
    background-repeat: no-repeat;
    background-position: center;
}

/* =========================================== Index  =============== */
.tabs {
    width: 100%;
    /* margin: 2rem 0; */
}

.tab-buttons {
    display: flex;
}

.tab-btn {
    flex: 1;
    padding: 15px 15px;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    transition: background 0.3s;
    font-size: 2rem;
    font-weight: 100;
    box-shadow: inset 0 -47px 10px -40px rgb(0 0 0 / 10%);
}

.tab-btn.active {
    background: #227002;
    border-bottom: 2px solid #227002;
    color: #fff;
    box-shadow: none;
}

.tab-btn:hover:not(.active) {
    background: #eaeaea;
}

.tab-content {
    border-top: none;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tabInner {
    display: flex;
    align-items: center;
    padding: 4rem;
    flex-direction: column;
    text-align: center;
}

.fundos-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.fundos-table th, .fundos-table td {
    border: 1px solid #ccc;
    padding: 10px 8px;
    text-align: center;
    vertical-align: middle;
    min-width: 80px;
}

.fundos-table th {
    background-color: #2d2d2d;
    font-size: 2rem;
    color: #fff;
}

.fundos-table td:empty::before {
    content: "–";
    color: #999;
    font-style: italic;
}

.fundos-table tbody tr:nth-child(3n+1) {
    background-color: #f6f6f6;
}

.fundos-table tbody tr {
    transition: .3s;
}

.fundos-table tbody tr:hover {
    background-color: rgb(84 199 89 / 42%);
}

.single404 {
    display: flex;
    flex-direction: column;
    min-height: 70vh;
    text-align: center;
    justify-content: center;
    font-size: 2rem;
}

.single404 h2 {
    font-size: 11rem;
    line-height: .9;
    opacity: .2;
}

.single404 span {
    display: block;
    font-size: 7rem;
}

.single404 p {
}

/* BreakPoint Mobile */
@media(max-width: 991px) {
    .fundos-table {
        font-size:1rem;
    }

    .tabInner {
        padding: 1rem;
    }

    .fundos-table th, .fundos-table td {
        min-width: auto;
    }

    .fundos-table th {
        font-size: 1.4rem;
    }

    .tab-btn {
        font-size: 1.5rem;
    }
}
