body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f8f8f8;
}

.logo {
    height: 50px;
}

/* Início Menu mobile */

.topnav {
  overflow: hidden;
}

.topnav a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  /*background-color: #04AA6D;*/
  color: black;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
/* Fim Menu mobile */

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
	font-weight: bold;
}

.auth-buttons a {
    margin-left: 15px;
    text-decoration: none;
}

.btn-login {
	text-decoration: none;
    padding: 5px 10px;
    background-color: #FFFFFF;
    color: #000000;
    border-radius: 5px;
}

.btn-register {
    padding: 5px 10px;
    background-color: #28a745;
    color: white;
    border-radius: 5px;
}

.btn-create {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.about, .benefits, .partnerships {
    padding: 20px;
}

.benefits .benefit-cards {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.benefit-card {
    background-color: #f9f9f9;
    padding: 20px;
    width: 25%;
    border-radius: 5px;
}

.laptop-image {
    max-width: 100%;
    height: auto;
}

.partners img {
    margin: 0 20px;
    height: 100px;
}

.center-table {
	margin-left: auto;
	margin-right: auto;
	/* Optional: Set a width for the table if it's not full-width */
	width: 50%; /* Example: table takes up 80% of its container's width */
}

footer {
    background-color: #f8f8f8;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}