/* =========================================
   1. GERAL & FONTES
   ========================================= */
:root {
    --black: #000000;
    --white: #ffffff;
    --gray-bg: #f4f4f4;
    --gray-cta: #dcdcdc;
    --text-color: #333;
    --font-title: 'Bebas Neue', cursive; 
    --font-body: 'Questrial', sans-serif; 
}

* { box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background: var(--white);
    margin: 0; padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, .bebas-title, .slide-title-lg, .search-label, .section-header h2 {
    font-family: var(--font-title);

}

a { text-decoration: none; transition: 0.3s; color: inherit; }
img { height: auto; display: block; max-width: 100%; }
ul { list-style: none; padding: 0; margin: 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }



/* =========================================
   2. TOP BAR & HEADER
   ========================================= */
.top-bar { 
    background: var(--black); 
    color: var(--white); 
    padding: 8px 0; 
    font-size: 0.85rem; 
}
.top-bar-content { display: flex; justify-content: space-between; align-items: center; }
.top-contacts { display: flex; gap: 20px; align-items: center; }
.top-contacts i { margin-right: 5px; font-size: 0.9rem; }
.top-contacts .separator { color: #666; margin: 0 5px; }
.top-social { display: flex; gap: 15px; }
.top-social i { font-size: 1rem; color: #fff; }

.main-header { 
    background: #fff; 
    padding: 20px 0; 
    position: relative; 
    z-index: 999; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 50px; }
.main-nav ul { display: flex; align-items: center; gap: 0; }
.main-nav li { padding: 0 15px; border-right: 1px solid #ccc; line-height: 1; }
.main-nav li:last-child { border-right: none; padding-right: 0; }
.main-nav a { font-family: var(--font-body); font-weight: 400; font-size: 1.1rem; color: #000; } 
.main-nav a:hover { color: #666; }

/* =========================================
   3. SLIDER HERO
   ========================================= */
.home-slider-container {
    position: relative;
    width: 100%;
    height: 617px;
    background: #000;
    overflow: hidden;
    max-width: 1920px; /* Limite máximo para monitores ultra-wide */
    margin: 0 auto;
}
.slide-item {
    width: 100%; height: 100%;
    background-size: cover; 
    background-position: center top; 
    position: absolute; top: 0; left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex; align-items: center; 
}
.slide-item.active { opacity: 1; z-index: 2; }
.hero-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    z-index: 1;
}
.slide-content-wrapper {
    position: relative; z-index: 3;
    width: 100%; padding-left: 0; text-align: left; margin-top: -40px; 
}
.slide-title-lg {
    font-size: 7.5rem; color: #fff; line-height: 0.85; margin: 0;
    letter-spacing: -2px; text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
}
.slide-subtitle {
    font-size: 3rem; color: #fff; margin-top: 5px; font-weight: 400;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.slider-nav .nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: transparent; border: none; color: rgba(255,255,255,0.4);
    font-size: 3rem; cursor: pointer; z-index: 10; padding: 20px;
}
.nav-btn.prev { left: 10px; } .nav-btn.next { right: 10px; }
.nav-btn:hover { color: #fff; }

/* =========================================
   4. BARRA DE BUSCA (AGORA FULL WIDTH)
   ========================================= */
.search-overlap-wrapper {
    position: relative; z-index: 20;
    width: 100%; /* Garante largura total */
}

.search-box-design {
    background: #dddddd;
    width: 100%; /* Ocupa 100% da tela */
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza o conteúdo na barra larga */
    padding: 25px 20px; /* Padding lateral menor pois o justify já centraliza */
}

.search-title {
    font-family: var(--font-title); font-size: 1.2rem; color: #000;
    margin-right: 30px; white-space: nowrap;
}
.search-separator { width: 1px; height: 30px; background: #ddd; margin-right: 30px; }
.search-form-layout { 
    display: flex; gap: 0; 
    width: 100%; max-width: 600px; /* Limita largura do input para não ficar gigante */
}
.search-form-layout input {
    flex: 1; border: none; background: #ffffff; padding: 15px;
    font-family: var(--font-body); outline: none; font-size: 1rem; color: #666;
}
.search-form-layout button {
    background: var(--black); color: var(--white); border: none; padding: 0 40px;
    font-family: var(--font-title); font-size: 1.1rem; cursor: pointer;
}

/* =========================================
   5. SEÇÕES (DESKTOP PADRÃO)
   ========================================= */
.section-layout-white { padding-bottom: 0px; overflow: hidden; }
.grid-layout-split { display: flex; align-items: center; position: relative; gap: 60px; }
.content-text-left { flex: 1; z-index: 2; }
.content-img-right { flex: 1.1; position: relative; } 

.bebas-title { 
    font-size: 3.5rem; margin-bottom: 5px; line-height: 1; 
    color: #000; margin-left: 100px; width: 100%;
}

.bebas-title-depoimento { 
    font-size: 3.5rem; margin-bottom: 5px; line-height: 1; 
    color: #000; width: 100%; text-align: center;
}




.bebas-title-right { 
    font-size: 3.5rem; margin-bottom: 5px; line-height: 1; 
    color: #000; margin-left: 0px;
}
.text-white { color: #fff; } .text-right { text-align: right;}
.roboto-subtitle { 
    font-family: var(--font-title); font-size: 1.8rem; font-weight: 400;
    margin: -10px; color: #000; margin-left: 100px; width: 110%;
}
.roboto-subtitle-branco { 
    font-family: var(--font-title); font-size: 1.7rem; font-weight: 400; 
    margin: -10px 0 0 0; color: #fff;
}
.roboto-text { 
    font-family: var(--font-body); font-size: 1rem; color: #555; 
    line-height: 1.3; margin-bottom: 25px; margin-left: 100px;
}
.roboto-text-right { 
    font-family: var(--font-body); font-size: 1rem; color: #555; 
    line-height: 1.3; margin-bottom: 25px; margin-left: 0px; 
}
.text-gray { color: #aaa; }
.logos-certification { display: flex; gap: 20px; margin: 20px 0 0 100px; }


/* Seção Escura */
.section-layout-dark { position: relative; padding: 0px 0; margin-top: 0px; }
.content-img-left { flex: 1.2; position: relative; z-index: 2; }
.content-text-right-dark {
    flex: 1; position: relative; min-height: 400px;
    display: flex; align-items: center; justify-content: flex-end; z-index: 200;
}



.text-content-relative { 
    position: relative; z-index: 1; width: 100%; 
    text-align: right; margin-right: 140px;
}
.btn-pill {
    background: #999; color: #000; padding: 12px 30px; border-radius: 50px;
    font-weight: 700; font-size: 0.9rem; display: inline-block; 
    margin-top: 25px; font-family: var(--font-body);
}
.btn-pill:hover { background: #fff; }
.btn-wrapper-right { display: flex; justify-content: flex-end; }

/* =========================================
   6. CTA & DEPOIMENTOS
   ========================================= */
.cta-strip { background: var(--gray-cta); padding: 50px 0; margin-top: -6px }
.flex-center { display: flex; justify-content: center; align-items: center; gap: 30px; }
.bebas-subtitle { font-size: 2rem; margin: 0; font-family: var(--font-title); }
.btn-black-oval { background: #000; color: #fff; padding: 12px 40px; border-radius: 50px; font-weight: 700; }

.testimonials-section { padding: 30px 0; text-align: center; }
.mb-50 { margin-bottom: 50px; }
.testimonials-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1000px; margin: 0 auto; }
.testimo-card { display: flex; flex-direction: column; align-items: center; position: relative; padding: 0 10px; }
.avatar-wrapper img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin-bottom: 25px; filter: grayscale(100%); }
.nav-arrow { position: absolute; top: 40px; background: none; border: none; font-size: 1.5rem; color: #aaa; cursor: pointer; }
.nav-arrow.left { left: 0; } .nav-arrow.right { right: 0; }
.testimo-card p { font-style: italic; color: #555; margin-bottom: 15px; font-size: 0.95rem; }
.testimo-card strong { font-family: var(--font-title); font-size: 1.2rem; }
.testimo-card span { font-size: 0.8rem; color: #888; text-transform: uppercase; margin-top: 5px; display: block; }
.dots-control { margin-top: 50px; display: flex; justify-content: center; gap: 8px; }
.dot { width: 10px; height: 10px; border-radius: 50%; border: 1px solid #000; }
.dot.active { background: #000; }

/* =========================================
   7. FOOTER
   ========================================= */
footer { 
    background: var(--black); 
    color: #999; 
    padding: 60px 0 20px; 
    font-size: 0.85rem; 
}

.footer-row { 
    display: grid; 
    /* AJUSTADO PARA 5 COLUNAS: 
       1. Logo (maior) 
       2. Linhas 
       3. Navegação 
       4. Contato 
       5. Endereço 
    */
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr 1.2fr; 
    gap: 20px; /* Reduzi levemente o gap para caber tudo */
    border-bottom: 1px solid #333; 
    padding-bottom: 40px; 
    margin-bottom: 20px; 
}

.footer-col h4 { 
    color: #fff; 
    font-family: var(--font-title); 
    font-size: 1.1rem; 
    margin-bottom: 20px; 
    border-left: 3px solid #fff; 
    padding-left: 10px; 
    letter-spacing: 1px; 
    text-transform: uppercase;
}

.footer-col li { 
    margin-bottom: 10px; 
}

/* Responsivo para Tablets (diminui para 3 colunas e joga o resto pra baixo) */
@media (max-width: 1024px) {
    .footer-row {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }
}

/* Responsivo Mobile (já existente, mantém 1 coluna) */
@media (max-width: 900px) {
    .footer-row { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 40px; 
    }
    /* Remove a borda lateral no mobile para ficar centralizado bonito */
    .footer-col h4 {
        border-left: none;
        display: inline-block;
        border-bottom: 2px solid #fff;
        padding-bottom: 5px;
        padding-left: 0;
    }
}

/* =========================================
   8. CORREÇÕES PARA MOBILE E NOTEBOOK
   ========================================= */
/* Notebooks (Telas médias) */
@media (max-width: 1440px) {
    .bebas-title, .roboto-subtitle, .roboto-text, .logos-certification { margin-left: 40px !important; width: auto !important; }
    .text-content-relative { margin-right: 40px !important; }
    .img2 { margin-left: -200px; }
}

/* Mobile (Celulares e Tablets pequenos) */
@media (max-width: 900px) {
    .home-slider-container { height: 100vh; max-height: 600px; }
    .slide-title-lg { font-size: 4rem; text-align: center; }
    .slide-subtitle { font-size: 1.5rem; text-align: center; }
    .slide-content-wrapper { text-align: center; padding: 0 20px; margin-top: 0; }

    .main-nav ul { flex-wrap: wrap; justify-content: center; gap: 10px; }
    .main-nav li { border-right: none; }
    
    /* Busca Responsiva */
    .search-box-design { flex-direction: column; padding: 30px 20px; text-align: center; }
    .search-separator { display: none; }
    .search-title { margin-right: 0; margin-bottom: 15px; }
    .search-form-layout { width: 100%; flex-direction: column; gap: 10px; max-width: 100%; }
    .search-form-layout input, .search-form-layout button { width: 100%; }
    
    .grid-layout-split { flex-direction: column; gap: 0; }
    .content-img-left, .content-img-right { width: 100%; flex: auto; }
    .content-text-left, .content-text-right-dark { width: 100%; flex: auto; padding: 40px 20px; }
    
    .bebas-title, .roboto-subtitle, .roboto-text, .logos-certification,
    .bebas-title-right, .roboto-subtitle-branco, .roboto-text-right, 
    .text-content-relative {
        margin-left: 0 !important; margin-right: 0 !important; text-align: center !important; width: 100% !important;
    }
    
/* Corte Diagonal */
.diagonal-mask-right img {
    width: 100%;
    clip-path: polygon(33% 0, 100% 0, 100% 100%, 5% 100%);
    display: block;
}	
	
    .dark-diagonal-bg { display: none; } 
    .content-text-right-dark { background: #000; justify-content: center; min-height: auto; }
    .logos-certification, .btn-wrapper-right { justify-content: center; }
    
    .flex-center { flex-direction: column; gap: 15px; text-align: center; }
    .testimonials-row { grid-template-columns: 1fr; }
    .footer-row { grid-template-columns: 1fr; text-align: center; gap: 40px; }
}
/* --- Estilos Gerais do Header (Base) --- */
.main-header {
    background: #fff; /* Garante fundo branco */
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify_content: space-between;
    align-items: center;
    padding: 10px 15px;
}

/* Esconde o botão mobile no Desktop */
.mobile-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333; /* Cor do ícone */
}

/* Menu Desktop Padrão */
.main-nav ul {
    display: flex;
    list-style: none;
/*    gap: 20px;
*/    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-family: 'Questrial', sans-serif;
    font-weight: bold;
}

/* --- VERSÃO MOBILE (Ativa quando a tela for menor que 991px) --- */
@media (max-width: 991px) {
    
    /* Mostra o botão de hambúrguer */
    .mobile-btn {
        display: block;
    }

    /* Esconde o menu inicialmente e posiciona */
    .main-nav {
        position: absolute;
        top: 100%; /* Fica logo abaixo do header */
        left: 0;
        width: 100%;
        background-color: #fff; /* Fundo do menu aberto */
        border-top: 1px solid #eee;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        
        /* Ocultando */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out; /* Animação suave */
    }

    /* Classe que o JS adiciona para mostrar o menu */
    .main-nav.active {
        max-height: 500px; /* Altura suficiente para mostrar os itens */
    }

    /* Arruma a lista na vertical */
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        text-align: center;
        padding: 10px 0;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #f4f4f4;
    }
}


/* =========================================
   9. PÁGINA DE CONTATO (Novo)
   ========================================= */

/* Hero Section do Contato */
.contact-hero {
    background: url('assets/img/internas/contato.webp') center/cover;
    padding: 100px 0;
    position: relative;
}
.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}
.contact-hero-content {
    position: relative;
    color: var(--white);
    text-align: center;
    z-index: 2;
}
.contact-hero-title {
    font-size: 5rem;
    margin: 0;
    line-height: 1;
}
.contact-hero-subtitle {
    font-size: 2.2rem;
    font-family: var(--font-title);
    margin-top: 5px;
    font-weight: 400;
}

/* Layout Grid e Cards */
.contact-section {
    margin: 60px auto;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.info-card, .form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-card {
    border: 1px solid #f0f0f0;
}

/* Títulos e Ícones */
.contact-section-title {
    font-family: var(--font-title);
    text-transform: uppercase;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--text-color);
    border-bottom: 2px solid #ddd;
    display: inline-block;
    padding-bottom: 5px;
}

.info-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.info-item i {
    color: #d32f2f; /* Vermelho destaque (pode ajustar se preferir preto) */
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 4px;
    width: 20px;
    text-align: center;
}

.info-item h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    color: #555;
    font-weight: 600;
    font-family: var(--font-body);
}

.info-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Mapa */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 20px;
}

/* Formulário Moderno */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
    font-size: 0.9rem;
}

.modern-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    background: #fdfdfd;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.modern-input:focus {
    border-color: #d32f2f;
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-title);
    font-size: 1.2rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    margin-top: 10px;
}

.btn-submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Responsivo para Contato */
@media (max-width: 768px) {
    .contact-hero-title { font-size: 3rem; }
    .contact-hero-subtitle { font-size: 1.5rem; }
    
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .info-card, .form-card {
        padding: 25px;
    }
}

/* =========================================
   10. AJUSTES LAYOUT NOVO (Image Match)
   ========================================= */

/* Grid Principal */
.contato-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; /* Esquerda menor, Direita maior */
    gap: 80px;
    align-items: flex-start;
    margin-bottom: 80px;
}

/* Títulos */
.contact-section-title {
    font-family: var(--font-title);
    text-transform: uppercase;
    font-size: 2rem;
    color: #000;
    margin-top: 0;
    margin-bottom: 30px;
    border: none; /* Remove borda antiga */
    letter-spacing: 0.5px;
}
.contact-section-title.sm { font-size: 1.5rem; }

/* Coluna Esquerda: Cards Limpos */
.info-card-clean, .social-card-clean {
    background: #fff;
    padding: 10px 0; /* Menos padding lateral para alinhar texto à esquerda */
}
.social-card-clean { margin-top: 40px; }

/* Ícones Vermelhos */
.info-item i {
    color: #333; /* Vermelho marca */
    font-size: 1.3rem;
    margin-top: 3px;
    width: 25px;
}
.info-item h4 { font-size: 1.1rem; color: #333; font-weight: 700; margin-bottom: 5px; }
.info-item p { font-size: 0.95rem; color: #666; }

/* Redes Sociais (Bolinhas) */
.social-icons-row { display: flex; gap: 15px; margin-top: 15px; }
.social-circle {
    width: 45px; height: 45px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #333; transition: 0.3s;
}
.social-circle:hover { background: #000; color: #fff; }

/* Coluna Direita: Formulário */
.form-card-clean {
    background: #fff;
    /* Remove sombras pesadas para ficar "flat" como na imagem */
    box-shadow: none; 
    border: none;
    padding: 0;
}

.form-subtitle { color: #888; font-size: 0.95rem; margin-bottom: 30px; margin-top: -15px; }

/* Inputs Modernos */
.modern-input {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 0.95rem;
    color: #555;
}
.modern-input:focus { border-color: #000; }
.form-group label { font-size: 0.85rem; color: #555; font-weight: 600; }

/* Linha Dupla (Nome e Whats) */
.form-row-split {
    display: flex;
    gap: 20px;
}
.form-row-split .form-group { flex: 1; }

/* Botão Preto Sólido */
.btn-submit-black {
    background: #000;
    color: #fff;
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 6px;
    font-family: var(--font-title);
    font-size: 1.3rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}
.btn-submit-black:hover { opacity: 0.8; }
/* Mapa Full Width - Corrigido */
.map-full-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 0; /* Removida a margem negativa que cobria o footer */
    display: block;
}

.map-full-section iframe {
    display: block;
    width: 100%;
    height: 450px; /* Altura fixa para garantir que ocupe espaço */
    border: 0;
}

/* Responsivo Mobile */
@media (max-width: 768px) {
    .contato-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row-split { flex-direction: column; gap: 0; }
    .info-card-clean, .form-card-clean { padding: 0 15px; }
}

/* =========================================
   11. SEÇÃO FABRICANTES (SWIPER JS)
   ========================================= */
.marcas-section {
    background: #EAEAEA; /* Fundo cinza claro */
    padding: 60px 0;
    border-top: 1px solid #ddd;
    text-align: center;
}

.marcas-title {
    font-family: var(--font-title); /* Bebas Neue */
    font-size: 1.5rem;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Ajustes Específicos do Swiper */
.swiper-fabricantes {
    width: 100%;
    padding-bottom: 30px; /* Espaço para a paginação (bolinhas) se quiser */
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px; /* Altura fixa para alinhar verticalmente */
}

.marca-img {
    max-width: 80%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%); /* Preto e branco inicial */
    opacity: 0.6;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover: Fica colorido e dá um leve zoom */
.marca-img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* =========================================
   AJUSTE DE CORES DA PAGINAÇÃO (BOLINHAS)
   ========================================= */

/* 1. Força a cor PRETA na bolinha ativa */
    :root {
        --swiper-theme-color: #000000;
        --swiper-pagination-color: #000000;
    }
    span.swiper-pagination-bullet-active {
        background-color: #000000 !important;
        opacity: 1 !important;
    }
    span.swiper-pagination-bullet {
        background-color: #999; /* Cinza nas inativas */
        width: 12px;  /* (Opcional) Bolinhas um pouco maiores */
        height: 12px;
    }

    /* 2. Aumenta a distância entre logomarcas e bolinhas */
    .swiper-fabricantes {
        padding-bottom: 90px !important; /* Cria um espaço grande embaixo */
        position: relative;
    }

    .swiper-pagination {
        bottom: 20px !important; /* Posiciona as bolinhas bem no final do espaço */
    }

/* =========================================
   AJUSTES DE ESCALA DO SISTEMA - ROTELLI
   ========================================= */

/* ESCALA 100% (Padrão) */
html.escala-100 .diagonal-mask-right img {
    width: 100%;
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 5% 100%);
    display: block;
}

html.escala-100 .dark-diagonal-bg {
    position: absolute;
    top: -91px;
    bottom: -35px;
    right: 0vw;
    left: -412px;
    background: #000;
    z-index: 0;
    clip-path: polygon(26.9% 0, 100% 0, 100% 98.6%, 7% 98.6%);
    height: 588px;
}

html.escala-100 .img2 {
    clip-path: polygon(1.2% 0, 100% 0, 100% 99%, 12% 98.6%);
    margin-left: -400px;
    position: relative;
    z-index: 5;
}

/* ESCALA 125% */
html.escala-125 .diagonal-mask-right img {
    width: 100%;
    clip-path: polygon(33% 0, 100% 0, 100% 100%, 5% 100%);
    display: block;
}

html.escala-125 .dark-diagonal-bg {
    position: absolute;
    top: -29px;
    bottom: -35px;
    right: 0vw;
    left: -327px;
    background: #000;
    z-index: 0;
    clip-path: polygon(26.9% 0, 100% 0, 100% 98.6%, 0% 98.6%);
}

html.escala-125 .img2 {
    clip-path: polygon(1.2% 0, 100% 0, 100% 99%, 12% 98.6%);
    margin-left: -454px;
    position: relative;
    z-index: 5;
}

/* ESCALA 150% */
html.escala-150 .diagonal-mask-right img {
    width: 100%;
    clip-path: polygon(38% 0, 100% 0, 100% 100%, 5% 100%);
    display: block;
}

html.escala-150 .dark-diagonal-bg {
    position: absolute;
    top: -10px;
    bottom: -35px;
    right: 0vw;
    left: -280px;
    background: #000;
    z-index: 0;
    clip-path: polygon(28% 0, 100% 0, 100% 98.6%, 0% 98.6%);
}

html.escala-150 .img2 {
    clip-path: polygon(1.2% 0, 100% 0, 100% 99%, 12% 98.6%);
    margin-left: -500px;
    position: relative;
    z-index: 5;
}

/* ESCALA 175% */
html.escala-175 .diagonal-mask-right img {
    width: 100%;
    clip-path: polygon(40% 0, 100% 0, 100% 100%, 5% 100%);
    display: block;
}

html.escala-175 .dark-diagonal-bg {
    position: absolute;
    top: 0px;
    bottom: -35px;
    right: 0vw;
    left: -240px;
    background: #000;
    z-index: 0;
    clip-path: polygon(29% 0, 100% 0, 100% 98.6%, 0% 98.6%);
}

html.escala-175 .img2 {
    clip-path: polygon(1.2% 0, 100% 0, 100% 99%, 12% 98.6%);
    margin-left: -540px;
    position: relative;
    z-index: 5;
}

/* ESCALA 200% */
html.escala-200 .diagonal-mask-right img {
    width: 100%;
    clip-path: polygon(42% 0, 100% 0, 100% 100%, 5% 100%);
    display: block;
}

html.escala-200 .dark-diagonal-bg {
    position: absolute;
    top: 10px;
    bottom: -35px;
    right: 0vw;
    left: -200px;
    background: #000;
    z-index: 0;
    clip-path: polygon(30% 0, 100% 0, 100% 98.6%, 0% 98.6%);
}

html.escala-200 .img2 {
    clip-path: polygon(1.2% 0, 100% 0, 100% 99%, 12% 98.6%);
    margin-left: -580px;
    position: relative;
    z-index: 5;
}

/* Ajustes de fonte */
html.escala-125 body { font-size: 15px; }
html.escala-150 body { font-size: 14px; }
html.escala-175 body { font-size: 13px; }
html.escala-200 body { font-size: 12px; }



@media (max-width: 900px) {
    .diagonal-mask-right img {
        clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%) !important;
    }
    
    .img2 {
        clip-path: polygon(0.2% 0, 100% 0, 100% 99%, 0% 98.6%) !important;
        margin-left: 0px !important;
    }
}


/* =========================================================
   AJUSTE ESPECÍFICO PARA 1366 x 768 (ESCALA 100)
   Colar após os blocos de escala e antes do @media 900px
   ========================================================= */
@media screen and (min-width: 1360px) and (max-width: 1370px) and (max-height: 800px) {
  html.escala-100 .dark-diagonal-bg {
    position: absolute;
    top: -3px;
    bottom: -35px;
    right: 0vw;
    left: -297px;
    background: #000;
    z-index: 0;
    clip-path: polygon(26.9% 0, 100% 0, 100% 98.6%, 7% 98.6%);
    height: 411px;
  }

  html.escala-100 .diagonal-mask-right img {
    width: 100%;
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 4% 100%);
    display: block;
  }

  html.escala-100 .img2 {
    clip-path: polygon(1.2% 0, 100% 0, 100% 99%, 12% 98.6%);
    margin-left: -297px;
    position: relative;
    z-index: 5;
  }
}