* {
    -webkit-tap-highlight-color: transparent;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
    
}

body {
    background-color: #f4f4f4;
    color: #333;
}

header {
    background: #0073e6;
    color: #ffffff;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0px 4px 10px #0000001a;
    z-index: 1000;
}

.admin {
    margin: 5px;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

nav ul li a:hover {
    text-decoration: underline;
}

.hero {
    height: 100vh;
    background: linear-gradient(to right, #0073e6, #005bb5);
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
}

.btn {
    display: inline-block;
    background: #ffffff;
    color: #0073e6;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #005bb5;
    color: #ffffff;
}

.section {
    padding: 80px 20px;
    text-align: center;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0073e6;
}

.section p {
    font-size: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.vantagens {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.vantagem {
    background: #ffffff;
    padding: 20px;
    width: 250px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px #0000001a;
}

.vantagem h3 {
    color: #0073e6;
    font-size: 18px;
    margin-bottom: 15px;
}

footer {
    background: #0073e6;
    color: #ffffff;
    text-align: center;
    padding: 20px 10px;
    margin-top: 50px;
}

.redes-sociais a {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
}

.redes-sociais a:hover {
    text-decoration: underline;
}

.rodape {
    font-size: 15px;
}

@media (max-width: 768px) {

    .vantagem {
        width: 100vw;
    }

    .container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 10px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }
}










.admin > p {
    padding-top: 10px;
    margin: 0;
}

.admin {
    padding: 10px;
    background-color: #fff;
}

.btn:hover, button:hover {
    background-color: #0056b3;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.table th, .table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #000000;
    white-space: nowrap;
}

.table th {
    background-color: #007bff;
    color: white;
}

.table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.table tbody tr:hover {
    background-color: #e9ecef;
}

.tabela-container {
    overflow-x: auto;
    max-width: 100%;
}