/* ================== RESET/BÁSICO ================== */
* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    border: none;
    background: none;
    padding: 0;
    font: inherit;
}

/* Tipografia e cores base (preto e branco) */
body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: #111;
    background: #fff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ================== HEADER ================== */
.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.header__inner {
    display: grid;
    grid-template-columns: auto minmax(220px, 1fr) auto auto;
    align-items: center;
    gap: 16px;
    min-height: 64px;
}

.header__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    gap: 5px;
}

.header__logo .logo-img {
    height: 78px;
    width: auto;
    display: block;
}

.header__search {
    display: flex;
    margin-inline: clamp(16px, 3vw, 32px);
}

.header__search input[type="search"] {
    width: 100%;
    height: 40px;
    border: 0;
    border-radius: 8px;
    background: #f4f4f4;
    padding: 0 14px;
    outline: none;
}

.header__search input::placeholder {
    color: #9b9b9b;
}

.header__search input:focus {
    background: #f8f8f8;
    box-shadow: 0 0 0 2px #e5e5e5;
}

.header__nav ul {
    display: flex;
    gap: 22px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__nav a {
    text-decoration: none;
    color: #6b6b6b;
    font-size: 14px;
    transition: color .18s, transform .18s;
}

.header__nav a[aria-current="page"] {
    color: #111;
    font-weight: 600;
}

.header__nav a:hover {
    color: #111;
    transform: translateY(-1px);
}

.header__icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    color: #111;
    transition: transform .15s, background-color .15s;
}

.icon-btn:hover {
    transform: scale(1.05);
    background: #f6f6f6;
}


/* ============== AUTH (Cadastro/Login) — Preto & Branco ============== */
.auth {
    background: #f3f3f5;
    padding: 48px 0 80px;
}

.auth__card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .12);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    /* esquerda | direita */
    overflow: hidden;
}

/* Esquerda (form) */
.auth__left {
    padding: 32px 36px;
}

.auth__title {
    margin: 0 0 14px;
    font-size: 24px;
    font-weight: 800;
    color: #111;
}

.auth__social {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.soc {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #111;
    border: 1px solid #e5e5e5;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: transform .12s ease, background .12s ease;
}

.soc:hover {
    transform: translateY(-1px);
    background: #f6f6f6;
}

.auth__hint {
    color: #777;
    font-size: 12px;
    margin: 8px 0 14px;
}

.auth__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auth__input {
    height: 40px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    background: #fafafa;
    padding: 0 12px;
    outline: none;
    color: #111;
}

.auth__input:focus {
    background: #fff;
    box-shadow: 0 0 0 2px #e5e5e5;
}

.auth__forgot {
    align-self: flex-end;
    font-size: 12px;
    color: #666;
    text-decoration: none;
    margin-top: 4px;
}

.auth__forgot:hover {
    color: #111;
}

.auth__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 18px;
    border-radius: 12px;
    font-weight: 800;
    letter-spacing: .02em;
    text-decoration: none;
    cursor: pointer;
    transition: transform .15s ease, background-color .15s ease, color .15s ease, box-shadow .15s ease;
    border: 1px solid #111;
}

.auth__btn--dark {
    background: #111;
    color: #fff;
}

.auth__btn--dark:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .2);
}

.auth__btn--ghost {
    background: #fff;
    color: #111;
}

.auth__btn--ghost:hover {
    background: #f6f6f6;
    transform: translateY(-1px);
}

/* Direita (painel preto com borda curva) */
.auth__right {
    position: relative;
    background: #111;
    color: #fff;
    min-height: 360px;
}

.auth__right-inner {
    position: relative;
    z-index: 2;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.auth__hello {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
}

.auth__desc {
    margin: 0;
    color: #e6e6e6;
    font-size: 14px;
    max-width: 320px;
}

/* “Curva” no lado esquerdo do painel preto */
.auth__right::before {
    content: "";
    position: absolute;
    left: -140px;
    top: -40px;
    width: 360px;
    height: 360px;
    background: #111;
    border-radius: 50%;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, .2));
}

/* Acessibilidade */
.sr-only {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: -1px;
}



/* ===== FOOTER ===== */
.site-footer {
    background: #000;
    color: #fff;
    padding: 48px 0 72px;
}

/* Grade principal: 3 colunas com grandes respiros (sem breakpoints) */
.footer__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 96px;
    /* espaçamento entre colunas como no print */
    align-items: start;
}

/* Marca/descrição */
.footer__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.footer-logo-img {
    height: 24px;
    width: auto;
    display: block;
}

.footer__about {
    margin: 16px 0 24px;
    max-width: 360px;
    line-height: 1.6;
    color: #bdbdbd;
    font-size: 14px;
}

/* Redes sociais */
.footer__social {
    display: flex;
    gap: 16px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #fff;
    opacity: .85;
    text-decoration: none;
    transition: transform .15s ease, opacity .15s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    opacity: 1;
}

/* Colunas de navegação */
.footer__heading {
    margin: 0 0 14px;
    font-size: 13px;
    color: #e5e5e5;
    font-weight: 700;
    letter-spacing: .02em;
}

.footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__list li {
    margin: 8px 0;
}

.footer__list a {
    color: #bdbdbd;
    text-decoration: none;
    font-size: 13px;
    transition: color .15s ease, transform .15s ease;
}

.footer__list a:hover {
    color: #fff;
    transform: translateX(2px);
}