/* HEADER PADRÃO — sem breakpoints */

/* Reset e base */
* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

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;
}

/* Grid do header: logo | busca (flex) | nav | ícones */
.header__inner {
    display: grid;
    grid-template-columns: auto minmax(220px, 1fr) auto auto;
    align-items: center;
    gap: 16px;
    min-height: 64px;
}

/* Logo (apenas img) */
.header__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    gap: 5px;
}

.header__logo .logo-img {
    display: block;
    /* sempre visível */
    height: 78px;
    /* ajuste conforme sua arte */
    width: auto;
}

/* Busca (com gap lateral) */
.header__search {
    display: flex;
    margin-inline: clamp(16px, 3vw, 32px);
    /* espaço à esquerda e à direita do input */
}

.header__search input[type="search"] {
    width: 100%;
    height: 40px;
    border: 0;
    border-radius: 8px;
    background: #f4f4f4;
    padding: 0 14px;
    /* respiro interno do input */
    outline: none;
}

.header__search input[type="search"]::placeholder {
    color: #9b9b9b;
}

.header__search input[type="search"]:focus {
    background: #f8f8f8;
    box-shadow: 0 0 0 2px #e5e5e5;
}

/* Nav */
.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 ease, transform .18s ease;
}

.header__nav a[aria-current="page"] {
    color: #111;
    font-weight: 600;
}

.header__nav a:hover {
    color: #111;
    transform: translateY(-1px);
}

/* Ícones */
.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;
    text-decoration: none;
    color: #111;
    transition: transform .15s ease, background-color .15s ease;
}

.icon-btn:hover {
    transform: scale(1.05);
    background: #f6f6f6;
}



/* ================= HERO ================= */
.hero {
    position: relative;
    background: #000;
    /* fundo preto */
    color: #fff;
    overflow: hidden;
    /* esconde excesso da imagem */
}

/* Layout interno */
.hero__inner {
    position: relative;
    min-height: 520px;
    /* altura do banner */
    padding: 80px 0;
    display: flex;
    align-items: center;
}

/* Camada de texto */
.hero__copy {
    position: relative;
    z-index: 2;
    /* acima da imagem */
    max-width: 560px;
}

.hero__eyebrow {
    margin: 0 0 10px;
    font-size: 14px;
    letter-spacing: .06em;
    color: #bdbdbd;
}

.hero__title {
    margin: 0 0 10px;
    line-height: .95;
    font-weight: 300;
    font-size: 64px;
}

.hero__title strong {
    font-weight: 800;
}

.hero__desc {
    margin: 0 0 28px;
    color: #bdbdbd;
    max-width: 520px;
}

/* Botão */
.hero__btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .5);
    color: #fff;
    text-decoration: none;
    transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease;
}

.hero__btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
}

.hero__btn:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Imagem do banner atrás do texto */
.hero__img {
    position: absolute;
    right: 2%;
    /* levemente “pra dentro” para o recorte */
    top: 50%;
    transform: translateY(-50%);
    width: 800px;
    /* ajuste conforme sua arte */
    height: auto;
    z-index: 1;
    /* abaixo do texto */
    object-fit: contain;
    pointer-events: none;
    /* evita clique sobre o texto */
    user-select: none;
}

/* Vinheta para contraste do texto */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(1200px 600px at 20% 50%,
            rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .25) 60%, rgba(0, 0, 0, .5) 100%);
    pointer-events: none;
    z-index: 1;
    /* mesma camada da imagem, abaixo do texto (z=2) */
}


/* ===== SHOWCASE (mosaico) ===== */
.showcase {
    background: #fff;
    padding: 24px 0 40px;
}

/* Grade 3x2 com um card que ocupa 2 linhas */
.showcase__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 colunas fixas (sem breakpoint) */
    grid-auto-rows: 260px;
    /* altura base de cada linha */
    gap: 16px;
}

/* Card base */
.card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 28px;
    /* espaço para os cards de texto */
}

/* Card com foto de fundo via <img> */
.card--photo {
    padding: 0;
}

/* foto cobre tudo, sem padding */
.card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* preenche sem distorcer */
    user-select: none;
    pointer-events: none;
}

/* Card claro/escuro (texto) */
.card--light {
    background: #efefef;
    color: #111;
}

.card--dark {
    background: #2b2b2b;
    color: #fff;
}

/* Conteúdo textual */
.card__content {
    position: relative;
    z-index: 1;
    max-width: 80%;
}

.card__title {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.1;
}

.card__text {
    margin: 0;
    color: #6b6b6b;
}

.card--dark .card__text {
    color: #d0d0d0;
}

/* Card alto (ocupa 2 linhas) */
.card--span-2row {
    grid-row: span 2;
}




/* ===== 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);
}