/* ===================
   RESET & BASE
=================== */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F4F4F4;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.12);
}

/* ── Topbar ── */

.topbar {
    background-color: #F08700;
    height: 38px;
}

.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.topbar-link {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: opacity 0.2s;
}

.topbar-link:hover {
    color: #fff;
    opacity: 0.82;
}

.topbar-link svg {
    flex-shrink: 0;
}

/* ── Header principal ── */

.header-main {
    background-color: #F4F4F4;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 116px;
    display: flex;
    align-items: center;
    gap: 36px;
}

/* ── Logo box (sobresai sobre a topbar) ── */

.logo-box {
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: -38px; /* sobe até o topo da barra laranja (38px) */
    position: relative;
    z-index: 10;
    padding: 0 14px;
}

.logo-box a {
    display: block;
    line-height: 0;
}

.logo-box img {
    max-height: 115px;
    width: auto;
    max-width: 280px;
}

/* ── Navegação ── */

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.nav-link {
    display: block;
    color: #444;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding-bottom: 4px;
    border-bottom: 2px solid #BABABA;
    transition: color 0.2s, border-color 0.2s;
}

.nav-link:hover,
.nav-link.ativo {
    color: #F08700;
    border-bottom-color: #F08700;
}

/* ── Botão CTA ── */

.btn-orcamento {
    flex-shrink: 0;
    display: inline-block;
    background-color: #F08700;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 11px 18px;
    border-radius: 6px;
    white-space: nowrap;
    transition: background-color 0.2s, transform 0.15s;
}

.btn-orcamento:hover {
    background-color: #d97800;
    color: #fff;
    transform: translateY(-1px);
}

/* Item CTA visível só no menu mobile */
.nav-cta-mobile {
    display: none;
}

/* ── Hamburger ── */

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: #F08700;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ===================
   CARROSSEL
=================== */

.carousel {
    position: relative;
    overflow: hidden;
    line-height: 0; /* remove gap abaixo da imagem */
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
}

.carousel-slide img,
.carousel-slide a {
    display: block;
    width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
}

/* Bolinhas */
.carousel-dots {
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    line-height: 1;
}

.dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.2s;
}

.dot.ativo {
    background: #F08700;
    transform: scale(1.2);
}

/* Diferenciais */
.diferenciais {
    background: #fff;
    padding: 32px 0;
    border-bottom: 1px solid #ebebeb;
}

.diferenciais-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    text-align: center;
}

.diferencial-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.diferencial-destaque {
    font-size: 1.45rem;
    font-weight: 900;
    color: #F08700;
    letter-spacing: 0.3px;
    line-height: 1.1;
}

.diferencial-sub {
    font-size: 0.72rem;
    font-weight: 600;
    color: #555F6F;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

@media (max-width: 600px) {
    .diferenciais-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 8px;
    }
}

.destaque {
    padding: 3rem 0 4rem;
}

.destaque-titulo {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

/* ===================
   SEÇÃO HERO (legado)
=================== */

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    border-radius: 8px;
    margin: 2rem 0;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-banners {
    background: transparent;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.banner-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 250px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.banner-card img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    display: block;
}

.banner-card-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.65));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1.5rem;
}

.banner-card-content h2,
.banner-card-content h3 {
    color: #fff;
}

/* ===================
   BOTÕES
=================== */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background-color: #F08700;
    color: white;
}

.btn-primary:hover {
    background-color: #d97800;
    color: white;
}

.btn-secondary {
    background-color: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-edit {
    background-color: #3498db;
    color: white;
}

.btn-delete {
    background-color: #e74c3c;
    color: white;
}

/* ===================
   CARDS PRODUTOS
=================== */

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.produto-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.25s, box-shadow 0.25s;
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.13);
}

.produto-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.produto-card-info {
    padding: 16px 18px 20px;
}

.produto-card .categoria {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    color: #F08700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.produto-card h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.45;
    margin: 0;
}

.produto-card p {
    font-size: 0.85rem;
    color: #666;
    margin-top: 6px;
}

.produto-card .preco {
    color: #F08700;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 8px;
    display: block;
}

.produto-card .preco-antigo {
    text-decoration: line-through;
    color: #aaa;
    font-size: 0.85rem;
    font-weight: 400;
}

.produto-card .btn {
    margin-top: 12px;
}

.periodo {
    font-size: 0.8rem;
    color: #888;
    margin-top: 4px;
    display: block;
}

.filtros {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 1rem;
}

.filtro-categoria-form {
    width: 100%;
}

.tabloide-header {
    margin: 2rem 0 1rem;
}

@media (max-width: 960px) {
    .produtos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .produtos-grid { grid-template-columns: 1fr; }
}
/* Nota: o bloco max-width:600px no final também força 1 coluna — mantido para garantia */

/* ===================
   PÁGINA PRODUTOS
=================== */

.produtos-page {
    padding: 2.5rem 0 4rem;
}

.produtos-layout {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 40px;
    align-items: start;
}

/* ── Sidebar ── */

.sidebar-cats {
    background: #fff;
    border-radius: 14px;
    padding: 20px 16px;
    position: sticky;
    top: calc(38px + 116px + 16px); /* topbar + header + folga */
}

.sidebar-cats-titulo {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #999;
    padding-bottom: 10px;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 8px;
}

.cats-lista {
    list-style: none;
}

.cat-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #444;
    transition: background 0.18s, color 0.18s;
}

.cat-link:hover:not(.ativo) {
    background: #f5f5f5;
    color: #222;
}

.cat-link.ativo {
    background: rgba(240, 135, 0, 0.13);
    color: #d97800;
    font-weight: 600;
}

.cat-seta {
    font-size: 1.1rem;
    line-height: 1;
}

/* ── Barra de título ── */

.produtos-barra {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 24px;
}

.produtos-barra-titulo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.produtos-barra-count {
    font-size: 0.82rem;
    color: #999;
}

/* ── Paginação ── */

.paginacao {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 2.5rem;
}

.pag-btn,
.pag-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
    background: #fff;
    border: 1px solid #e0e0e0;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.pag-btn:hover:not(.desativado),
.pag-num:hover:not(.ativo) {
    background: #f5f5f5;
    color: #111;
}

.pag-num.ativo {
    background: #F08700;
    color: #fff;
    border-color: #F08700;
}

.pag-btn.desativado {
    color: #ccc;
    border-color: #eee;
    pointer-events: none;
}

.sem-produtos {
    color: #888;
    padding: 2rem 0;
}

/* ── Responsivo produtos ── */
@media (max-width: 768px) {
    .produtos-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sidebar-cats {
        position: static;
    }
}

/* ===================
   CTA WHATSAPP
=================== */

.cta-whatsapp {
    padding: 3rem 0 4rem;
}

.cta-box {
    background: #F08700;
    border-radius: 18px;
    padding: 52px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-titulo {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.cta-sub {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 400;
    max-width: 620px;
    line-height: 1.6;
    opacity: 0.95;
}

.btn-cta-wpp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #F08700;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    padding: 15px 32px;
    border-radius: 8px;
    margin-top: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta-wpp:hover {
    color: #F08700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

@media (max-width: 600px) {
    .cta-box {
        padding: 36px 24px;
        border-radius: 14px;
    }

    .cta-titulo {
        font-size: 1.2rem;
    }

    .cta-sub {
        font-size: 0.88rem;
    }

    .btn-cta-wpp {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}

/* ===================
   CTA HORIZONTAL (produtos)
=================== */

.cta-horizontal-wrap {
    padding: 2.5rem 0 4rem;
}

.cta-horizontal {
    background: #FF6B00;
    border-radius: 14px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cta-horizontal-texto h2 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
}

.cta-horizontal-texto p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.5;
    max-width: 360px;
}

.btn-cta-horizontal {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #FF6B00;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    padding: 14px 28px;
    border-radius: 8px;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta-horizontal:hover {
    color: #FF6B00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

@media (max-width: 640px) {
    .cta-horizontal {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
        gap: 20px;
    }

    .cta-horizontal-texto p { max-width: 100%; }

    .btn-cta-horizontal { width: 100%; justify-content: center; }
}

/* ===================
   SOBRE RESUMIDO
=================== */

.sobre-resumo {
    padding: 5rem 0 4rem;
    background: #fff;
}

.sobre-resumo-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
}

.sobre-resumo-titulo {
    font-size: 1.7rem;
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.sobre-resumo-texto p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.75;
    margin-bottom: 18px;
}

.btn-sobre {
    display: inline-block;
    margin-top: 16px;
    padding: 13px 28px;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    color: #1a1a1a;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    transition: background 0.2s, color 0.2s;
}

.btn-sobre:hover {
    background: #1a1a1a;
    color: #fff;
}

.sobre-resumo-imagem img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .sobre-resumo-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .sobre-resumo {
        padding: 3.5rem 0 3rem;
    }

    .sobre-resumo-titulo {
        font-size: 1.4rem;
    }
}

/* ===================
   UNIDADES
=================== */

.unidades {
    padding: 4rem 0 5rem;
}

.unidades-titulo {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
}

.unidades-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.unidade-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.unidade-nome {
    font-size: 0.85rem;
    font-weight: 800;
    color: #F08700;
    letter-spacing: 0.8px;
}

.unidade-card p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.75;
    flex: 1;
}

/* Busca no sidebar */
.sidebar-busca {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #ebebeb;
}

.busca-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s;
}

.busca-wrap:focus-within {
    border-color: #F08700;
    box-shadow: 0 0 0 3px rgba(240,135,0,0.1);
}

.busca-wrap input {
    flex: 1;
    border: none;
    outline: none;
    padding: 9px 12px;
    font-size: 0.85rem;
    color: #333;
    background: transparent;
    font-family: inherit;
    min-width: 0;
}

.busca-wrap input::placeholder { color: #aaa; }

.busca-wrap button {
    background: none;
    border: none;
    padding: 0 12px;
    cursor: pointer;
    color: #999;
    display: flex;
    align-items: center;
    transition: color 0.2s;
    height: 100%;
}

.busca-wrap button:hover { color: #F08700; }

.busca-limpar {
    display: block;
    margin-top: 8px;
    font-size: 0.78rem;
    color: #999;
    text-align: center;
    transition: color 0.2s;
}

.busca-limpar:hover { color: #F08700; }

.produtos-barra-titulo em {
    font-style: normal;
    color: #F08700;
}

.btn-chegar {
    display: block;
    text-align: center;
    padding: 11px;
    border: 1.5px solid #ccc;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #333;
    transition: border-color 0.2s, color 0.2s;
    margin-top: 4px;
}

.btn-chegar:hover {
    border-color: #F08700;
    color: #F08700;
}

@media (max-width: 768px) {
    .unidades-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================
   GALERIA
=================== */

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.galeria-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.galeria-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.galeria-item p {
    padding: 1rem;
    font-weight: bold;
}

.galeria-item small {
    display: block;
    padding: 0 1rem 0.5rem;
    color: #666;
}

/* ===================
   ALERTAS
=================== */

.alerta {
    padding: 1rem;
    border-radius: 4px;
    margin: 1rem 0;
}

.alerta-sucesso {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alerta-erro {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===================
   FORMULÁRIOS
=================== */

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #F08700;
    box-shadow: 0 0 5px rgba(240, 135, 0, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: #666;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* ===================
   TABELAS
=================== */

.tabela {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tabela thead {
    background-color: #2c3e50;
    color: white;
}

.tabela th,
.tabela td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.tabela tbody tr:hover {
    background-color: #f5f5f5;
}

.tabela .btn {
    margin-right: 0.5rem;
}

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

.footer-site {
    background-color: #333743;
    margin-top: 0;
    padding: 52px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.6fr;
    gap: 48px;
}

.footer-logo {
    max-height: 54px;
    width: auto;
    display: block;
    margin-bottom: 14px;
}

.footer-slogan {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-top: 4px;
}

.footer-heading {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: #9CA3AF;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #F08700;
}

.footer-unidade {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 16px;
}

.footer-unidade:last-child {
    margin-bottom: 0;
}

.footer-unidade strong {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
}

.footer-unidade span {
    font-size: 0.85rem;
    color: #9CA3AF;
    line-height: 1.65;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-col-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================
   PÁGINA LOGIN
=================== */

.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
}

.login-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.login-box h1 {
    color: #F08700;
    margin-bottom: 0.5rem;
}

.login-box h2 {
    color: #666;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* ===================
   RESPONSIVIDADE
=================== */

/* ── Tablet / menu mobile (< 960px) ── */
@media (max-width: 960px) {

    /* Mostra hamburger */
    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    /* Esconde botão CTA do header (vai aparecer no menu mobile) */
    .btn-orcamento {
        display: none;
    }

    /* Nav vira dropdown */
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #F4F4F4;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        z-index: 999;
    }

    .nav.aberto {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        padding: 8px 0;
    }

    /* Botão CTA real no menu mobile */
    .nav-cta-mobile {
        display: block;
        padding: 12px 24px 16px;
        border-top: 1px solid #f0f0f0;
    }

    .btn-orcamento-mobile {
        display: block;
        background-color: #F08700;
        color: #fff;
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        padding: 13px;
        border-radius: 6px;
        text-align: center;
        transition: background-color 0.2s;
    }

    .btn-orcamento-mobile:hover {
        background-color: #d97800;
        color: #fff;
    }

    .nav-link {
        padding: 14px 24px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 0.92rem;
    }

    .nav-link.ativo,
    .nav-link:hover {
        background-color: #fff8ef;
        color: #F08700;
        border-bottom-color: #f0f0f0;
    }

    .header-inner {
        gap: 16px;
    }

    /* Remove overlap no mobile — logo fica normal */
    .logo-box {
        margin-top: 0;
        align-self: center;
        padding: 8px 12px;
    }
}

/* ── Carrossel mobile ── */
@media (max-width: 768px) {
    .carousel-slide img {
        height: 240px;
    }
}

/* ── Mobile pequeno (< 600px) ── */
@media (max-width: 600px) {

    /* Esconde Instagram na topbar */
    .topbar-link:first-child {
        display: none;
    }

    .topbar-link {
        font-size: 0.78rem;
    }

    .header-inner {
        height: 68px;
        padding: 0 16px;
    }

    .logo-box {
        padding: 6px 10px;
    }

    .logo-box img {
        max-height: 70px;
    }

    /* Hero */
    .hero {
        padding: 3rem 1rem;
    }

    .hero h2 {
        font-size: 1.6rem;
    }

    .banner-card,
    .banner-card img {
        min-height: 180px;
    }

    /* Produtos */
    .produtos-grid {
        grid-template-columns: 1fr;
    }

    .galeria-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .filtros {
        grid-template-columns: 1fr;
    }

    /* Formulários */
    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }

    /* Tabelas */
    .tabela {
        font-size: 0.85rem;
    }

    .tabela th,
    .tabela td {
        padding: 0.6rem 0.5rem;
    }
}

/* ── Tabloide de Ofertas ──────────────────────────────────────────────────── */

/* Banner único full-width (igual ao carousel-slide) */
.tabloide-banner {
    width: 100%;
    line-height: 0;
}

.tabloide-banner img,
.tabloide-banner a {
    display: block;
    width: 100%;
}

.tabloide-banner img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* Corpo do tabloide (cor de fundo configurável) */
.tabloide-corpo {
    min-height: 60vh;
    padding: 56px 0 72px;
    transition: background-color 0.3s ease;
}

.tabloide-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Grid de produtos */
.tabloide-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

/* Card */
.tabloide-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease;
}

.tabloide-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.13);
}

/* Imagem do produto */
.tabloide-card__img-wrap {
    background-color: #f8f8f8;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.tabloide-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tabloide-card__sem-img {
    width: 64px;
    height: 64px;
    color: #ccc;
}

.tabloide-card__sem-img svg {
    width: 100%;
    height: 100%;
}

/* Corpo do card */
.tabloide-card__body {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.tabloide-card__grupo {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #999;
    text-transform: uppercase;
    font-style: italic;
}

.tabloide-card__nome {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-top: 2px;
}

.tabloide-card__desc {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.45;
    margin-top: 2px;
}

.tabloide-card__precos {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #ebebeb;
}

.tabloide-card__preco-de {
    font-size: 0.8rem;
    color: #F08700;
    text-decoration: line-through;
}

.tabloide-card__preco-por {
    font-size: 1.45rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.1;
}

/* Botão baixar tabloide */
.tabloide-download {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tabloide-download__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    background-color: #F08700;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(240, 135, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tabloide-download__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(240, 135, 0, 0.45);
}

.tabloide-download__btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* CTA WhatsApp */
.tabloide-cta {
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.tabloide-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background-color: #25D366;
    color: #fff;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.tabloide-cta__btn svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    flex-shrink: 0;
}

.tabloide-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* Estado vazio */
.tabloide-vazio {
    text-align: center;
    padding: 80px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

/* Responsivo */
@media (max-width: 1100px) {
    .tabloide-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .tabloide-banner img {
        height: 280px;
    }

    .tabloide-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .tabloide-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .tabloide-card__preco-por {
        font-size: 1.2rem;
    }

    .tabloide-corpo {
        padding: 36px 0 56px;
    }
}


/* ── Página Sobre — Hero ──────────────────────────────────────────────────── */

.sobre-hero {
    display: grid;
    grid-template-columns: 55fr 45fr;
    min-height: calc(100vh - 90px); /* desconta header sticky */
}

/* Coluna da imagem */
.sobre-hero__img-wrap {
    position: relative;
    overflow: hidden;
}

.sobre-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Fade da imagem para o conteúdo */
.sobre-hero__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 55%, #F5F0E8 100%);
}

/* Coluna do conteúdo */
.sobre-hero__content {
    background-color: #F5F0E8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 60px 64px 52px;
    gap: 28px;
}

/* Label "SOBRE A EMPRESA" */
.sobre-hero__label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #F08700;
    text-transform: uppercase;
}

.sobre-hero__label-line {
    display: block;
    width: 36px;
    height: 2px;
    background-color: #F08700;
    flex-shrink: 0;
}

/* Título principal */
.sobre-hero__title {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.0;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

/* Parágrafo descritivo */
.sobre-hero__text {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: #444;
    line-height: 1.65;
    max-width: 420px;
}

/* Linha de stats */
.sobre-hero__stats {
    display: flex;
    gap: 0;
    margin-top: 8px;
}

.sobre-hero__stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 24px;
}

.sobre-hero__stat + .sobre-hero__stat {
    padding-left: 24px;
    padding-right: 24px;
    border-left: 2px solid #d8d0c4;
}

.sobre-hero__stat:last-child {
    padding-right: 0;
}

.sobre-hero__stat strong {
    font-size: clamp(1.6rem, 2.8vw, 2rem);
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
}

.sobre-hero__stat span {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #888;
    text-transform: uppercase;
}

/* Responsivo */
@media (max-width: 900px) {
    .sobre-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .sobre-hero__img-wrap {
        height: 52vw;
        min-height: 240px;
        max-height: 420px;
    }

    .sobre-hero__img-wrap::after {
        background: linear-gradient(to bottom, transparent 55%, #F5F0E8 100%);
    }

    .sobre-hero__content {
        padding: 40px 24px 48px;
        gap: 20px;
    }

    .sobre-hero__text {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .sobre-hero__stats {
        flex-direction: column;
        gap: 16px;
    }

    .sobre-hero__stat + .sobre-hero__stat {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid #d8d0c4;
        padding-top: 16px;
    }
}

/* ── Página Sobre — Nossa História ───────────────────────────────────────── */

/* Label reutilizável (mesma estrutura do hero) */
.sobre-label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #F08700;
    text-transform: uppercase;
}

.sobre-label__line {
    display: block;
    width: 36px;
    height: 2px;
    background-color: #F08700;
    flex-shrink: 0;
}

.sobre-historia {
    display: grid;
    grid-template-columns: 55fr 45fr;
    align-items: center;
    gap: 64px;
    padding: 88px 72px;
    background-color: #fff;
}

/* Coluna de texto */
.sobre-historia__content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.sobre-historia__title {
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 900;
    line-height: 1.05;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.sobre-historia__textos {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sobre-historia__textos p {
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
}

/* Coluna da imagem */
.sobre-historia__img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 520px;
}

.sobre-historia__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    transform: scale(1.12);
    transform-origin: left center;
    display: block;
}

/* Card fixo sobre a imagem */
.sobre-historia__card {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(24, 24, 24, 0.92);
    border-radius: 0 0 12px 12px;
    padding: 22px 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    backdrop-filter: blur(4px);
}

.sobre-historia__card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #F08700;
    line-height: 1;
}

.sobre-historia__card-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e8e8e8;
    line-height: 1.5;
}

/* Responsivo */
@media (max-width: 900px) {
    .sobre-historia {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 56px 24px;
    }

    .sobre-historia__img-wrap {
        height: 360px;
    }
}

/* ── Página Sobre — Missão, Visão e Valores ───────────────────────────────── */

.sobre-mvv {
    background-color: #F5F0E8;
    padding: 88px 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 52px;
}

/* Cabeçalho centralizado */
.sobre-mvv__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    max-width: 700px;
}

/* Label variante centralizada (linha dos dois lados) */
.sobre-label--center {
    justify-content: center;
}

.sobre-mvv__title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.sobre-mvv__subtitle {
    font-size: 1rem;
    color: #555;
    line-height: 1.65;
}

/* Container de cards — único bloco branco dividido por linhas */
.sobre-mvv__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 1100px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.sobre-mvv__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 52px 40px 48px;
    gap: 16px;
}

/* Divisor vertical entre cards */
.sobre-mvv__card + .sobre-mvv__card {
    border-left: 1px solid #e8e4de;
}

/* Ícone laranja */
.sobre-mvv__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F08700;
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
}

.sobre-mvv__icon svg {
    width: 100%;
    height: 100%;
}

.sobre-mvv__card-title {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #1a1a1a;
    text-transform: uppercase;
}

.sobre-mvv__card-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.65;
}

/* Responsivo */
@media (max-width: 900px) {
    .sobre-mvv {
        padding: 56px 24px;
        gap: 36px;
    }

    .sobre-mvv__cards {
        grid-template-columns: 1fr;
    }

    .sobre-mvv__card + .sobre-mvv__card {
        border-left: none;
        border-top: 1px solid #e8e4de;
    }

    .sobre-mvv__card {
        padding: 36px 28px;
    }
}

/* ── Página Sobre — Estrutura (dark) ─────────────────────────────────────── */

.sobre-estrutura {
    background-color: #1a1a1a;
    padding: 88px 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 52px;
}

/* Cabeçalho */
.sobre-estrutura__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    max-width: 760px;
}

/* Label variante clara (para fundos escuros) */
.sobre-label--light {
    color: #F08700;
}

.sobre-label--light .sobre-label__line {
    background-color: #F08700;
}

.sobre-estrutura__title {
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.sobre-estrutura__subtitle {
    font-size: 1rem;
    color: #aaa;
    line-height: 1.65;
}

/* Container de cards — bloco escuro único dividido por linhas */
.sobre-estrutura__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: #272727;
    border-radius: 12px;
    width: 100%;
    max-width: 1100px;
    overflow: hidden;
    border: 1px solid #333;
}

.sobre-estrutura__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 44px 36px 40px;
    gap: 14px;
}

.sobre-estrutura__card + .sobre-estrutura__card {
    border-left: 1px solid #333;
}

/* Ícone laranja */
.sobre-estrutura__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F08700;
    width: 44px;
    height: 44px;
    margin-bottom: 8px;
}

.sobre-estrutura__icon svg {
    width: 100%;
    height: 100%;
}

.sobre-estrutura__card-title {
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #fff;
    text-transform: uppercase;
}

.sobre-estrutura__card-text {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.65;
    flex: 1;
}

.sobre-estrutura__link {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #F08700;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 4px;
    transition: opacity 0.2s ease;
}

.sobre-estrutura__link:hover {
    opacity: 0.75;
}

/* Responsivo */
@media (max-width: 900px) {
    .sobre-estrutura {
        padding: 56px 24px;
        gap: 36px;
    }

    .sobre-estrutura__cards {
        grid-template-columns: 1fr;
    }

    .sobre-estrutura__card + .sobre-estrutura__card {
        border-left: none;
        border-top: 1px solid #333;
    }

    .sobre-estrutura__card {
        padding: 32px 24px;
    }
}

/* ── Página Sobre — Nossos Diferenciais ──────────────────────────────────── */

.sobre-diferenciais {
    background-color: #F5F0E8;
    padding: 88px 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 52px;
}

.sobre-diferenciais__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    max-width: 860px;
}

.sobre-diferenciais__title {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.08;
}

/* Grid de 4 cards individuais */
.sobre-diferenciais__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 1100px;
}

.sobre-diferenciais__card {
    background-color: #fff;
    border: 1px solid #e4dfd7;
    border-radius: 10px;
    padding: 36px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Ícone laranja */
.sobre-diferenciais__icon {
    display: flex;
    color: #F08700;
    width: 40px;
    height: 40px;
    margin-bottom: 6px;
}

.sobre-diferenciais__icon svg {
    width: 100%;
    height: 100%;
}

.sobre-diferenciais__card-title {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    color: #1a1a1a;
    text-transform: uppercase;
    line-height: 1.3;
}

.sobre-diferenciais__card-text {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.65;
}

/* Responsivo */
@media (max-width: 1024px) {
    .sobre-diferenciais__cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .sobre-diferenciais {
        padding: 56px 24px;
        gap: 36px;
    }
}

@media (max-width: 480px) {
    .sobre-diferenciais__cards {
        grid-template-columns: 1fr;
    }
}

/* ── Página Sobre — Galeria ───────────────────────────────────────────────── */

.sobre-galeria {
    background-color: #fff;
    padding: 88px 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.sobre-galeria__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    max-width: 760px;
}

.sobre-galeria__title {
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    font-weight: 900;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.sobre-galeria__subtitle {
    font-size: 1rem;
    color: #555;
    line-height: 1.65;
}

/* Layout de fotos */
.sobre-galeria__layout {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sobre-galeria__row {
    display: grid;
    gap: 14px;
}

/* Row 1: 65% | 35% */
.sobre-galeria__row--dupla {
    grid-template-columns: 65fr 35fr;
}

.sobre-galeria__foto--lg {
    height: 500px;
}

.sobre-galeria__foto--sm {
    height: 500px;
}

/* Row 2: 3 iguais */
.sobre-galeria__row--trio {
    grid-template-columns: repeat(3, 1fr);
}

.sobre-galeria__row--trio .sobre-galeria__foto {
    height: 280px;
}

/* Row 3: imagem wide alinhada à esquerda (mesma proporção da row 1) */
.sobre-galeria__row--wide {
    grid-template-columns: 65fr 35fr;
}

.sobre-galeria__foto--wide {
    height: 320px;
    grid-column: 1; /* ocupa apenas a coluna da esquerda */
}

/* Base das fotos */
.sobre-galeria__foto {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    display: block;
}

.sobre-galeria__foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.sobre-galeria__foto:hover img {
    transform: scale(1.04);
}

/* Responsivo */
@media (max-width: 1024px) {
    .sobre-galeria__foto--lg,
    .sobre-galeria__foto--sm {
        height: 380px;
    }

    .sobre-galeria__row--trio .sobre-galeria__foto {
        height: 220px;
    }

    .sobre-galeria__foto--wide {
        height: 260px;
    }
}

@media (max-width: 900px) {
    .sobre-galeria {
        padding: 56px 24px;
        gap: 32px;
    }

    /* Row 1: empilha */
    .sobre-galeria__row--dupla {
        grid-template-columns: 1fr;
    }

    .sobre-galeria__foto--lg {
        height: 280px;
    }

    .sobre-galeria__foto--sm {
        height: 220px;
    }

    /* Row 2: 2 colunas */
    .sobre-galeria__row--trio {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Row 3: full width */
    .sobre-galeria__row--wide {
        grid-template-columns: 1fr;
    }

    .sobre-galeria__foto--wide {
        height: 240px;
        grid-column: 1;
    }
}

@media (max-width: 480px) {
    .sobre-galeria__row--trio {
        grid-template-columns: 1fr;
    }

    .sobre-galeria__row--trio .sobre-galeria__foto {
        height: 200px;
    }
}

/* ── Página Sobre — CTA WhatsApp ─────────────────────────────────────────── */

.sobre-cta {
    position: relative;
    background-color: #F08700;
    overflow: hidden;
    padding: 80px 24px;
    text-align: center;
}

/* Marca d'água decorativa */
.sobre-cta::before {
    content: 'PRA·BASE';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(6rem, 18vw, 14rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.07);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: -0.02em;
    user-select: none;
}

.sobre-cta__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.sobre-cta__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.sobre-cta__text {
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
    max-width: 520px;
}

.sobre-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    padding: 16px 32px;
    background-color: #fff;
    color: #1a1a1a;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.sobre-cta__btn svg {
    width: 20px;
    height: 20px;
    fill: #1a1a1a;
    flex-shrink: 0;
}

.sobre-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ── Botão flutuante WhatsApp ─────────────────────────────────────────────── */
.wpp-float {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25D366;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wpp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.30);
}

.wpp-float svg {
    width: 30px;
    height: 30px;
    fill: #fff;
    display: block;
}
