/* 
  ========================================
  SITE: ESTADÃO GRÁFICA - VERSÃO: 1.0.0
  ========================================
*/

/* --- 1. VARIÁVEIS DO SISTEMA --- */
:root {
    /* Cores */
    --color-primary: #007bff;
    --color-primary-hover: #0056b3;
    --color-text-dark: #1a1a1a;
    --color-text-body: #4b5563;
    --color-bg-white: #ffffff;
    --color-border-light: #eeeeee;

    /* Layout */
    --container-max-width: 1800px;
    --header-height: 60px;

    /* Tipografia */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transições */
    --transition-fast: all 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* --- 2. RESET E ESTILOS GLOBAIS --- */
.highlight-blue {
    color: var(--color-primary);
    font-weight: 700;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-white);
    color: var(--color-text-body);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- 3. COMPONENTES REUTILIZÁVEIS --- */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 60px;
    /* Padding generoso para telas grandes */
}

/* --- 4. HEADER & NAVEGAÇÃO --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--color-bg-white);
    border-bottom: 1px solid var(--color-border-light);
    z-index: 1000;
}

.nav-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-brand {
    flex: 1;
}

.nav-menu {
    flex: 0 0 auto;
    display: flex;
    list-style: none;
    gap: 30px;
    /* Reduzido de 40px para juntar mais os itens */
}

.nav-link {
    text-decoration: none;
    color: var(--color-text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-primary);
}


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

/* Branding e Footer Mobile (Escondidos por padrão) */
.nav-mobile-brand,
.nav-mobile-footer {
    display: none;
}

body.menu-open {
    overflow: hidden;
}

/* Menu Toggle (Mobile) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--color-text-dark);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

/* Estado Ativo do Menu Toggle (Transforma em X) */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Botão WhatsApp Premium */
.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.btn-whatsapp:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

/* --- 5. SEÇÃO HERO --- */
.hero {
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg-white);
    /* Fundo branco limpo – igual ao resto da página */
}

.hero-bg-carousel {
    position: absolute;
    top: 0;
    right: 0;
    /* Alinha a imagem à direita */
    left: auto;
    width: 65%;
    /* Carrossel ocupa ~65% da largura, do centro pra direita */
    height: 100%;
    z-index: 1;
    /* Efeito de degradê esfumaçado: começa transparente e vai ficando nítido */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.03) 8%, rgba(0, 0, 0, 0.15) 18%, rgba(0, 0, 0, 0.5) 32%, rgba(0, 0, 0, 0.85) 48%, rgba(0, 0, 0, 1) 60%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.03) 8%, rgba(0, 0, 0, 0.15) 18%, rgba(0, 0, 0, 0.5) 32%, rgba(0, 0, 0, 0.85) 48%, rgba(0, 0, 0, 1) 60%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Overlay removido – não mais necessário com fundo branco */
    background: none;
    z-index: 2;
    pointer-events: none;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding-top: var(--header-height);
    /* Evita sobreposição do cabeçalho */
}

/* Remover grid antigo, agora é só uma coluna sobreposta */
.hero-grid {
    display: block;
}

.hero-content {
    text-align: left;
}

.hero-header-main {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 25px;
}

.hero-brand-logo {
    text-align: left;
    flex-shrink: 0;
}

.hero-brand-logo img {
    height: 240px;
    width: auto;
    display: inline-block;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 0;
}

.hero-content h1 .txt-light {
    color: var(--color-text-dark);
    display: block;
}

.hero-content h1 .blue {
    color: var(--color-primary);
    display: block;
}

.hero-quality-card {
    padding: 10px 0;
    border-radius: 4px;
    color: var(--color-text-dark);
    max-width: 500px;
    min-height: 180px;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    /* Começa fora da tela à direita */
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease, visibility 0.8s ease;
}

.carousel-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    /* Fica no centro */
    z-index: 2;
}

.carousel-slide.exit {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    /* Sai para a esquerda */
    z-index: 1;
}

.quality-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    text-decoration: underline;
    text-underline-offset: 20px;
    text-decoration-color: var(--color-primary);
    text-decoration-thickness: 3px;
    text-align: left;
}

.quality-text {
    font-size: 1.15rem;
    line-height: 1.4;
    font-weight: 500;
    text-align: left;
    color: var(--color-text-body);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--color-text-body);
    max-width: 650px;
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
    position: relative;
    width: 100%;
}

.hero-image-slider.full-bg {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.hero-image-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-track picture {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Barras de navegação contínuas e elegantes (Altamente Acessíveis e Modernas) */
.hero-image-nav.floating-nav {
    position: absolute;
    left: 60px;
    bottom: 40px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.hero-dot {
    width: 38px;
    /* Traço comprido clássico horizontal */
    height: 5px;
    /* Muito fino para não poluir a foto */
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.35);
    /* Translucido natural */
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 0;
    position: relative;
    /* Base para o hitbox invisível */
}

/* Área de Clique expandida (Hitbox Universal: UX/PageSpeed 48x48) - Resolve penalidade de alvo de toque no Google */
.hero-dot::after {
    content: '';
    position: absolute;
    top: -22px;
    bottom: -22px;
    left: -12px;
    right: -12px;
}

.hero-dot:hover {
    background-color: rgba(255, 255, 255, 0.75);
}

.hero-dot.active {
    background-color: #ffffff;
    /* Branco puro no ativo */
    width: 58px;
    /* Estica o traço levemente indicando a barra atual ativada (Premium Effect) */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    /* Contraste extremo para fundos brancos (Sombra preta forte ao redor) */
}

/* Removida a regra antiga hero-visual img que definia tamanho fixo em apenas 1 imagem */

/* --- 7. COMPONENTES DE SEÇÃO (GENÉRICOS) --- */
.section-divider {
    border-top: 1px solid var(--color-border-light);
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-text-dark);
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background-color: var(--color-primary);
    margin-top: 15px;
    border-radius: 10px;
}

.section-description {
    font-size: 1.05rem;
    color: var(--color-text-dark);
    /* Texto mais escuro para modernidade e nitidez */
    line-height: 1.6;
    margin-bottom: 20px;
}

/* --- 8. SEÇÃO QUEM SOMOS --- */
.about {
    padding: 20px 0 5px;
    /* Reduzido o padding superior para 20px para aproximar da Hero */
    background-color: var(--color-bg-white);
    scroll-margin-top: calc(var(--header-height) - 10px);
    /* Ajustado para subir mais um pouco */
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
    padding-top: 20px;
}

/* Linha conectora discreta */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 42px;
    /* Ajustado para o novo tamanho do badge */
    left: 40px;
    right: 40px;
    height: 1px;
    background-color: #e2e8f0;
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: left;
}

.step-badge {
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.08);
    transition: all 0.3s ease;
}

.process-step:hover .step-badge {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.2);
    background-color: var(--color-primary);
    color: #ffffff;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--color-text-body);
    line-height: 1.6;
}

/* --- 9. SEÇÃO SERVIÇOS (FORMATOS) --- */
.services {
    padding: 20px 0 40px;
    /* Padronizado para 40px topo e base */
    background-color: var(--color-bg-white);
    scroll-margin-top: calc(var(--header-height) - 10px);
    /* Ajustado para subir mais um pouco */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 colunas no desktop para os cards largos */
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--color-bg-white);
    border-radius: 16px;
    padding: 20px;
    /* Reduzido de 30px */
    display: flex;
    gap: 20px;
    /* Reduzido de 25px */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--color-border-light);
    transition: var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 93, 206, 0.08);
    border-color: var(--color-primary);
}

.service-card-full-width {
    grid-column: 1 / -1;
}

/* Ajustes para equilibrar a proporção do card de Gabaritos em desktop */
@media (min-width: 992px) {
    .service-card-full-width .service-specs {
        flex: 0 0 450px;
        /* Estica a área dos botões para respirarem mais */
        padding-right: 40px;
    }

    .service-card-full-width .service-desc {
        padding-left: 20px;
        padding-right: 40px;
    }
}

/* Coluna 1: Imagem */
.service-img {
    flex: 0 0 100px;
    height: 120px;
    background-color: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #eee;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

/* Coluna 2: Especificações */
.service-specs {
    flex: 0 0 230px;
    /* Reduzido de 280px para aproximar a linha e o texto descritivo */
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-right: 1px solid #f0f0f0;
    padding-right: 25px;
}

.service-specs h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 1.25rem;
    /* Reduzido de 1.4rem */
    margin-bottom: 5px;
}

.service-specs p {
    font-size: 1.05rem;
    color: var(--color-text-dark);
    line-height: 1.4;
}

.service-specs strong {
    font-weight: 700;
}

/* Coluna 3: Descrição */
.service-desc {
    flex: 1;
    /* Ocupa todo o espaço restante */
    font-size: 1.05rem;
    color: var(--color-text-body);
    line-height: 1.7;
    display: flex;
    align-items: center;
    padding-left: 10px;
}

/* Estilo Especial para Card de Gabaritos */
.gabaritos-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin-top: 10px;
}

.btn-gabarito {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--color-text-dark);
    text-align: center;
    width: 100%;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}



.btn-gabarito:hover {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* --- 10. SEÇÃO PRÊMIOS --- */
.awards {
    padding: 20px 0 40px;
    /* Padronizado para 40px topo e base */
    background-color: var(--color-bg-white);
    scroll-margin-top: calc(var(--header-height) - 10px);
    /* Ajustado para subir mais um pouco */
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.award-card {
    background-color: var(--color-bg-white);
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 10px 15px;
    /* Reduzido o padding vertical de 25px para 15px */
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 93, 206, 0.08);
    border: 2px solid var(--color-primary);
}

.award-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5px;
    /* Reduzido de 15px para economizar espaco vertical */
}

.award-trophy {
    font-size: 1.2rem;
}

.award-count {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f1c40f;
    /* Cor dourada conforme o print */
}

.award-image {
    width: 80px;
    /* Reduzido de 100px */
    height: 80px;
    /* Reduzido de 100px */
    margin: 0 auto 5px;
    /* Reduzido margem inferior de 15px para 5px */
    border-radius: 4px;
    overflow: hidden;
    background-color: #f9f9f9;
}

.award-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ajuste específico para o card Prêmio INCQC */
.award-card:nth-child(1) .award-image {
    width: 180px;
    height: 110px;
    background-color: transparent;
}

.award-card:nth-child(2) .award-badge,
.award-card:nth-child(3) .award-badge {
    margin-bottom: 35px;
    /* Empurra a imagem do troféu um pouco mais para baixo */
}

.award-card:nth-child(1) .award-image img {
    object-fit: contain;
}

.award-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    /* Reduzido de 1.25rem */
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 5px;
    margin-top: auto;
}

.award-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* --- 11. SEÇÃO ESTATÍSTICAS (STATS) --- */
.stats {
    padding: 40px 0 40px;
    background-color: var(--color-bg-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background-color: #ffffff;
    padding: 25px 15px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 160px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 93, 206, 0.08);
    border: 2px solid var(--color-primary);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.stat-label {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000000;
}

.stat-sub {
    font-size: 0.85rem;
    opacity: 0.7;
}

.stat-white .stat-sub {
    color: #64748b;
}

/* --- 12. SEÇÃO CONTATO --- */
.contact {
    padding: 20px 0 20px;
    /* Reduzido paddings para aproximar o conteúdo do rodapé */
    background-color: var(--color-bg-white);
    scroll-margin-top: calc(var(--header-height) - 10px);
    /* Ajustado para subir mais um pouco */
}

.contact-intro {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-card h2 {
    font-family: var(--font-heading);
    font-size: 2.0rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.contact-card p {
    font-size: 1.1rem;
    color: var(--color-text-body);
    line-height: 1.6;
    margin-bottom: 30px;
}

.business-hours-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #f8fafc;
    border-left: 4px solid var(--color-primary);
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 30px;
    width: 100%;
    flex: 1;
}

.business-hours-badge .hours-icon {
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.business-hours-badge .hours-icon svg {
    width: 20px;
    height: 20px;
}

.business-hours-badge .hours-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.business-hours-badge .hours-text strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--color-text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.business-hours-badge .hours-text span {
    font-size: 1rem;
    color: var(--color-text-body);
}

.business-hours-badge .hours-text span strong {
    color: var(--color-primary);
    font-family: var(--font-body);
    text-transform: none;
    letter-spacing: normal;
    font-weight: 700;
}

.support-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    height: 100%;
}

.support-manual-img {
    width: 140px;
    height: auto;
    object-fit: contain;
}

.support-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
    flex: 1;
}

.btn-whatsapp-large {
    margin-top: auto;
    /* Empurra o botão para a base do card */
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #25d366;
    color: white;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-large:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-download {
    margin-top: auto;
    /* Empurra o botão para a base do card */
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--color-primary);
    color: white;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
    cursor: pointer;
}

.btn-download:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.contact-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    /* Alinha o ícone e o texto pelo topo */
    gap: 15px;
    /* Reduzido de 20px */
    flex: 1;
}

.contact-icon {
    width: 50px;
    /* Reduzido de 60px */
    height: 50px;
    /* Reduzido de 60px */
    background-color: #f0f7ff;
    /* Azul clarinho do print */
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Força os ícones SVG a ficarem um pouco menores dentro do círculo */
.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    /* Reduzido de 0.8rem */
    font-weight: 800;
    color: #000000;
    /* Preto e Negrito conforme solicitado */
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-value {
    font-size: 0.95rem;
    /* Reduzido de 1.1rem */
    color: var(--color-text-dark);
    text-decoration: none;
    line-height: 1.4;
    transition: var(--transition-fast);
}

.contact-value.highlight {
    color: var(--color-primary);
    /* E-mail tem destaque azul */
}

a.contact-value:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* --- 13. RODAPÉ --- */
.footer {
    padding: 20px 0 20px;
    /* Reduzido o padding para 20px para aproximar dos contatos */
    background-color: var(--color-bg-white);
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.footer-content p {
    font-size: 0.9rem;
    color: #64748b;
}

.footer-content a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
    margin: 0 5px;
    transition: var(--transition-fast);
}

.footer-content a:hover {
    text-decoration: underline;
}

/* --- 14. BOTÃO FLUTUANTE WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* --- 15. RESPONSIVIDADE ADICIONAL --- */
/* --- 15. RESPONSIVIDADE ADICIONAL --- */

/* Telas Grandes (até 1400px) */
@media (max-width: 1400px) {
    .services-grid {
        grid-template-columns: 1fr;
        /* Coluna única para cards largos em telas menores */
    }
}

/* Telas Médias-Grandes (até 1200px) */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-grid {
        gap: 50px;
    }
}

/* Tablets e Desktop Pequeno (até 992px) */
@media (max-width: 992px) {
    .nav-grid {
        grid-template-columns: 1fr auto;
        padding: 0 20px;
    }

    .menu-toggle {
        display: flex;
        /* Mostra o botão hambúrguer */
        grid-column: 2;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        /* Altura de viewport dinâmica para celulares modernos */
        background-color: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 50px 30px 100px;
        /* Padding extra na base para nao bater no botao de Whats */
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        /* Melhora rolagem no iOS */
    }

    .nav-menu.active {
        right: 0;
    }

    /* Footer no Menu Mobile */

    .nav-menu li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.5s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    /* Delay escalonado para os itens de menu */
    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.3s;
    }

    .nav-menu.active li:nth-child(2) {
        transition-delay: 0.35s;
    }

    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.4s;
    }

    .nav-menu.active li:nth-child(4) {
        transition-delay: 0.45s;
    }

    .nav-menu.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        font-family: var(--font-heading);
        font-weight: 800;
        font-size: 1.8rem;
        color: var(--color-text-dark);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-mobile-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 15px;
        /* Reduzido de 40px para aproximar do menu */
        padding: 20px 0 60px;
        /* Reduzido topo de 40px para 20px, mantendo folga na base */
        gap: 15px;
        opacity: 0;
        transition: 0.5s ease 0.8s;
    }

    .nav-menu.active .nav-mobile-footer {
        opacity: 1;
    }

    .nav-mobile-footer span {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--color-text-body);
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .nav-mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 200px;
        /* Reduzido de 280px */
    }

    .nav-mobile-actions .btn-whatsapp,
    .nav-mobile-actions .btn-whatsapp span {
        justify-content: center;
        padding: 8px;
        /* Reduzido de 14px */
        font-size: 0.85rem;
        /* Reduzido de 1rem */
        color: #ffffff !important;
        /* Força o texto e o ícone para branco */
    }

    .btn-tel {
        text-decoration: none;
        color: var(--color-text-dark);
        font-weight: 800;
        font-size: 1.1rem;
        text-align: center;
        font-family: var(--font-heading);
    }

    .nav-actions {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-header-main {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        margin-bottom: 30px;
    }

    .hero-brand-logo {
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-quality-card {
        margin: 0 auto;
    }

    .hero-visual {
        justify-content: center;
        margin-top: 40px;
    }

    .contact-intro {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 50px;
        text-align: center;
    }

    .contact-card p {
        margin-left: auto;
        margin-right: auto;
    }

    .btn-whatsapp-large,
    .btn-download {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }

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

    .service-card {
        flex-direction: column;
        padding: 25px;
        gap: 20px;
    }

    .service-img {
        width: 100%;
        height: 180px;
        flex: 0 0 180px;
    }

    /* Transforma a imagem do jornal numa "capa inteira vitrine" cortando o fundo */
    .service-img picture {
        display: block;
        width: 100%;
        height: 100%;
    }

    .service-img img {
        object-fit: cover;
        object-position: top;
        padding: 0;
    }

    .service-specs {
        flex: 0 0 auto;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding-right: 0;
        padding-bottom: 20px;
    }

    .service-desc {
        padding-left: 0;
        padding-top: 5px;
    }

    .gabaritos-list {
        grid-template-columns: 1fr;
    }

    .btn-gabarito:last-child {
        grid-column: span 1;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Mantem o layout centrado moderno fluido das barrinhas nos Dispositivos Móveis */
    .hero-image-nav {
        left: 0;
        bottom: 20px;
        /* Levanta um pouco mais para respirar da borda da imagem do mobile */
        width: 100%;
        justify-content: center;
        padding: 0 20px;
        gap: 6px;
        /* Mais coladinhas como Stories autêntico */
    }

    .hero-dot {
        width: auto;
        /* Reseta o width fixo grandão do desktop (38px) */
        flex: 1;
        /* Ocupam todo o espaço horizontal da tela disponível divididas */
        max-width: 60px;
        /* Tamanho final não tão longo */
        height: 5px;
        /* Mantém a altura base de 5px */
    }

    .hero-dot.active {
        width: auto;
        /* Não aplica o esticamento de 58px do Desktop na tela do celular do flex box */
        max-width: 60px;
        /* Fixa todos engessados iguais da margem no mobile */
    }

    .hero-dot::after {
        top: -15px;
        /* Caixa de Hitbox ligeiramente contida no mobile se nao bloqueia scrolagem */
        bottom: -15px;
        left: -5px;
        right: -5px;
    }
}

/* Dispositivos Móveis (até 768px) */
@media (max-width: 768px) {
    .service-card {
        flex-direction: column;
        text-align: center;
    }

    .service-img {
        margin: 0 auto;
    }

    .service-specs {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding-right: 0;
        padding-bottom: 20px;
    }
}

/* Celulares (até 576px) */
@media (max-width: 576px) {
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 0;
    }

    .process-timeline::before {
        display: none;
        /* Esconde a linha horizontal no mobile */
    }

    .process-step {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .step-badge {
        margin-left: auto;
        margin-right: auto;
    }

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

    .stat-card {
        min-height: 180px;
        padding: 30px 15px;
    }

    .stat-number {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   BANNER DE COOKIES (LGPD) SIMPLIFICADO
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f1f4f9;
    /* Tom cinza azulado claro conforme imagem */
    padding: 12px 0;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.08);
    z-index: 10000;
    display: none;
    border-top: 1px solid #dbe3ed;
}

.cookie-banner.show {
    display: block;
    animation: slideUpSimple 0.4s ease-out;
}

@keyframes slideUpSimple {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.cookie-wrapper-simple {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
    text-align: center;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.92rem;
    color: #444;
    line-height: 1.4;
}

.cookie-banner a {
    color: #0066cc;
    text-decoration: underline;
    font-weight: 600;
}

.btn-cookie-simple {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 6px 25px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0.9rem;
}

.btn-cookie-simple:hover {
    background-color: #0056b3;
}

/* Ajuste mobile */
@media (max-width: 768px) {
    .cookie-wrapper-simple {
        flex-direction: column;
        gap: 10px;
    }
}

/* --- 20. LIGHTBOX (VISUALIZADOR DE IMAGENS) --- */
.zoomable {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.zoomable:hover {
    transform: scale(1.05);
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox.show .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
    line-height: 1;
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--color-primary);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 25px;
        font-size: 40px;
    }

    .lightbox-content {
        max-width: 95%;
    }
}