/* =========================================================
   CLUBE ATLÉTICO LAJEADO
   CSS PRINCIPAL
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --preto: #080808;
    --amarelo: #ffd400;
    --branco: #ffffff;
    --cinza-claro: #f4f4f4;
    --cinza-medio: #e8e8e8;
    --cinza: #777777;
    --cinza-escuro: #4b5668;
    --texto: #181818;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--cinza-claro);
    color: var(--texto);
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: relative;
    z-index: 1000;

    width: 100%;

    background: var(--preto);

    border-bottom: 5px solid var(--amarelo);
}

.header-container {
    position: relative;

    width: min(1180px, calc(100% - 40px));
    height: 105px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 150px 1fr;

    align-items: center;
}


/* =========================================================
   NAVEGAÇÃO
   ========================================================= */

.nav {
    display: flex;

    align-items: center;

    gap: 34px;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

.nav a {
    position: relative;

    display: inline-block;

    color: var(--branco);

    text-decoration: none;

    font-size: 14px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .5px;

    padding: 42px 0;

    white-space: nowrap;
}

.nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 30px;

    width: 0;
    height: 3px;

    background: var(--amarelo);

    transition: width .2s ease;
}

.nav a:hover {
    color: var(--amarelo);
}

.nav a:hover::after {
    width: 100%;
}


/* =========================================================
   ESCUDO CENTRAL DO HEADER
   ========================================================= */

.header-logo {
    position: relative;

    height: 105px;

    display: flex;

    justify-content: center;
    align-items: center;
}

.header-logo a {
    display: block;
}

.header-logo img {
    display: block;

    width: 112px !important;
    height: 112px !important;
    max-width: 112px !important;

    object-fit: contain;

    transform: translateY(18px);

    filter: drop-shadow(
        0 5px 8px rgba(0, 0, 0, .35)
    );

    transition: transform .2s ease;
}

.header-logo img:hover {
    transform: translateY(18px) scale(1.04);
}


/* =========================================================
   BUSCA DO HEADER
   ========================================================= */

/* ÍCONE DA LUPA */

.search-toggle {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    padding: 0;

    border: 0;

    background: transparent;

    color: var(--branco);

    cursor: pointer;

    transition: color .2s ease;
}

.search-toggle svg {
    display: block;

    width: 23px;
    height: 23px;

    fill: none;

    stroke: currentColor;

    stroke-width: 2;

    stroke-linecap: round;
}

.search-toggle:hover {
    color: var(--amarelo);
}


/* ÁREA DA BUSCA */

.header-search {
    display: block;

    width: 100%;

    max-height: 0;

    overflow: hidden;

    background: #111111;

    border-top: 0 solid #222222;

    opacity: 0;

    transition:
        max-height .28s ease,
        opacity .2s ease,
        border-width .2s ease;
}


/* BUSCA ABERTA */

body.busca-aberta .header-search {
    max-height: 95px;

    opacity: 1;

    border-top-width: 1px;
}


/* FORMULÁRIO */

.header-search-form {
    width: min(760px, calc(100% - 40px));

    min-height: 78px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    gap: 10px;
}


/* CAMPO DE BUSCA */

.header-search-form input[type="search"] {
    flex: 1;

    min-width: 0;

    height: 44px;

    padding: 0 16px;

    border: 1px solid #3b3b3b;

    border-radius: 0;

    outline: none;

    background: var(--branco);

    color: var(--texto);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    appearance: none;

    -webkit-appearance: none;
}

.header-search-form input[type="search"]:focus {
    border-color: var(--amarelo);

    box-shadow: 0 0 0 1px var(--amarelo);
}

.header-search-form input[type="search"]::placeholder {
    color: #777777;
}


/* BOTÃO BUSCAR */

.search-submit {
    height: 44px;

    padding: 0 22px;

    border: 0;

    background: var(--amarelo);

    color: var(--preto);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    font-weight: 900;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease;
}

.search-submit:hover {
    background: var(--branco);

    color: var(--preto);
}


/* BOTÃO FECHAR */

.search-close {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    padding: 0;

    border: 0;

    background: transparent;

    color: var(--branco);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 30px;

    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition: color .2s ease;
}

.search-close:hover {
    color: var(--amarelo);
}


/* =========================================================
   BOTÃO MOBILE
   ========================================================= */

.menu-mobile {
    display: none;

    width: 42px;
    height: 42px;

    padding: 8px;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.menu-mobile span {
    display: block;

    width: 100%;
    height: 3px;

    margin: 5px 0;

    background: var(--amarelo);
}


/* =========================================================
   MENU MOBILE
   ========================================================= */

.mobile-nav {
    display: none;

    background: #111111;

    border-top: 1px solid #252525;

    padding: 15px 25px 25px;
}

.mobile-nav a {
    display: block;

    padding: 14px 5px;

    border-bottom: 1px solid #252525;

    color: var(--branco);

    text-decoration: none;

    font-size: 14px;

    font-weight: 800;

    text-transform: uppercase;
}

.mobile-nav a:hover {
    color: var(--amarelo);
}

.mobile-search-button {
    width: 100%;

    margin-top: 14px;

    padding: 14px 12px;

    border: 0;

    background: var(--amarelo);

    color: var(--preto);

    text-align: center;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;

    font-weight: 900;

    cursor: pointer;
}


/* =========================================================
   HOME - HERO
   ========================================================= */

.home-hero {
    position: relative;

    min-height: 650px;

    overflow: hidden;

    display: flex;

    align-items: center;

    background: var(--preto);
}

.home-hero-bg {
    position: absolute;

    inset: 0;

    background-image:
        url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjq9JoUr0O3We6ooE4bB5ek47jxv6wHrXtGgMROxP8HC_uYk2oYl_v0jZR1GwSiWo9dWUyMr3PTZUfpcHeUoDa-J6A7oXjKvYPjOZT4vRMaxcLMEAs36dQOPquSTbSQFhVEz4QQbe4q6lIV/w1684-h1069-p-k-no-nu/titulo_atletico_lajeado.jpg");

    background-size: cover;

    background-position: center;

    transform: scale(1.02);
}

.home-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .92) 0%,
            rgba(0, 0, 0, .72) 38%,
            rgba(0, 0, 0, .25) 70%,
            rgba(0, 0, 0, .12) 100%
        );
}

.home-hero-content {
    position: relative;

    z-index: 2;

    width: min(1180px, calc(100% - 50px));

    margin: 0 auto;

    color: var(--branco);
}

.home-hero-kicker {
    display: inline-block;

    margin-bottom: 18px;

    padding: 7px 12px;

    background: var(--amarelo);

    color: var(--preto);

    font-size: 13px;

    font-weight: 900;

    letter-spacing: 1px;
}

.home-hero h1 {
    max-width: 700px;

    margin: 0 0 18px;

    font-size: clamp(48px, 6vw, 82px);

    line-height: .95;

    font-weight: 900;

    letter-spacing: -2px;
}

.home-hero h1 strong {
    color: var(--amarelo);
}

.home-hero p {
    max-width: 560px;

    margin-bottom: 30px;

    font-size: 19px;

    line-height: 1.5;

    color: #eeeeee;
}

.hero-button {
    display: inline-block;

    padding: 15px 21px;

    background: var(--amarelo);

    color: var(--preto);

    text-decoration: none;

    font-size: 13px;

    font-weight: 900;

    transition: .2s ease;
}

.hero-button:hover {
    background: var(--branco);

    transform: translateY(-2px);
}


/* =========================================================
   PÁGINA DE BUSCA
   ========================================================= */

.search-page {
    width: 100%;
    min-height: 600px;
    padding: 70px 20px 90px;
    background: var(--cinza-claro);
}

.search-page-container {
    width: min(1100px, 100%);
    margin: 0 auto;
}

.search-page-heading {
    margin-bottom: 30px;
}

.search-page-kicker {
    display: block;
    color: var(--cinza);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.search-page-heading h1 {
    margin: 6px 0 12px;
    color: var(--preto);
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1px;
}

.search-page-line {
    width: 55px;
    height: 4px;
    margin-bottom: 28px;
    background: var(--amarelo);
}

.search-page-form {
    display: flex;
    gap: 10px;
    width: min(760px, 100%);
    margin-bottom: 35px;
}

.search-page-form input[type="search"],
.search-page-form input[type="text"] {
    flex: 1;
    min-width: 0;
    height: 52px;
    padding: 0 17px;
    border: 2px solid #d7d7d7;
    border-radius: 0;
    background: var(--branco);
    color: var(--texto);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.search-page-form input[type="search"]:focus,
.search-page-form input[type="text"]:focus {
    border-color: var(--amarelo);
}

.search-page-form button {
    height: 52px;
    padding: 0 24px;
    border: 0;
    background: var(--amarelo);
    color: var(--preto);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.search-page-form button:hover {
    background: var(--preto);
    color: var(--branco);
}

.search-message {
    padding: 25px 28px;
    background: var(--branco);
    border-left: 5px solid var(--amarelo);
    color: #555555;
    line-height: 1.6;
}

.search-results-header {
    margin-bottom: 25px;
    color: #555555;
    font-size: 16px;
}

.search-results {
    display: grid;
    gap: 16px;
}

.search-result-card {
    padding: 25px 28px;
    background: var(--branco);
    border-left: 5px solid var(--amarelo);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .03);
}

.search-result-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--cinza);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.search-result-type {
    display: inline-block;
    padding: 5px 8px;
    background: var(--preto);
    color: var(--branco);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .5px;
}

.search-result-type.is-news {
    background: var(--amarelo);
    color: var(--preto);
}

.search-result-type.is-memorial {
    background: var(--preto);
    color: var(--branco);
}

.search-result-date {
    color: var(--cinza);
}

.search-result-card h2 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.2;
}

.search-result-card h2 a {
    color: var(--preto);
    text-decoration: none;
}

.search-result-card h2 a:hover {
    color: #8a7300;
}

.search-result-card p {
    margin: 0;
    color: #555555;
    line-height: 1.6;
}

.search-result-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--preto);
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.search-result-link:hover {
    color: #9b8100;
}

.search-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.search-pagination a,
.search-pagination span {
    min-height: 40px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--branco);
    color: var(--preto);
    border: 1px solid #dddddd;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.search-pagination a:hover {
    background: var(--amarelo);
    border-color: var(--amarelo);
}


/* =========================================================
   MEMORIAL - ÍNDICE
   ========================================================= */

.memorial-page {
    width: 100%;
    min-height: 600px;
    padding: 70px 20px 90px;
    background: var(--cinza-claro);
}

.memorial-page-container {
    width: min(1100px, 100%);
    margin: 0 auto;
}

.memorial-page-heading {
    max-width: 850px;
    margin-bottom: 32px;
}

.memorial-page-kicker {
    display: block;
    color: var(--cinza);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.memorial-page-heading h1 {
    margin: 6px 0 12px;
    color: var(--preto);
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1px;
}

.memorial-page-line {
    width: 55px;
    height: 4px;
    margin-bottom: 20px;
    background: var(--amarelo);
}

.memorial-page-heading p {
    margin: 0;
    max-width: 780px;
    color: #555555;
    font-size: 17px;
    line-height: 1.65;
}

.memorial-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 30px;
    padding: 18px 20px;
    background: var(--branco);
    border-top: 4px solid var(--amarelo);
}

.memorial-total {
    color: #555555;
    font-size: 14px;
}

.memorial-total strong {
    color: var(--preto);
    font-size: 20px;
    font-weight: 900;
}

.memorial-search {
    display: flex;
    width: min(500px, 100%);
}

.memorial-search input[type="search"] {
    flex: 1;
    min-width: 0;
    height: 44px;
    padding: 0 14px;
    border: 1px solid #d5d5d5;
    border-right: 0;
    border-radius: 0;
    outline: none;
    background: var(--branco);
    color: var(--texto);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    appearance: none;
    -webkit-appearance: none;
}

.memorial-search input[type="search"]:focus {
    border-color: var(--amarelo);
}

.memorial-search button {
    height: 44px;
    padding: 0 20px;
    border: 0;
    background: var(--amarelo);
    color: var(--preto);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 900;
    cursor: pointer;
}

.memorial-search button:hover {
    background: var(--preto);
    color: var(--branco);
}

.memorial-list {
    display: grid;
    gap: 16px;
}

.memorial-card {
    padding: 25px 28px;
    background: var(--branco);
    border-left: 5px solid var(--amarelo);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .03);
}

.memorial-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--cinza);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.memorial-card-label {
    display: inline-block;
    padding: 5px 8px;
    background: var(--preto);
    color: var(--branco);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .5px;
}

.memorial-card-year {
    display: inline-block;
    padding: 5px 8px;
    background: var(--amarelo);
    color: var(--preto);
    font-size: 10px;
    font-weight: 900;
}

.memorial-card-date {
    color: var(--cinza);
}

.memorial-card h2 {
    margin: 0 0 10px;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 900;
}

.memorial-card h2 a {
    color: var(--preto);
    text-decoration: none;
}

.memorial-card h2 a:hover {
    color: #8a7300;
}

.memorial-card p {
    margin: 0;
    color: #555555;
    font-size: 15px;
    line-height: 1.65;
}

.memorial-card-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--preto);
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.memorial-card-link:hover {
    color: #9b8100;
}

.memorial-empty {
    padding: 30px;
    background: var(--branco);
    border-left: 5px solid var(--amarelo);
}

.memorial-empty h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

.memorial-empty p {
    margin: 0;
    color: #555555;
    line-height: 1.6;
}

.memorial-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.memorial-pagination a,
.memorial-pagination span {
    min-height: 40px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--branco);
    color: var(--preto);
    border: 1px solid #dddddd;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.memorial-pagination a:hover {
    background: var(--amarelo);
    border-color: var(--amarelo);
}


/* =========================================================
   ARTIGO / MEMORIAL
   ========================================================= */

.memorial-article-page {
    padding: 55px 20px 80px;

    background: var(--cinza-claro);
}

.memorial-article {
    width: min(920px, 100%);

    margin: 0 auto;

    padding: 45px 50px;

    background: var(--branco);

    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.memorial-article-header {
    margin-bottom: 32px;

    padding-bottom: 25px;

    border-bottom: 1px solid #dddddd;
}

.memorial-label {
    display: inline-block;

    margin-bottom: 12px;

    padding: 6px 10px;

    background: var(--amarelo);

    color: var(--preto);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: .8px;

    text-transform: uppercase;
}

.memorial-article h1 {
    margin: 0 0 12px;

    font-size: clamp(30px, 4vw, 44px);

    line-height: 1.08;

    font-weight: 900;
}

.memorial-article-date {
    margin-top: 10px;

    color: var(--cinza);

    font-size: 14px;
}

.memorial-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 17px;
}

.memorial-tag {
    display: inline-block;

    padding: 6px 9px;

    background: var(--preto);

    color: var(--branco);

    font-size: 11px;

    font-weight: 800;
}

.memorial-article-content {
    width: 100%;

    font-size: 17px;

    line-height: 1.7;

    overflow-wrap: anywhere;
}

.memorial-article-content img {
    max-width: 100% !important;

    height: auto !important;
}

.memorial-article-content iframe,
.memorial-article-content video {
    max-width: 100% !important;
}

.memorial-article-content table {
    max-width: 100%;
}

.memorial-article-content p {
    margin: 0 0 18px;
}

.memorial-article-content div {
    max-width: 100%;
}

.memorial-article-back {
    margin-top: 40px;

    padding-top: 22px;

    border-top: 1px solid #dddddd;
}

.memorial-article-back a {
    color: var(--preto);

    text-decoration: none;

    font-size: 12px;

    font-weight: 900;
}

.memorial-article-back a:hover {
    color: #9b8100;
}


/* =========================================================
   PATROCINADORES
   ========================================================= */

.sponsors {
    width: 100%;

    padding: 55px 20px 60px;

    background: #eeeeee;

    text-align: center;

    border-top: 1px solid #dddddd;
}

.sponsors-inner {
    width: min(1000px, 100%);

    margin: 0 auto;
}

.sponsors-crest {
    display: block;

    width: 72px !important;
    height: 72px !important;
    max-width: 72px !important;

    margin: 0 auto 14px;

    object-fit: contain;
}

.sponsors h2 {
    margin: 0;

    color: #222222;

    font-size: 13px;

    font-weight: 900;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}

.sponsors-line {
    width: 45px;
    height: 3px;

    margin: 12px auto 25px;

    background: var(--amarelo);
}

.sponsors-image {
    display: block;

    width: auto !important;
    height: auto !important;

    max-width: min(650px, 90%) !important;

    max-height: 330px !important;

    margin: 0 auto;

    object-fit: contain;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    width: 100%;
    background: var(--preto);
    color: var(--branco);
}

.footer-main {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 55px 0 50px;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(160px, .75fr) minmax(160px, .75fr);
    gap: 70px;
    align-items: start;
}

/* FOOTER - CLUBE */
.footer-club {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    min-width: 0;
}

.footer-crest {
    display: block;
    flex: 0 0 105px;
    width: 105px !important;
    height: 105px !important;
    max-width: 105px !important;
    object-fit: contain;
}

.footer-club-info {
    min-width: 0;
    padding-top: 5px;
}

.footer-club-info h3,
.footer-column h3 {
    margin: 0 0 12px;
    color: var(--amarelo);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.footer-club-info address {
    margin: 0;
    color: #eeeeee;
    font-size: 14px;
    font-style: normal;
    line-height: 1.6;
}

/* FOOTER - REDES SOCIAIS */
.footer-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 35px;
    width: 35px;
    height: 35px;
    padding: 0;
    border-radius: 50%;
    background: var(--branco);
    color: var(--preto);
    text-decoration: none;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.footer-social a:hover {
    background: var(--amarelo);
    color: var(--preto);
    transform: translateY(-2px);
}

.footer-social a svg {
    display: block;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: currentColor;
    transition: transform .2s ease;
}

.footer-social a:hover svg {
    transform: scale(1.08);
}

/* FOOTER - COLUNAS */
.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.footer-column a {
    display: block;
    margin-bottom: 9px;
    color: #eeeeee;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.3;
}

.footer-column a:hover {
    color: var(--amarelo);
}

/* FOOTER - BARRA INFERIOR */
.footer-bottom {
    width: 100%;
    background: var(--cinza-escuro);
}

.footer-bottom-inner {
    width: min(1180px, calc(100% - 40px));
    min-height: 64px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: var(--branco);
    font-size: 12px;
    font-weight: 700;
}

.footer-bottom-inner span {
    display: block;
    width: auto;
    min-width: 0;
}

.footer-bottom-inner span:last-child {
    text-align: right;
}

/* PROTECOES DAS IMAGENS INSTITUCIONAIS */
.header-logo img,
.sponsors-crest,
.sponsors-image,
.footer-crest {
    box-sizing: border-box;
}

/* RESPONSIVO - TABLET */
@media (max-width: 1000px) {
    .nav { gap: 20px; }
    .nav a { font-size: 12px; }
    .footer-main {
        grid-template-columns: minmax(0, 1.4fr) minmax(130px, .8fr) minmax(130px, .8fr);
        gap: 35px;
    }
    .footer-club { gap: 16px; }
    .footer-crest {
        flex-basis: 90px;
        width: 90px !important;
        height: 90px !important;
        max-width: 90px !important;
    }
}

/* RESPONSIVO - MOBILE */
@media (max-width: 850px) {
    .header-container { width: 100%; height: 82px; display: flex; justify-content: space-between; align-items: center; padding: 0 18px; }
    .nav { display: none; }
    .header-logo { height: 82px; }
    .header-logo img { width: 82px !important; height: 82px !important; max-width: 82px !important; transform: translateY(10px); }
    .header-logo img:hover { transform: translateY(10px); }
    .menu-mobile { display: block; }
    body.menu-aberto .mobile-nav { display: block; }
    body.busca-aberta .header-search { max-height: 180px; }
    .header-search-form { width: calc(100% - 30px); min-height: 76px; }
    .header-search-form input[type="search"] { height: 42px; }
    .search-submit { height: 42px; padding: 0 15px; }
    .search-close { width: 36px; height: 42px; flex-basis: 36px; }
    .home-hero { min-height: 560px; }
    .home-hero-bg { background-position: 58% center; }
    .home-hero-overlay { background: rgba(0, 0, 0, .62); }
    .home-hero-content { width: calc(100% - 36px); }
    .home-hero h1 { font-size: 48px; }
    .home-hero p { font-size: 17px; }
    .search-page, .memorial-page { padding-top: 55px; padding-bottom: 70px; }
    .memorial-toolbar { gap: 18px; }
    .memorial-article-page { padding: 35px 15px 55px; }
    .memorial-article { padding: 30px 24px; }
    .memorial-article h1 { font-size: 32px; }
    .memorial-article-content { font-size: 16px; }
    .sponsors { padding: 45px 15px 50px; }
    .sponsors-image { max-width: 95% !important; max-height: 280px !important; }
    .footer-main { width: calc(100% - 36px); grid-template-columns: 1fr; gap: 38px; padding: 45px 0; }
    .footer-club { gap: 18px; }
    .footer-crest { flex-basis: 85px; width: 85px !important; height: 85px !important; max-width: 85px !important; }
    .footer-social { gap: 10px; }
    .footer-bottom-inner { width: calc(100% - 36px); padding: 18px 0; flex-direction: column; align-items: flex-start; justify-content: center; gap: 6px; }
    .footer-bottom-inner span:last-child { text-align: left; }
}

/* RESPONSIVO - CELULAR PEQUENO */
@media (max-width: 520px) {
    .home-hero h1 { font-size: 40px; }
    .home-hero p { font-size: 16px; }
    .header-search-form { width: calc(100% - 20px); min-height: 126px; position: relative; padding: 15px 45px 15px 0; flex-direction: column; align-items: stretch; gap: 8px; }
    body.busca-aberta .header-search { max-height: 150px; }
    .header-search-form input[type="search"] { width: 100%; flex: none; }
    .search-submit { width: 100%; }
    .search-close { position: absolute; top: 15px; right: 0; width: 38px; }
    .search-page { padding: 45px 15px 60px; }
    .search-page-form { flex-direction: column; }
    .search-page-form button { width: 100%; }
    .search-result-card { padding: 20px; }
    .search-result-card h2 { font-size: 21px; }
    .search-pagination { flex-direction: column; align-items: stretch; text-align: center; }
    .memorial-page { padding: 45px 15px 60px; }
    .memorial-toolbar { flex-direction: column; align-items: stretch; }
    .memorial-search { width: 100%; }
    .memorial-card { padding: 20px; }
    .memorial-card h2 { font-size: 21px; }
    .memorial-pagination { flex-direction: column; align-items: stretch; text-align: center; }
    .memorial-article { padding: 25px 18px; }
    .footer-club { flex-direction: column; }
    .footer-crest { flex-basis: 78px; width: 78px !important; height: 78px !important; max-width: 78px !important; }
    .footer-social a { flex-basis: 38px; width: 38px; height: 38px; }
    .footer-social a svg { width: 19px; height: 19px; flex-basis: 19px; }
}
