*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

html,
body{
    overflow-x:hidden;
    background:#f5f5f5;
}

/* ==========================================
TOPO
========================================== */

.topo{
    background:#2573ea;
    background-image: url(../img/bg.svg);
background-repeat: no-repeat;
background-position: right bottom;
    padding-bottom:80px;
    position:relative;
    overflow:hidden;
}

.menu{
    width:1200px;
    max-width:95%;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
    position:relative;
    z-index:2;
}

.logo img{
    width:90px;
    display:block;
}

nav{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
    justify-content:center;
}

nav a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    transition:.3s;
}

nav a:hover{
    opacity:.8;
}

/* ==========================================
BANNER
========================================== */

.banner{
    width:1200px;
    max-width:95%;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    padding-top:80px;
    position:relative;
    z-index:2;
}

.texto{
    flex:1;
}

.texto h1{
    font-size:80px;
    color:#fff;
    line-height:80px;
    font-weight:700;
}

.imagem{
    flex:1;
    display:flex;
    justify-content:center;
}

.imagem img{
    width:100%;
    max-width:470px;
    border-radius:30px;
    display:block;
    object-fit:cover;
}

/* ==========================================
ÁREA DA TABELA
========================================== */

.tabela-area{
    width:1100px;
    max-width:95%;
    margin:50px auto;
}

.tabela-area p{
    margin-bottom:25px;
    color:#444;
    line-height:25px;
    font-size:15px;
}

/* ==========================================
SCROLL APENAS NA TABELA
========================================== */

.tabela-scroll{
    width:100%;
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
    border-radius:10px;
    background:#fff;
}

/* ==========================================
SCROLL CUSTOMIZADO
========================================== */

.tabela-scroll::-webkit-scrollbar{
    height:8px;
}

.tabela-scroll::-webkit-scrollbar-track{
    background:#e5e5e5;
    border-radius:20px;
}

.tabela-scroll::-webkit-scrollbar-thumb{
    background:#2573ea;
    border-radius:20px;
}

/* ==========================================
TABELA
========================================== */

table{
    width:100%;
    min-width:900px;
    border-collapse:collapse;
    background:#fff;
}

thead{
    background:#dcebf5;
}

th{
    padding:15px;
    border:1px solid #ddd;
    text-align:left;
    font-size:15px;
    color:#222;
    white-space:nowrap;
}

td{
    padding:15px;
    border:1px solid #ddd;
    font-size:14px;
    color:#555;
    white-space:nowrap;
}

tbody tr{
    transition:.3s;
}

tbody tr:hover{
    background:#f5f5f5;
}

/* ==========================================
TABLET
========================================== */

@media(max-width: 768px){

    .topo{
        padding-bottom:50px;
    }

    .menu{
        flex-direction:column;
        gap:20px;
    }

    nav{
        gap:15px;
    }

    nav a{
        font-size:14px;
    }

    .banner{
        flex-direction:column;
        text-align:center;
        padding-top:40px;
        gap:30px;
    }

    .texto{
        width:100%;
    }

    .texto h1{
        font-size:52px;
        line-height:55px;
    }

    .imagem{
        width:100%;
    }

    .imagem img{
        width:100%;
        max-width:100%;
    }

    .tabela-area{
        margin-top:40px;
    }

}

/* ==========================================
MOBILE
========================================== */

@media(max-width: 480px){

    .topo{
        padding-bottom:40px;
    }

    .menu{
        gap:15px;
        padding:15px 0;
    }

    .logo img{
        width:70px;
    }

    nav{
        gap:10px;
    }

    nav a{
        font-size:13px;
    }

    .banner{
        padding-top:20px;
        gap:25px;
    }

    .texto h1{
        font-size:36px;
        line-height:38px;
        padding:0 10px;
    }

    .imagem img{
        border-radius:20px;
    }

    .tabela-area{
        margin:30px auto;
    }

    .tabela-area p{
        font-size:14px;
        line-height:22px;
    }

    table{
        min-width:850px;
    }

    th{
        font-size:13px;
        padding:12px;
    }

    td{
        font-size:13px;
        padding:12px;
    }

}

/* ==========================================
TELAS MUITO PEQUENAS
========================================== */

@media(max-width: 360px){

    .texto h1{
        font-size:30px;
        line-height:32px;
    }

    nav a{
        font-size:12px;
    }

}




