:root {
    --primary-color: #DB2B14; /* Vermelho/Laranja Vetta */
    --secondary-color: #1471dbd7; /* Para CTAs secundários, pode ser um tom diferente para contraste */
    --text-color: #333;
    --heading-color: #222;
    --light-bg: #f8f9fa; /* Fundo cinza claro */
    --dark-bg: #222;
    --white: #fff;
    --gray: #6c757d;
    --border-radius: 8px;
    --transition-speed: 0.3s ease-in-out;

    --logo-vett-default-color: #999796; /* Cinza padrão para VETT */
    --logo-a-default-color: #DB2B14;    /* Laranja padrão para o 'A' */
    --logo-globe-default-color: #999796; /* Cinza padrão para o globo */

    /* Variáveis da logo que serão usadas por padrão (tema claro) */
    --current-logo-vett-color: var(--logo-vett-default-color);
    --current-logo-a-color: var(--logo-a-default-color);
    --current-logo-globe-color: var(--logo-globe-default-color);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--heading-color);
    line-height: 1.2;
    margin-bottom: 0.5em;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-primary-dark {
    background-color: var(--dark-bg);
}

.text-white {
    color: var(--white);
}

[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    font-weight: 600;
    transition: background-color var(--transition-speed), color var(--transition-speed), transform var(--transition-speed), border-color var(--transition-speed);
    cursor: pointer;
    border: none;
    text-align: center;
    min-width: 160px;
    font-size: 0.9rem;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--secondary-color); 
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.8rem;
    min-width: 120px;
}

/* Seções Gerais */
.section {
    padding: 80px 0;
    animation: fadeIn 1s ease-out forwards; 
    opacity: 0; 
    transform: translateY(20px); 
    text-align: center; 
}


.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 2.5em;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block; 
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-description {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: var(--gray);
}

/* Header */
.header {
    background-color: var(--white);
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: background-color 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.header .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
}

.header-content-center {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-grow: 1;
    justify-content: center;
}

.header .logo {
    flex-shrink: 0;
    z-index: 1001;
}

.header .logo a {
    font-size: 1.8em;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.4s ease-in-out;
}

/* ESTILOS DA LOGO SVG NO HEADER */
.header .logo .logo-vett-body path {
    fill: var(--current-logo-vett-color); 
    transition: fill var(--transition-speed);
}
.header .logo .logo-vetta-a-main path,
.header .logo .logo-vetta-a-details path {
    fill: var(--current-logo-a-color); 
    transition: fill var(--transition-speed);
}
.header .logo .logo-misc-element path {
    fill: var(--current-logo-globe-color); 
    transition: fill var(--transition-speed);
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav .nav-list {
    display: flex;
    gap: 40px;
    align-items: center;
}

.main-nav .nav-list a {
    font-weight: 600;
    color: var(--heading-color);
    text-transform: capitalize;
    padding: 5px 0;
    position: relative;
    transition: color 0.4s ease-in-out;
    white-space: nowrap;
}

.main-nav .nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed);
}

.main-nav .nav-list a:hover::after {
    width: 100%;
}

.header .header-btn {
    transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out, border-color 0.4s ease-in-out; 
    flex-shrink: 0;
}

.nav-toggle {
    display: none; 
    background: none;
    border: none;
    font-size: 1.8em;
    color: var(--heading-color);
    cursor: pointer;
    z-index: 1002;
    transition: color 0.3s ease;
}

/* TEMAS DO CABEÇALHO */
/* Tema Padrão (para light) */
.header.theme-light {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    /* Logo já está padronizada via variáveis no :root */
    --current-logo-vett-color: var(--logo-vett-default-color);
    --current-logo-a-color: var(--logo-a-default-color);
    --current-logo-globe-color: var(--logo-globe-default-color);
}
.header.theme-light .main-nav .nav-list a {
    color: var(--heading-color);
}
.header.theme-light .header-btn {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Tema Escuro - Sobrescreve as variáveis da logo */
.header.theme-dark {
    background-color: rgba(0, 0, 0, 0.8); /* Fundo semi-transparente escuro */
    box-shadow: none; 
    /* NOVAS CORES PARA A LOGO NO TEMA ESCURO */
    --current-logo-vett-color: var(--white); /* VETT fica branco */
    --current-logo-a-color: var(--secondary-color); /* 'A' fica azul */
    --current-logo-globe-color: #f0f0f0; /* O globo fica quase branco */
}
.header.theme-dark .main-nav .nav-list a {
    color: var(--white);
}
.header.theme-dark .header-btn {
    color: var(--white);
    background-color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}
.header.theme-dark .nav-toggle {
    color: var(--white);
}

/* Tema Primário (vermelho/laranja da Vetta) */
.header.theme-primary {
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    /* Cores da logo para este tema */
    --current-logo-vett-color: var(--heading-color); /* Pode ajustar se quiser diferente */
    --current-logo-a-color: var(--secondary-color); /* 'A' fica azul */
    --current-logo-globe-color: var(--white); /* Globo branco */
}
.header.theme-primary .main-nav .nav-list a {
    color: var(--heading-color);
}
.header.theme-primary .header-btn {
    color: var(--white);
    background-color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

/* Tema Azul Escuro (para seções como Depoimentos) */
.header.theme-dark-blue {
    background-color: #0056b3; /* Um tone de azul mais escuro */
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    /* Cores da logo para este tema */
    --current-logo-vett-color: var(--heading-color); /* Pode ajustar se quiser diferente */
    --current-logo-a-color: var(--secondary-color); /* 'A' fica azul */
    --current-logo-globe-color: var(--gray); /* Globo cinza */
}
.header.theme-dark-blue .logo a {
    color: var(--heading-color)
}
.header.theme-dark-blue .main-nav .nav-list a {
    color: var(--heading-color);
}
.header.theme-dark-blue .header-btn {
    color: var(--white);
    background-color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

/* Estilo para quando o header está abaixo do topo da página */
.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* Opcional: Se quiser que o tema sobrescreva o scrolled, garanta especificidade */
.header.scrolled.theme-dark {
    background-color: rgba(0, 0, 0, 0.9); /* Um pouco mais opaco ao rolar */
    box-shadow: none; /* Garante que não tenha sombra quando o tema é escuro e está scrolled */
}

/* Hero Section */
.hero-section {
    position: relative; /* Essencial para posicionar os filhos */
    overflow: hidden; /* Esconde qualquer parte do vídeo que vaze */
    min-height: 92vh; /* Altura mínima da seção */
    display: flex; /* Para centralizar o hero-content */
    align-items: center; /* Centraliza verticalmente o hero-content */
    justify-content: center; /* Centraliza horizontalmente o hero-content */
    text-align: center;
    color: var(--white); /* Cor padrão do texto */
    background: none; /* Remove qualquer background-image anterior */
    padding: 0; /* Remover padding padrão de section se houver para o vídeo preencher melhor */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Garante que o vídeo fique no fundo */
    display: flex; /* Para centralizar o vídeo dentro do video-background */
    justify-content: center;
    align-items: center;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

/* Oculta a imagem de fallback se o vídeo carregar */
.video-background video + img {
    display: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)); /* Seu overlay escuro */
    z-index: 2; /* Fica entre o vídeo e o conteúdo */
}

.hero-content {
    position: relative; /* ESSENCIAL! Permite que o z-index funcione */
    z-index: 3; /* AGORA ESTÁ ACIMA DO OVERLAY E DO VÍDEO! */
    max-width: 800px; /* Seu max-width existente */
    margin: 0 auto; /* Para centralizar o conteúdo dentro da caixa */
    background-color: rgba(0, 0, 0, 0.4); /* Fundo semi-transparente escuro para visibilidade */
    padding: 30px 40px; /* Espaçamento interno para a caixa */
    border-radius: var(--border-radius); /* Cantos arredondados */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Sombra sutil para destacar */

    /* Efeito "frosted glass" (vidro fosco) - OPCIONAL */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* Para compatibilidade com WebKit */
    transition: transform 0.1s ease-out;
}

.hero-title {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white); /* Garante que o título seja branco */
    text-shadow: 2px 2px 4px #000000a6; /* Sombra no texto para destacá-lo */
}

.hero-subtitle {
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
    color: var(--white); /* Garante que o subtítulo seja branco */
}

.hero-btn {
    font-size: 1.1em;
    padding: 15px 35px;
}

/* ===== NOVA SEÇÃO SOBRE A VETTA ===== */
.sobre-vetta {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 80px 0; /* Ajuste no padding para permitir 100vh sem overflow em telas menores */
    position: relative;
    overflow: hidden;
    min-height: 100vh; /* ALTERADO: Ajustado para cobrir a tela inteira */
    display: flex; /* ALTERADO: Adicionado para centralizar conteúdo verticalmente */
    align-items: center; /* ALTERADO: Centraliza conteúdo verticalmente */
}

.sobre-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%; /* Garante que o grid ocupe a largura disponível */
    text-align: center;
}

/* Lado Esquerdo - Texto */
.sobre-text {
    padding-right: 40px;
}

.sobre-logo {
    margin-bottom: 30px;
    text-align: center;
}

.sobre-logo .logo-white {
    width: 200px;
    height: auto;
    /* ESTILOS DA LOGO SVG NA SEÇÃO SOBRE (SEMPRE BRANCA/AZUL) */
}

.sobre-logo .logo-white .logo-vett-body path {
    fill: var(--white); /* VETT branco */
}
.sobre-logo .logo-white .logo-vetta-a-main path,
.sobre-logo .logo-white .logo-vetta-a-details path {
    fill: var(--secondary-color); /* 'A' azul */
}
.sobre-logo .logo-white .logo-misc-element path {
    fill: var(--white); /* Globo branco */
}

.sobre-title {
    font-size: 3em;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.1;
}

.sobre-description {
    margin-bottom: 40px;
}

.sobre-description p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
    text-indent: 1em;
}

.sobre-highlight {
    background: var(--secondary-color);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    border-left: 5px solid var(--white);
}

.sobre-highlight strong {
    font-size: 1.2em;
    color: var(--white);
    font-weight: 600;
}

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* ALTERADO: Agora apenas 2 colunas */
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform var(--transition-speed);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5em;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Lado Direito - Imagem */
.sobre-image {
    position: relative;
    height: 600px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sobre-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container:hover .sobre-img {
    transform: scale(1.05);
}

/* ===== SEÇÃO PORTFÓLIO DE CATÁLOGOS ===== */
.portfolio-catalogos {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.catalogo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* ALTERADO: 3 colunas fixas */
    gap: 30px; /* REDUZIDO: Menos espaço entre cards */
    margin-top: 60px;
    max-width: 1200px; /* AUMENTADO: Mais espaço para 3 colunas */
    margin-left: auto;
    margin-right: auto;
}

.catalogo-card {
    position: relative;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    aspect-ratio: 1 / 1; 
    height: auto; 
}

.catalogo-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(219, 43, 20, 0.25);
}

/* Efeito Glow específico por marca */
.catalogo-card[data-brand="pilati"]:hover {
    box-shadow: 0 10px 30px #9b1d43d7;
}

.catalogo-card[data-brand="luapa"]:hover {
    box-shadow: 0 10px 30px #793a2cc4;
}

.catalogo-card[data-brand="healthclean"]:hover {
    box-shadow: 0 10px 30px #b81e289d;
}

.catalogo-card[data-brand="winner"]:hover {
    box-shadow: 0 10px 30px #046be0d0;
}

.catalogo-card[data-brand="nanoz"]:hover {
    box-shadow: 0 10px 30px #266bb6b0;
}

.catalogo-card[data-brand="renascer"]:hover {
    box-shadow: 0 10px 30px #f5d562b4;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0; /* REMOVIDO: Sem padding para imagem preencher */
    background: white; /* SIMPLIFICADO: Fundo branco simples */
}

.card-logo {
    position: relative;
    width: 100%; /* NOVO: Ocupa toda a largura */
    height: 100%; /* NOVO: Ocupa toda a altura */
    z-index: 1; /* ALTERADO: Fica atrás do botão */
    transition: transform 0.3s ease;
}

.card-logo img {
    width: 100%; /* NOVO: Preenche todo o card */
    height: 100%; /* NOVO: Preenche todo o card */
    object-fit: contain; /* NOVO: Mantém proporção sem cortar */
    background-color: white; /* NOVO: Fundo branco para logos não-quadradas */
    position: absolute; /* NOVO: Posicionamento absoluto */
    top: 0;
    left: 0;
    z-index: 1; /* NOVO: Fica atrás do botão */
}

.catalogo-card:hover .card-logo {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 30px 20px 70px; /* AUMENTADO: Espaço para o botão */
    transform: translateY(100%);
    transition: transform 0.4s ease;
    text-align: center;
    z-index: 1; /* NOVO: Fica atrás do botão */
}

.catalogo-card:hover .card-overlay {
    transform: translateY(0);
}

.card-overlay h3 {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.card-overlay p {
    font-size: 0.9em;
    margin-bottom: 15px;
    opacity: 0.9;
}

.btn-catalogo {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute; /* Posicionamento absoluto */
    bottom: 20px; /* 20px da parte inferior do CARD */
    left: 50%; /* Centraliza horizontalmente */
    transform: translateX(-50%); /* Ajuste fino da centralização */
    z-index: 3; /* AUMENTADO: Fica acima de tudo */
    opacity: 0; /* Invisível por padrão */
    visibility: hidden; /* Não clicável quando invisível */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* NOVO: Sombra para destacar */
    white-space: nowrap;
}

/* NOVO: Mostra o botão ao passar mouse no card */
.catalogo-card:hover .btn-catalogo {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px); /* NOVO: Leve elevação no hover */
}

.btn-catalogo:hover {
    transform: translateX(-50%) translateY(-8px) scale(1.05); /* CORRIGIDO: Mantém centralização */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4); /* CORRIGIDO: Sombra mais escura */
}

.btn-catalogo i {
    font-size: 1em;
}

/* ===== MODAL DE CATÁLOGOS ===== */
.catalog-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    position: relative;
    margin: 2% auto;
    width: 90%;
    max-width: 900px;
    height: 90%;
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: linear-gradient(135deg, #db2b14e0, #d64734);
    color: var(--white);
    position: relative;
}

.modal-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.modal-header h3 {
    margin: 0;
    font-size: 1.6em;
    font-weight: 600;
    color: var(--white);
}

.close-modal {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5em;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    height: calc(100% - 90px);
    padding: 0;
    background-color: var(--white);
}

.modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== MODAL DE SELEÇÃO DE CATÁLOGOS ===== */
.selection-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px;
    max-height: calc(90vh - 150px);
    overflow-y: auto;
}

.catalog-selection-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.catalog-selection-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(109, 66, 226, 0.05), rgba(74, 119, 228, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.catalog-selection-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(109, 66, 226, 0.15);
    border-color: rgba(109, 66, 226, 0.2);
}

.catalog-selection-item:hover::before {
    opacity: 1;
}

.catalog-selection-item:last-child {
    margin-bottom: 0;
}

.catalog-icon {
    font-size: 2.5em;
    color: var(--logo-vett-default-color);
    min-width: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.catalog-selection-item .catalog-text {
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.catalog-selection-item h4 {
    margin: 0 0 8px 0;
    font-size: 1.4em;
    font-weight: 600;
    color: #333;
}

.catalog-selection-item p {
    margin: 0;
    font-size: 1em;
    color: #667;
    line-height: 1.4;
}

.catalog-preview-btn {
    background: #db2b14e1;
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.catalog-preview-btn:hover {
    background: var(--white); 
    color: var(--primary-color); 
    border-color: var(--primary-color); 
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(43, 17, 2, 0.3);
}

.catalog-preview-btn:active {
    transform: translateY(0);
}

.catalog-preview-btn i {
    font-size: 1em;
}

/* ===== SCROLLBAR CUSTOMIZADA PARA O MODAL ===== */
.selection-grid::-webkit-scrollbar {
    width: 8px;
}

.selection-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.selection-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.selection-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* About Intro Section */
.about-intro {
    padding: 60px 0;
    background-color: var(--white);
}

.about-intro .section-title {
    margin-bottom: 10px;
}

/* Marcas Section */
.marcas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.marcas-grid img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%); /* Marcas em grayscale para neutralidade */
    opacity: 0.7;
    transition: filter var(--transition-speed), opacity var(--transition-speed);
}

.marcas-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.marcas {
    padding-bottom: 150px;
    padding-top: 150px;
}

/* CTA Final */
.cta-final {
    padding: 200px 0;
}

.cta-final .section-title {
    margin-bottom: 40px;
}

.cta-final .section-title::after {
    background-color: var(--secondary-color); /* Linha de destaque */
}

/* Rodapé */
.footer {
    background-color: rgba(0, 0, 0, 0.95);
    color: var(--white);
    padding: 50px 0;
    font-size: 0.9em;
}

.footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2em;
    margin-bottom: 20px;
}

.footer-col ul {
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul a:hover {
    color: var(--white);
}

.footer-col.logo-col .footer-logo {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 20px;
}

.footer-col.logo-col p {
    color: rgba(255, 255, 255, 0.7);
}

.social-icons a {
    display: inline-block;
    color: var(--white);
    font-size: 1.5em;
    margin-right: 15px;
    transition: transform var(--transition-speed);
}

.social-icons a:hover {
    transform: translateY(-3px);
    color: var(--primary-color);
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; /* Cor do WhatsApp */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float span {
    display: none; /* Esconde o texto por padrão */
    font-size: 0.6em;
    font-weight: bold;
    margin-left: 10px;
}

.whatsapp-float:hover {
    width: 180px; /* Aumenta a largura no hover */
    border-radius: 30px; /* Transforma em pílula */
    padding: 0 10px; /* Adiciona padding */
    color: white; /* Garante que o texto "Fale Conosco!" seja sempre branco */
    transition: color 0.3s ease, text-shadow 0.3s ease; /* Adiciona transição para a sombra */
}

.whatsapp-float:hover span {
    display: inline-block; /* Mostra o texto no hover */
}

/* ===== CORREÇÕES ESPECÍFICAS PARA MOBILE ===== */

/* 1. DIMINUIR PADDING DO HEADER NO MOBILE */
@media (max-width: 768px) {
    .header {
        padding: 5px 0; /* Reduzido de 10px para 5px */
    }
    
    .header .container {
        min-height: 50px; /* Reduzido de 60px para 50px */
        padding: 0 15px; /* Padding lateral menor */
    }
    
    .header .logo svg {
        width: 140px; /* Logo um pouco menor no mobile */
        height: auto;
    }
    
    /* Mantém animações mais rápidas em mobile */
    [data-aos] {
        transition-duration: 0.4s !important;
    }
}

/* 2. ARRUMAR NAVEGAÇÃO MOBILE - MENU HAMBURGER */
@media (max-width: 991px) {
    /* Reorganizar layout do header */
    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    /* Logo fica à esquerda */
    .header .logo {
        order: 1;
        margin: 0; /* Remove margens negativas */
        z-index: 1002;
    }
    
    /* Botão hamburger fica à direita */
    .nav-toggle {
        display: block;
        order: 3;
        background: none;
        border: none;
        font-size: 1.5em;
        color: var(--heading-color);
        cursor: pointer;
        z-index: 1003;
        padding: 10px;
        transition: color 0.3s ease;
    }
    
    /* Menu mobile em overlay */
    .header-content-center {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: left 0.3s ease;
        z-index: 1001;
        order: 2;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }
    
    /* Menu ativo */
    .header.nav-active .header-content-center {
        left: 0;
    }
    
    /* Navegação vertical */
    .main-nav {
        width: 100%;
        text-align: center;
    }
    
    .main-nav .nav-list {
        flex-direction: column;
        gap: 25px;
        width: 100%;
        padding: 0;
    }
    
    .main-nav .nav-list li {
        width: 100%;
    }
    
    .main-nav .nav-list a {
        font-size: 1.2em;
        padding: 15px 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid #eee;
        transition: all 0.3s ease;
    }
    
    .main-nav .nav-list a:hover {
        background-color: var(--light-bg);
        color: var(--primary-color);
    }
    
    /* Botão CTA no menu mobile */
    .header .header-btn {
        margin-top: 20px;
        padding: 12px 30px;
        font-size: 1em;
    }
    
    /* Ícone do hamburger animado */
    .nav-toggle i {
        transition: transform 0.3s ease;
    }
    
    .header.nav-active .nav-toggle i {
        transform: rotate(90deg);
    }
    
    /* Cores do menu para diferentes temas */
    .header.theme-dark .nav-toggle {
        color: var(--white);
    }
    
    .header.theme-dark .header-content-center {
        background: rgba(0, 0, 0, 0.95);
    }
    
    .header.theme-dark .main-nav .nav-list a {
        color: var(--white);
        border-bottom-color: rgba(255,255,255,0.1);
    }
    
    .header.theme-dark .main-nav .nav-list a:hover {
        background-color: rgba(255,255,255,0.1);
    }
    
    /* Responsividade do grid de catálogos */
    .catalogo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 600px;
    }
}

/* 3. CARDS MAIS QUADRADOS E FOTOS PREENCHENDO COMPLETAMENTE */
@media (max-width: 768px) {
    /* Grid de catálogos em 1 coluna no mobile */
    .catalogo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 350px; /* Largura controlada */
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Cards perfeitamente quadrados */
    .catalogo-card {
        aspect-ratio: 1 / 1; /* Força proporção 1:1 (quadrado) */
        width: 100%;
        height: auto;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        background: var(--white);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    /* Container interno sem padding */
    .card-inner {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 0; /* Remove todo padding */
        margin: 0; /* Remove toda margem */
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--white);
    }
    
    /* Logo preenchendo todo o card */
    .card-logo {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0; /* Remove padding */
        margin: 0; /* Remove margem */
    }
    
    /* Imagem preenchendo completamente */
    .card-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* IMPORTANTE: cover em vez de contain */
        object-position: center; /* Centraliza a imagem */
        position: absolute;
        top: 0;
        left: 0;
        border-radius: 12px; /* Herda o border-radius do card */
        background: var(--white);
        z-index: 1;
    }
    
    /* Overlay do card */
    .card-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        top: 0; /* Ocupa todo o card */
        background: linear-gradient(
            transparent 0%, 
            transparent 50%, 
            rgba(0, 0, 0, 0.7) 80%, 
            rgba(0, 0, 0, 0.9) 100%
        );
        color: var(--white);
        padding: 0 15px 60px 15px; /* Padding só embaixo para o texto */
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        transform: translateY(0); /* Sempre visível no mobile */
        transition: background 0.3s ease;
        text-align: center;
        z-index: 2;
    }
    
    /* Texto do overlay */
    .card-overlay h3 {
        font-size: 1.1em;
        font-weight: 700;
        margin-bottom: 5px;
        color: var(--white);
        text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    }
    
    .card-overlay p {
        font-size: 0.8em;
        margin-bottom: 10px;
        opacity: 0.95;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
        line-height: 1.3;
    }
    
    /* Botão sempre visível no mobile */
    .btn-catalogo {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--primary-color);
        color: var(--white);
        border: none;
        padding: 8px 16px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 0.75em;
        cursor: pointer;
        z-index: 3;
        opacity: 1; /* Sempre visível */
        visibility: visible; /* Sempre visível */
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        white-space: nowrap;
        transition: all 0.3s ease;
    }
    
    .btn-catalogo:active {
        transform: translateX(-50%) scale(0.95);
        background: var(--secondary-color);
    }
    
    .btn-catalogo i {
        font-size: 0.9em;
        margin-right: 4px;
    }
    
    /* Remove hover effects no mobile */
    .catalogo-card:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .catalogo-card:hover .card-logo {
        transform: none;
    }
    
    .catalogo-card:hover .card-overlay {
        transform: translateY(0);
    }
    
    .catalogo-card:hover .btn-catalogo {
        transform: translateX(-50%);
    }
    
    /* Hero Section Mobile */
    .hero-section {
        min-height: 80vh;
    }
    
    .hero-content {
        padding: 20px 25px;
        margin: 0 10px;
    }
    
    .hero-title {
        font-size: 1.8em;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
        margin-bottom: 25px;
    }
    
    .hero-btn {
        font-size: 1em;
        padding: 12px 25px;
    }
    
    /* Sobre Mobile */
    .sobre-vetta {
        padding: 60px 0;
        min-height: auto;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .sobre-text {
        padding-right: 0;
        order: 2;
    }
    
    .sobre-image {
        order: 1;
        height: 300px;
    }
    
    .sobre-title {
        font-size: 2em;
        margin-bottom: 20px;
    }
    
    .sobre-logo .logo-white {
        width: 150px;
    }
    
    .sobre-description p {
        font-size: 1em;
        line-height: 1.6;
        margin-bottom: 20px;
        text-align: center;
        text-indent: 0;
    }
    
    .sobre-highlight {
        padding: 20px;
        margin: 20px 0;
    }
    
    .sobre-highlight strong {
        font-size: 1.1em;
    }
    
    .sobre-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2em;
    }
    
    .stat-label {
        font-size: 0.8em;
    }
    
    /* Portfolio Mobile */
    .portfolio-catalogos {
        padding: 80px 0;
    }
    
    /* Marcas Mobile */
    .marcas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Seções Mobile */
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8em;
        margin-bottom: 10px;
    }
    
    .section-description {
        font-size: 1em;
        margin: 0 auto 40px auto;
    }
    
    .marcas {
        padding: 80px 0;
    }
    
    .cta-final {
        padding: 120px 0;
    }
    
    /* Botões Mobile */
    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
        min-width: 140px;
    }
    
    .btn-small {
        padding: 8px 15px;
        font-size: 0.7rem;
        min-width: 100px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0;
    }
    
    .footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    /* WhatsApp Mobile */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8em;
    }
    
    .whatsapp-float:hover {
        width: 160px;
        padding: 0 8px;
    }
    
    .whatsapp-float span {
        font-size: 0.55em;
    }
    
    /* Modal Responsivo */
    .modal-content {
        width: 95%;
        height: 95%;
        margin: 2.5% auto;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 20px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .modal-header h3 {
        font-size: 1.3em;
    }
    
    .close-modal {
        position: absolute;
        top: 15px;
        right: 15px;
    }
    
    .selection-grid {
        padding: 20px;
        gap: 15px;
    }
    
    .catalog-selection-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }
    
    .catalog-icon {
        margin-bottom: 0;
    }
    
    .catalog-preview-btn {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
    .container {
        padding: 0 5px;
    }
    
    .catalogo-grid {
        max-width: 280px;
        gap: 15px;
    }
    
    .card-overlay h3 {
        font-size: 1em;
    }
    
    .card-overlay p {
        font-size: 0.75em;
    }
    
    .btn-catalogo {
        padding: 6px 12px;
        font-size: 0.7em;
        bottom: 12px;
    }
    
    /* Hero */
    .hero-content {
        padding: 15px 20px;
        margin: 0 5px;
    }
    
    .hero-title {
        font-size: 1.5em;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 1em;
        margin-bottom: 20px;
    }
    
    /* Sobre */
    .sobre-title {
        font-size: 1.8em;
    }
    
    .sobre-logo .logo-white {
        width: 120px;
    }
    
    .sobre-description p {
        font-size: 0.9em;
    }
    
    .sobre-highlight {
        padding: 15px;
    }
    
    .sobre-highlight strong {
        font-size: 1em;
    }
    
    .sobre-image {
        height: 250px;
    }
    
    /* Marcas */
    .marcas-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Seções */
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.6em;
    }
    
    .section-description {
        font-size: 0.9em;
        margin: 0 auto 30px auto;
    }
    
    .marcas {
        padding: 60px 0;
    }
    
    .cta-final {
        padding: 100px 0;
    }
    
    /* WhatsApp */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.6em;
    }
    
    .whatsapp-float:hover {
        width: 140px;
    }
    
    /* Modal */
    .modal-content {
        width: 98%;
        height: 98%;
        margin: 1% auto;
        border-radius: 10px;
    }
    
    .modal-header {
        padding: 15px;
    }
    
    .selection-grid {
        padding: 15px;
    }
    
    .catalog-selection-item {
        padding: 15px;
    }
}

/* Melhoria para tablets */
@media (min-width: 769px) and (max-width: 991px) {
    .catalogo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 600px;
    }
    
    .catalogo-card {
        aspect-ratio: 1 / 1;
    }
    
    .card-logo img {
        object-fit: cover;
    }
    
    .sobre-content {
        gap: 60px;
    }
    
    .sobre-text {
        padding-right: 20px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .marcas {
        padding: 100px 0;
    }
    
    .cta-final {
        padding: 150px 0;
    }
    
    .footer .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Large Devices (992px - 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .header-content-center {
        gap: 30px;
    }
    
    .main-nav .nav-list {
        gap: 30px;
    }
}

/* Extra Large Devices (1200px e acima) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .sobre-title {
        width: 650px
    }

    .hero-title {
        font-size: 3em;
    }
    
    .sobre-title {
        font-size: 3.5em;
    }
}

/* Parallax mantido para desktop */
@media (min-width: 992px) {
    .hero-content {
        transition: transform 0.1s ease-out;
    }
    
    .sobre-img {
        transition: transform 0.1s ease-out;
    }
}

/* Orientação Landscape para Móveis */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
    }
    
    .sobre-vetta {
        min-height: auto;
        padding: 40px 0;
    }
    
    .sobre-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .sobre-image {
        height: 300px;
    }
    
    .sobre-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Animações suaves em dispositivos que suportam */
@media (prefers-reduced-motion: no-preference) {
    .catalogo-card,
    .btn,
    .whatsapp-float,
    .stat-item {
        transition: all 0.3s ease;
    }
}

/* Melhor contraste para dispositivos com baixa resolução */
@media (max-resolution: 150dpi) {
    .hero-title,
    .sobre-title {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
}

/* Print styles */
@media print {
    .header,
    .nav-toggle,
    .whatsapp-float,
    .catalog-modal {
        display: none !important;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

/* ===== CENTRALIZAÇÃO ABSOLUTA DA LOGO NO MOBILE ===== */
@media (max-width: 991px) {
    .header .container {
        display: flex;
        justify-content: flex-end; /* Alinha o hamburger à direita */
        align-items: center;
        position: relative;
        padding: 0 15px;
    }
    
    /* Logo com posicionamento absoluto para centralização perfeita */
    .header .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%); /* Centraliza perfeitamente */
        z-index: 1002;
        margin: 0;
        order: unset; /* Remove qualquer order anterior */
    }
    
    /* Botão hamburger mantém posição natural à direita */
    .nav-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5em;
        color: var(--heading-color);
        cursor: pointer;
        z-index: 1003;
        padding: 10px;
        position: relative; /* Garante que fique acima da logo */
    }
    
    /* Menu mobile mantém estrutura existente */
    .header-content-center {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: left 0.3s ease;
        z-index: 1001;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }
    
    /* Ajustes de tamanho da logo */
    .header .logo svg {
        width: 140px;
        height: auto;
        max-width: 140px;
    }
}

/* Para telas muito pequenas */
@media (max-width: 480px) {
    .header .logo svg {
        width: 120px;
        max-width: 120px;
    }
    
    .header .container {
        padding: 0 10px;
    }
}

/* Para tablets */
@media (min-width: 769px) and (max-width: 991px) {
    .header .logo svg {
        width: 160px;
        max-width: 160px;
    }
}

/* Garantia extra - força centralização */
@media (max-width: 991px) {
    .header .logo a {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    /* Remove qualquer margem ou padding que possa interferir */
    .header .logo,
    .header .logo a,
    .header .logo svg {
        margin: 0 !important;
        padding: 0 !important;
    }
}