/* Container centralizado */
.form-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    text-align: center;
    color: #d63384;
    margin-bottom: 20px;
}

.form-container label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

.form-container input[type="email"],
.form-container input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-container button {
    width: 100%;
    padding: 12px;
    background-color: #ff66b2;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-container button:hover {
    background-color: #e055a1;
}

.link-cadastro {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9rem;
}

.link-cadastro a {
    color: #d63384;
    text-decoration: underline;
}

.mensagem {
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-weight: bold;
}

.erro {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.sucesso {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
/* Reset básico */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffe6f0;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #ff66b2;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header .logo h1 {
    margin: 0;
    font-size: 1.8rem;
}

nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 5px;
    font-size: 0.9rem;
    background-color: #e055a1;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #c0408c;
}

nav a.btn-admin {
    background-color: #007bff;
}

nav a.btn-parceiro {
    background-color: #28a745;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85vh;
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, #ffc0cb, #ffe6f0);
}

.container {
    max-width: 700px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #d63384;
}

.container p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #ff66b2;
    color: white;
    position: relative;
}
.perfil-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.btn-sair {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #dc3545;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-sair:hover {
    background-color: #c82333;
}
.perfil-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.btn-sair {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #dc3545;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-sair:hover {
    background-color: #c82333;
}
.dashboard-container {
    padding: 40px 20px;
    text-align: center;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 250px;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 10px;
    color: #d63384;
}
.lista-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.tabela-lista {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tabela-lista thead {
    background-color: #ff66b2;
    color: white;
}

.tabela-lista th,
.tabela-lista td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.tabela-lista tr:hover {
    background-color: #fff0f6;
}
.lista-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.titulo-pagina {
    text-align: center;
    margin-bottom: 30px;
}

.titulo-pagina h2 {
    font-size: 2rem;
    color: #d63384;
}

.titulo-pagina p {
    font-size: 1rem;
    color: #555;
}

.alerta {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

.alerta.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.tabela-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.tabela-lista {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    min-width: 600px;
}

.tabela-lista thead {
    background-color: #ff66b2;
    color: white;
}

.tabela-lista th,
.tabela-lista td {
    padding: 12px 16px;
    border-bottom: 1px solid #ddd;
    text-align: left;
    vertical-align: middle;
}

.tabela-lista tr:hover {
    background-color: #fff0f6;
}

.tabela-lista a {
    color: #d63384;
    text-decoration: none;
}

.tabela-lista a:hover {
    text-decoration: underline;
}
.dashboard-container {
    padding: 40px 20px;
    text-align: center;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 250px;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 10px;
    color: #d63384;
}
.link-cadastro {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9rem;
}

.link-cadastro a {
    color: #d63384;
    text-decoration: underline;
}

.link-cadastro a:hover {
    text-decoration: none;
}
.link-login {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9rem;
}

.link-login a {
    color: #d63384;
    text-decoration: underline;
}
/* Campo de formulário */
.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="password"],
.form-container textarea,
.form-container select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

/* Foco nos campos */
.form-container input:focus,
.form-container textarea:focus,
.form-container select:focus {
    border-color: #d63384;
    outline: none;
}