* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Topbar */
.topbar {
    background-color: #1e1e2f;
    color: white;
    padding: 10px 0;
}

.topbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-logo img {
    max-height: 80px;
}

.topbar-actions {
    display: flex;
    gap: 15px;
}

.topbar-actions .btn-login,
.topbar-actions .btn-signup {
    background-color: transparent;
    color: #fff;
    border: 1px solid #4CAF50;
    padding: 8px 18px;
    font-size: 0.95em;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.topbar-actions .btn-login:hover,
.topbar-actions .btn-signup:hover {
    background-color: #4CAF50;
    color: #fff;
}


/* Hero */
.hero {
    background: url('images/background.jpeg') no-repeat center center/cover;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Alinha à esquerda */
    padding-left: 8%;
}

.hero-overlay {
   
    padding: 60px 30px;
    border-radius: 10px;
    max-width: 500px;
}


.hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.hero button {
    padding: 12px 30px;
    font-size: 1em;
    background-color: white;
    color: #0057b7;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.hero button:hover {
    background-color: #e0e0e0;
}

/* Cards */
.cards-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

.cards-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    background-color: #f8f8f8;
    width: 250px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}

.card:hover {
    transform: scale(1.05);
    background-color: #e6f0ff;
}

.card h3 {
    margin-bottom: 10px;
}

.card p {
    font-size: 0.95em;
}

/* Formulário com 2 colunas */
.form-section {
    background-color: #e9ecef;
    padding: 60px 20px;
}

.form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Coluna do formulário */
.form-left {
    flex: 1 1 400px;
}

.form-left h2 {
    margin-bottom: 20px;
}

.form-left form {
    display: flex;
    flex-direction: column;
}

.form-left input,
.form-left textarea {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
}

.form-left button {
    padding: 14px;
    background-color: #1e90ff;
    color: white;
    font-size: 1.1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.form-left button:hover {
    background-color: #0057b7;
}

/* Coluna com informações */
.form-right {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-right h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.form-right p {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 1em;
}

/* Card ativo opcional */
.card.active {
    border: 2px solid #1e90ff;
}
.footer {
    background-color: #1e1e2f;
    color: white;
    padding: 40px 20px 20px;
    font-size: 0.95em;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

/* Logo */
.footer-logo {
    flex: 1 1 250px;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #ccc;
    font-size: 0.95em;
}

/* Colunas de links */
.footer-links {
    flex: 2 1 600px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-column h4 {
    margin-bottom: 12px;
    font-size: 1.1em;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

/* Base do rodapé */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 15px;
    font-size: 0.9em;
    color: #aaa;
}
/* Seção informativa com gráfico */
.info-section {
    background-color: #fff;
    padding: 60px 20px;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.info-text {
    flex: 1 1 500px;
}

.info-text h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.info-text p {
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.6;
}

.info-text ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.info-text ul li {
    margin-bottom: 10px;
    font-size: 1em;
}

.info-graphic {
    flex: 1 1 400px;
    text-align: center;
}

.info-graphic h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
}

.info-graphic img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}

.grafico-legenda {
    font-size: 0.85em;
    color: #666;
}
/* Responsividade do HERO */
@media (max-width: 768px) {
    .hero {
        justify-content: center; /* Centraliza o conteúdo em telas menores */
        padding-left: 0;
        text-align: center;
    }

    .hero-overlay {
        max-width: 90%;
        padding: 40px 20px;
    }

    .hero-overlay h1 {
        font-size: 2.2em;
    }

    .hero-overlay p {
        font-size: 1em;
    }

    .hero-overlay button {
        font-size: 0.95em;
        padding: 10px 24px;
    }
}

@media (max-width: 480px) {
    .hero-overlay h1 {
        font-size: 1.8em;
    }

    .hero-overlay p {
        font-size: 0.95em;
    }

    .hero-overlay button {
        font-size: 0.9em;
        padding: 10px 20px;
    }
}
.btn-login, .btn-cadastro {
  display: inline-block;
  padding: 10px 15px;
  background-color: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main.main-content {
  flex: 1;
  padding: 20px;
  background: #f7f9fb;
}

.main-footer {
  background-color: #2c3e50;
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  margin-top: auto;
}
