.header-logo-title {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: center;
}

.header-logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    background: #fff8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

body {
	background-color: #a5794b;
	color: #fff8f0;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
}

header, footer {
	background-color: #6B3F13;
	text-align: center;
	padding: 1em 0;
}

.site-title {
    color: #fff;
    font-size: 2.5em;
    margin: 0;
}

.welcome-section {
    background: #fff;
    max-width: 700px;
    margin: 40px auto;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    text-align: center;
}

.welcome-section h2 {
    color: #6B3F13;
    margin-bottom: 16px;
}

.welcome-section p {
    color: #000000;
    font-size: 1.1em;
    margin-bottom: 28px;
}

.features {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.feature {
    background: #f1bb85;
    border-radius: 8px;
    padding: 18px 12px;
    flex: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.feature h3 {
    color: #6B3F13;
    margin-bottom: 8px;
    font-size: 18px;
}

.feature p {
    color: #000000;
    font-size: 15px;
}

.cta-button {
    display: inline-block;
    padding: 12px 32px;
    background: #6B3F13;
    color: #fff;
    border-radius: 6px;
    font-size: 17px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s;
    margin-top: 12px;
}

.cta-button:hover {
    background: #6B3F13;
}


.button-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
}

.cadastro-btn {
    padding: 10px 28px;
    background: #bfa16c;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    display: inline-block;
    transition: background 0.2s;
}

.cadastro-btn:hover {
    background: #FFD28F;
    color: #6B3F13
}


/* ============================================================================================================================================ */
.section {
    background: #6B3F13;
    max-width: 700px;
    margin: 40px auto;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    text-align: center;
}

.section h2 {
    color: #6B3F13;
    margin-bottom: 16px;
}

.section p {
    color: #000000;
    font-size: 1.1em;
    margin-bottom: 28px;
}

.secondary-main {
    background: #be8a52;
    padding: 32px 0;
}


/* ========================================================================================================================== */
/*Perfil do usuário*/

.user-profile-section {
    display: flex;
    align-items: center;
    gap: 32px;
    background: #fff;
    max-width: 700px;
    margin: 40px auto;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.user-photo-area {
    flex-shrink: 0;
    background: #f1bb85;
    border-radius: 50%;
    width: 128px;
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 4px solid #bfa16c;
}

.user-info-area h2 {
    color: #6B3F13;
    margin-bottom: 16px;
}

.user-info-area p {
    color: #000000;
    font-size: 1.1em;
    margin-bottom: 10px;
}

/* ===============================================================================================================================*/
/* Botões de ação do perfil */

.profile-buttons-area {
    display: flex;
    gap: 16px;
    margin-top: 18px;
}

.inventario-btn {
    padding: 10px 28px;
    background: #bfa16c;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    transition: background 0.2s;
    cursor: pointer;
}

.inventario-btn:hover {
    background: #FFD28F;
    color: #6B3F13;
}

.logout-btn {
    padding: 10px 28px;
    background: #bfa16c;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    transition: background 0.2s;
    cursor: pointer;
}

.logout-btn:hover {
    background: #bfa16c;
    color: #6B3F13;
}

/* ================================================================================================================== */
/* Header */

.header-logo-title {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    justify-content: space-between;
    padding: 0 32px;
}

.site-title {
    color: #fff;
    font-size: 2.5em;
    margin: 0;
    text-align: left;
    flex: 1;
}

.back-btn {
    padding: 8px 22px;
    background: #bfa16c;
    color: #000;
    border-radius: 6px;
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    margin-left: auto;
    margin-top: 8px;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    align-self: flex-start;
}

.back-btn:hover {
    background: #FFD28F;
    color: #6B3F13;
}
/* =================================================================================================================== */
/* footer */
.footer-links {
    text-align: center;
    margin-bottom: 8px;
}

.footer-link {
    color: #FFD28F;
    text-decoration: none;
    font-size: 1.1em;
    margin: 0 10px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-thanks {
    text-align: center;
    color: #fff8f0;
    font-size: 1em;
    margin-bottom: 4px;
}