/* =========================================================
   VAZ GLASS
   STYLE.CSS — PARTE 1
   Header + Home + Quem Somos
========================================================= */


/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f6f8;
    color: #172033;
    overflow-x: hidden;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
}


/* =========================================================
   CORES DO SITE
========================================================= */

:root {

    --azul-escuro: #071a38;
    --azul-marinho: #0b2447;
    --azul: #1758a8;
    --azul-claro: #2d74c8;

    --branco: #ffffff;
    --cinza-claro: #f3f5f8;
    --cinza: #7a8494;
    --texto: #172033;

    --sombra:
        0 20px 60px rgba(5, 24, 54, 0.12);

}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: min(1180px, 90%);
    margin: 0 auto;

}


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

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 90px;

    display: flex;
    align-items: center;

    z-index: 1000;

    transition: 0.3s ease;

    border-bottom:
        1px solid rgba(255,255,255,0.15);

}


/* quando rolar a página */

.header.scrolled {

    background:
        rgba(7, 26, 56, 0.97);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.15);

    height: 76px;

}


.header-container {

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 30px;

}


/* =========================================================
   LOGO
========================================================= */

.logo {

    display: flex;

    align-items: center;

    gap: 12px;

    color: white;

}


.logo-icon {

    width: 46px;
    height: 46px;

    border:
        2px solid rgba(255,255,255,0.9);

    display: flex;

    justify-content: center;
    align-items: center;

    font-weight: 800;

    letter-spacing: 1px;

}


.logo-text {

    display: flex;

    flex-direction: column;

}


.logo-text strong {

    font-size: 19px;

    letter-spacing: 2px;

}


.logo-text span {

    margin-top: 3px;

    font-size: 9px;

    letter-spacing: 2px;

    opacity: 0.7;

}


/* =========================================================
   MENU
========================================================= */

.nav-menu {

    display: flex;

    align-items: center;

    gap: 27px;

}


.nav-menu a {

    color: rgba(255,255,255,0.82);

    font-size: 13px;

    position: relative;

    padding: 10px 0;

    transition: 0.3s;

}


.nav-menu a::after {

    content: "";

    position: absolute;

    bottom: 2px;
    left: 0;

    width: 0;
    height: 2px;

    background:
        var(--azul-claro);

    transition: 0.3s;

}


.nav-menu a:hover {

    color: white;

}


.nav-menu a:hover::after {

    width: 100%;

}


/* =========================================================
   BOTÃO HEADER
========================================================= */

.btn-header {

    background:
        var(--azul);

    color: white;

    padding:
        14px 19px;

    font-size: 12px;

    font-weight: 600;

    display: flex;

    align-items: center;

    gap: 8px;

    transition: 0.3s;

}


.btn-header:hover {

    background:
        var(--azul-claro);

    transform:
        translateY(-2px);

}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.menu-toggle {

    display: none;

    color: white;

    font-size: 24px;

}


/* =========================================================
   HERO / HOME
========================================================= */

.hero {

    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        var(--azul-escuro);

}


/*
IMPORTANTE

Aqui será a foto principal da Vaz Glass.

Coloque uma foto dentro da pasta imagens
com o nome:

home-vazglass.jpg
*/

.hero-background {

    position: absolute;

    inset: 0;

    background-image:
        url("imagens/home-vazglass.png");

    background-size: cover;

    background-position: center;

    transform: scale(1.02);

}


/* camada escura sobre a foto */

.hero-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(4,18,42,0.96) 0%,
            rgba(4,18,42,0.86) 40%,
            rgba(4,18,42,0.35) 72%,
            rgba(4,18,42,0.20) 100%
        );

}


/* detalhe azul */

.hero::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 35%;

    height: 5px;

    background:
        var(--azul-claro);

}


/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-container {

    position: relative;

    z-index: 2;

    padding-top: 100px;

}


.hero-content {

    max-width: 720px;

}


/* =========================================================
   BADGE
========================================================= */

.hero-badge,
.section-tag {

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;

}


.hero-badge {

    color:
        rgba(255,255,255,0.78);

    margin-bottom: 28px;

}


.hero-badge span,
.section-tag span {

    width: 38px;

    height: 2px;

    background:
        var(--azul-claro);

}


/* =========================================================
   TÍTULO HOME
========================================================= */

.hero h1 {

    color: white;

    font-size:
        clamp(46px, 6vw, 76px);

    line-height: 1.02;

    letter-spacing: -3px;

    font-weight: 300;

    max-width: 750px;

}


.hero h1 span {

    display: block;

    font-weight: 700;

}


/* =========================================================
   TEXTO HOME
========================================================= */

.hero-description {

    max-width: 570px;

    margin-top: 28px;

    font-size: 17px;

    line-height: 1.7;

    color:
        rgba(255,255,255,0.72);

}


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

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 38px;

}


.btn-primary,
.btn-outline,
.btn-dark {

    min-height: 54px;

    padding:
        0 24px;

    display: inline-flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    font-size: 13px;

    font-weight: 600;

    transition: 0.3s ease;

}


.btn-primary {

    background:
        var(--azul);

    color: white;

}


.btn-primary:hover {

    background:
        var(--azul-claro);

    transform:
        translateY(-3px);

}


.btn-outline {

    color: white;

    border:
        1px solid rgba(255,255,255,0.45);

}


.btn-outline:hover {

    background: white;

    color:
        var(--azul-escuro);

}


/* =========================================================
   INFORMAÇÕES DA HOME
========================================================= */

.hero-stats {

    display: flex;

    align-items: center;

    gap: 30px;

    margin-top: 60px;

    padding-top: 27px;

    border-top:
        1px solid rgba(255,255,255,0.15);

    max-width: 670px;

}


.stat-item {

    display: flex;

    flex-direction: column;

    gap: 6px;

}


.stat-number {

    color: white;

    font-size: 14px;

    font-weight: 700;

}


.stat-label {

    color:
        rgba(255,255,255,0.55);

    font-size: 11px;

}


.stat-divider {

    width: 1px;

    height: 34px;

    background:
        rgba(255,255,255,0.17);

}


/* =========================================================
   TEXTO LATERAL
========================================================= */

.hero-side-text {

    position: absolute;

    right: -55px;

    top: 50%;

    transform:
        translateY(-50%)
        rotate(90deg);

}


.hero-side-text span {

    color:
        rgba(255,255,255,0.2);

    font-size: 10px;

    letter-spacing: 8px;

}


/* =========================================================
   SCROLL DOWN
========================================================= */

.scroll-down {

    position: absolute;

    z-index: 5;

    right: 5%;

    bottom: 35px;

    color:
        rgba(255,255,255,0.6);

    display: flex;

    align-items: center;

    gap: 15px;

    font-size: 10px;

    letter-spacing: 1.5px;

}


.scroll-down i {

    width: 38px;
    height: 38px;

    border:
        1px solid rgba(255,255,255,0.3);

    border-radius: 50%;

    display: flex;

    justify-content: center;
    align-items: center;

}


/* =========================================================
   QUEM SOMOS
========================================================= */

.sobre {

    background:
        var(--cinza-claro);

    padding:
        130px 0 0;

}


.sobre-container {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 90px;

    align-items: center;

}


/* =========================================================
   FOTO QUEM SOMOS
========================================================= */

.sobre-imagens {

    position: relative;

}


.sobre-img-principal {

    width: 100%;

    height: 600px;

    overflow: hidden;

    box-shadow:
        var(--sombra);

}


.sobre-img-principal img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s ease;

}


.sobre-img-principal:hover img {

    transform:
        scale(1.04);

}


/* =========================================================
   BOX SOBRE A FOTO
========================================================= */

.sobre-box {

    position: absolute;

    right: -35px;

    bottom: 45px;

    width: 210px;

    background:
        var(--azul-escuro);

    color: white;

    padding:
        30px;

    box-shadow:
        var(--sombra);

}


.sobre-box::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 45px;

    height: 4px;

    background:
        var(--azul-claro);

}


.sobre-box strong {

    display: block;

    font-size: 21px;

    letter-spacing: 2px;

}


.sobre-box span {

    display: block;

    margin-top: 7px;

    font-size: 11px;

    color:
        rgba(255,255,255,0.6);

}


/* =========================================================
   CONTEÚDO SOBRE
========================================================= */

.section-tag {

    color:
        var(--azul);

    margin-bottom: 22px;

}


.sobre-content h2 {

    font-size:
        clamp(38px, 4vw, 54px);

    line-height: 1.08;

    letter-spacing: -2px;

    font-weight: 300;

    color:
        var(--azul-escuro);

    margin-bottom: 30px;

}


.sobre-content h2 span {

    display: block;

    font-weight: 700;

}


.sobre-content > p {

    color:
        #657083;

    line-height: 1.8;

    font-size: 15px;

    margin-bottom: 15px;

}


/* =========================================================
   DIFERENCIAIS
========================================================= */

.sobre-diferenciais {

    margin:
        38px 0;

    display: flex;

    flex-direction: column;

    gap: 23px;

}


.diferencial-item {

    display: flex;

    align-items: center;

    gap: 17px;

}


.diferencial-icon {

    flex-shrink: 0;

    width: 47px;
    height: 47px;

    border:
        1px solid #d6dce5;

    display: flex;

    align-items: center;

    justify-content: center;

    color:
        var(--azul);

}


.diferencial-item strong {

    display: block;

    color:
        var(--azul-escuro);

    font-size: 14px;

    margin-bottom: 4px;

}


.diferencial-item span {

    color:
        #7b8491;

    font-size: 12px;

}


/* =========================================================
   BOTÃO ESCURO
========================================================= */

.btn-dark {

    background:
        var(--azul-escuro);

    color: white;

}


.btn-dark:hover {

    background:
        var(--azul);

    transform:
        translateY(-3px);

}


/* =========================================================
   ENDEREÇO
========================================================= */

.endereco-faixa {

    margin-top: 120px;

    background:
        var(--azul-escuro);

    color: white;

}


.endereco-container {

    min-height: 150px;

    display: flex;

    align-items: center;

}


.endereco-icon {

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(255,255,255,0.2);

    margin-right: 25px;

    font-size: 20px;

    color:
        var(--azul-claro);

}


.endereco-info span {

    display: block;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 2px;

    color:
        rgba(255,255,255,0.5);

    margin-bottom: 7px;

}


.endereco-info strong {

    display: block;

    font-size: 16px;

    margin-bottom: 5px;

}


.endereco-info p {

    color:
        rgba(255,255,255,0.6);

    font-size: 12px;

}


.endereco-link {

    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 12px;

    color:
        rgba(255,255,255,0.75);

    transition: 0.3s;

}


.endereco-link:hover {

    color: white;

    gap: 17px;

}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 1100px) {

    .nav-menu {

        display: none;

    }


    .menu-toggle {

        display: block;

    }


    .sobre-container {

        gap: 60px;

    }

}


@media (max-width: 850px) {

    .header {

        height: 75px;

    }


    .btn-header {

        display: none;

    }


    .hero {

        min-height: 850px;

    }


    .hero h1 {

        letter-spacing: -2px;

    }


    .hero-overlay {

        background:
            rgba(4,18,42,0.82);

    }


    .hero-side-text {

        display: none;

    }


    .sobre-container {

        grid-template-columns: 1fr;

    }


    .sobre-img-principal {

        height: 500px;

    }


    .sobre-box {

        right: 20px;

    }

}


@media (max-width: 600px) {

    .container {

        width: 88%;

    }


    .logo-text strong {

        font-size: 16px;

    }


    .logo-text span {

        font-size: 7px;

    }


    .hero {

        min-height: 800px;

    }


    .hero-container {

        padding-top: 100px;

    }


    .hero h1 {

        font-size: 43px;

        letter-spacing: -1.5px;

    }


    .hero-description {

        font-size: 15px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .btn-primary,
    .btn-outline {

        width: 100%;

    }


    .hero-stats {

        gap: 15px;

    }


    .stat-divider {

        display: none;

    }


    .hero-stats {

        flex-wrap: wrap;

    }


    .stat-item {

        width: 45%;

    }


    .scroll-down {

        display: none;

    }


    .sobre {

        padding-top: 80px;

    }


    .sobre-img-principal {

        height: 400px;

    }


    .sobre-box {

        width: 180px;

        padding: 23px;

    }


    .sobre-content h2 {

        font-size: 38px;

    }


    .endereco-container {

        padding:
            35px 0;

        align-items: flex-start;

    }


    .endereco-icon {

        width: 48px;
        height: 48px;

        margin-right: 15px;

    }


    .endereco-link {

        display: none;

    }

}
/* =========================================================
   PARTE 2
   TRILHOS / DESNÍVEIS / ESTANQUEIDADE
========================================================= */

.trilhos {
    padding: 130px 0;
    background: #ffffff;
}


/* CABEÇALHO */

.trilhos-header {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: end;
    margin-bottom: 65px;
}

.trilhos-header h2 {
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.05;
    letter-spacing: -2.5px;
    font-weight: 300;
    color: var(--azul-escuro);
}

.trilhos-header h2 span {
    display: block;
    font-weight: 700;
}

.trilhos-header > p {
    color: #6f7989;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   ALERTA TÉCNICO
========================================================= */

.alerta-tecnico {
    position: relative;
    display: grid;
    grid-template-columns: 100px 1fr;
    background: var(--azul-escuro);
    color: white;
    padding: 55px 65px;
    overflow: hidden;
    margin-bottom: 110px;
}

.alerta-tecnico::after {
    content: "!";
    position: absolute;
    right: 25px;
    top: -75px;
    font-size: 300px;
    font-weight: 800;
    color: rgba(255,255,255,0.025);
}

.alerta-icon {
    width: 65px;
    height: 65px;
    border: 1px solid rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--azul-claro);
    font-size: 23px;
}

.alerta-conteudo {
    max-width: 850px;
    position: relative;
    z-index: 2;
}

.alerta-titulo {
    display: block;
    color: var(--azul-claro);
    font-size: 10px;
    letter-spacing: 2.5px;
    font-weight: 700;
    margin-bottom: 14px;
}

.alerta-conteudo h3 {
    font-size: 31px;
    font-weight: 300;
    margin-bottom: 22px;
}

.alerta-conteudo h3 strong {
    font-weight: 700;
}

.alerta-conteudo > p {
    max-width: 780px;
    color: rgba(255,255,255,0.68);
    line-height: 1.75;
    font-size: 14px;
    margin-bottom: 10px;
}

.alerta-chuva {
    margin-top: 28px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: flex;
    gap: 17px;
    align-items: flex-start;
}

.alerta-chuva i {
    color: var(--azul-claro);
    margin-top: 4px;
}

.alerta-chuva p {
    color: rgba(255,255,255,0.78);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   TÍTULO DA COMPARAÇÃO
========================================================= */

.comparacao-titulo {
    text-align: center;
    margin-bottom: 50px;
}

.comparacao-titulo > span {
    color: var(--azul);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.comparacao-titulo h3 {
    margin-top: 12px;
    color: var(--azul-escuro);
    font-size: 36px;
    font-weight: 300;
}

.comparacao-titulo h3 strong {
    font-weight: 700;
}


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

.trilhos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.trilho-card {
    background: #f5f6f8;
    transition: 0.4s ease;
}

.trilho-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sombra);
}

.trilho-imagem {
    height: 330px;
    position: relative;
    overflow: hidden;
    background: #dfe3e9;
}

.trilho-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.trilho-card:hover .trilho-imagem img {
    transform: scale(1.05);
}

.trilho-numero {
    position: absolute;
    left: 25px;
    top: 25px;
    width: 47px;
    height: 47px;
    background: var(--azul-escuro);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    letter-spacing: 1px;
}

.trilho-etiqueta {
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--azul);
    color: white;
    padding: 11px 18px;
    font-size: 9px;
    letter-spacing: 1.8px;
    font-weight: 700;
}

.trilho-conteudo {
    padding: 42px;
}

.trilho-subtitulo {
    display: block;
    color: var(--azul);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 9px;
}

.trilho-conteudo h3 {
    color: var(--azul-escuro);
    font-size: 29px;
    margin-bottom: 20px;
}

.trilho-conteudo > p {
    color: #707a89;
    line-height: 1.75;
    font-size: 13px;
    margin-bottom: 10px;
}


/* =========================================================
   MEDIDA
========================================================= */

.medida-box,
.meia-cana-box {
    min-height: 100px;
    margin: 30px 0;
    padding: 22px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.medida-box {
    background: var(--azul-escuro);
    color: white;
}

.medida-box span,
.meia-cana-box span {
    display: block;
    font-size: 8px;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.medida-box span {
    color: rgba(255,255,255,0.55);
}

.medida-box strong {
    font-size: 27px;
}

.medida-box small {
    font-size: 12px;
    font-weight: 400;
}

.medida-box > i {
    color: var(--azul-claro);
    font-size: 25px;
}


/* MEIA CANA */

.meia-cana-box {
    background: #e8eef6;
    color: var(--azul-escuro);
    justify-content: flex-start;
    gap: 18px;
}

.meia-cana-box > i {
    width: 45px;
    height: 45px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--azul);
}

.meia-cana-box span {
    color: var(--azul);
}

.meia-cana-box strong {
    font-size: 14px;
}


/* =========================================================
   VANTAGENS
========================================================= */

.vantagens {
    border-top: 1px solid #dce0e6;
    padding-top: 25px;
}

.vantagens-titulo {
    display: block;
    color: #9aa2ae;
    font-size: 8px;
    letter-spacing: 1.8px;
    font-weight: 700;
    margin-bottom: 18px;
}

.vantagens ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.vantagens li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #4e5969;
    font-size: 12px;
}

.vantagens li i {
    color: var(--azul);
    font-size: 10px;
}


/* =========================================================
   AVISO CHUVA
========================================================= */

.aviso-chuva {
    margin-top: 45px;
    border: 1px solid #dce2ea;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.aviso-chuva-icon {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    background: #edf3fa;
    color: var(--azul);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.aviso-chuva span {
    display: block;
    color: var(--azul);
    font-size: 9px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 6px;
}

.aviso-chuva h4 {
    color: var(--azul-escuro);
    font-size: 18px;
    margin-bottom: 7px;
}

.aviso-chuva p {
    max-width: 800px;
    color: #737d8c;
    line-height: 1.65;
    font-size: 12px;
}


/* =========================================================
   RESPONSIVO — PARTE 2
========================================================= */

@media (max-width: 850px) {

    .trilhos {
        padding: 90px 0;
    }

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

    .alerta-tecnico {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 40px;
        margin-bottom: 80px;
    }

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

}


@media (max-width: 600px) {

    .trilhos-header h2 {
        font-size: 39px;
    }

    .alerta-tecnico {
        padding: 30px 25px;
    }

    .alerta-conteudo h3 {
        font-size: 25px;
    }

    .comparacao-titulo h3 {
        font-size: 29px;
    }

    .trilho-imagem {
        height: 260px;
    }

    .trilho-conteudo {
        padding: 30px 25px;
    }

    .aviso-chuva {
        align-items: flex-start;
        padding: 28px 23px;
    }

}
/* =========================================================
   PARTE 3
   PORTAS DE CORRER / SUPREMA / GOLD
========================================================= */

.portas-correr {
    padding: 130px 0;
    background: #f4f6f8;
}


/* =========================================================
   CABEÇALHO
========================================================= */

.portas-header {
    display: grid;
    grid-template-columns: 1fr 430px;
    align-items: end;
    gap: 80px;
    margin-bottom: 60px;
}

.portas-header h2 {
    color: var(--azul-escuro);
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.03;
    letter-spacing: -2.5px;
    font-weight: 300;
}

.portas-header h2 span {
    display: block;
    font-weight: 700;
}

.portas-header > p {
    color: #6f7988;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   FOTO DE DESTAQUE
========================================================= */

.porta-destaque {
    height: 560px;
    position: relative;
    overflow: hidden;
    margin-bottom: 65px;
}

.porta-destaque img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

.porta-destaque:hover img {
    transform: scale(1.035);
}

.porta-destaque-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5,22,49,0.9),
            rgba(5,22,49,0.35),
            rgba(5,22,49,0.05)
        );
}

.porta-destaque-texto {
    position: absolute;
    left: 60px;
    bottom: 55px;
    color: white;
    max-width: 520px;
}

.porta-destaque-texto > span {
    display: block;
    font-size: 9px;
    letter-spacing: 2.3px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 12px;
}

.porta-destaque-texto h3 {
    font-size: 37px;
    font-weight: 300;
    line-height: 1.1;
}

.porta-destaque-texto h3 strong {
    display: block;
    font-weight: 700;
}


/* =========================================================
   LINHAS
========================================================= */

.linhas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.linha-card {
    background: white;
    padding: 45px;
    border-top: 4px solid var(--azul);
    box-shadow: 0 15px 45px rgba(7,26,56,0.06);
}

.linha-gold {
    background: var(--azul-escuro);
    color: white;
    border-top-color: var(--azul-claro);
}

.linha-topo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 33px;
}

.linha-numero {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf2f8;
    color: var(--azul);
    font-size: 10px;
}

.linha-gold .linha-numero {
    background: rgba(255,255,255,0.08);
    color: var(--azul-claro);
}

.linha-tag {
    font-size: 9px;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--azul);
}

.linha-gold .linha-tag {
    color: var(--azul-claro);
}

.linha-card > h3 {
    font-size: 41px;
    color: var(--azul-escuro);
    margin-bottom: 15px;
    font-weight: 600;
}

.linha-gold > h3 {
    color: white;
}

.linha-intro {
    color: #747e8e;
    font-size: 14px;
    line-height: 1.75;
    min-height: 75px;
}

.linha-gold .linha-intro {
    color: rgba(255,255,255,0.62);
}


/* =========================================================
   MEDIDAS SUPREMA
========================================================= */

.linha-medidas {
    margin: 32px 0;
    background: #f3f6fa;
    padding: 25px;
}

.linha-medidas > span {
    display: block;
    color: #8b95a4;
    font-size: 8px;
    letter-spacing: 1.7px;
    font-weight: 700;
    margin-bottom: 17px;
}

.medidas-valores {
    display: flex;
    align-items: center;
    gap: 20px;
}

.medidas-valores div {
    display: flex;
    flex-direction: column;
}

.medidas-valores strong {
    font-size: 26px;
    color: var(--azul-escuro);
}

.medidas-valores small {
    margin-top: 3px;
    color: #87909d;
    font-size: 9px;
}

.vezes {
    color: #abb2bd;
    font-size: 20px;
}


/* =========================================================
   INFORMAÇÃO SUPREMA
========================================================= */

.linha-info {
    display: flex;
    gap: 13px;
    margin-bottom: 30px;
    padding: 18px 0;
    border-top: 1px solid #e1e5eb;
    border-bottom: 1px solid #e1e5eb;
}

.linha-info i {
    color: var(--azul);
    margin-top: 4px;
}

.linha-info p {
    color: #747e8e;
    line-height: 1.6;
    font-size: 11px;
}


/* =========================================================
   GOLD DESTAQUE
========================================================= */

.gold-destaque {
    margin: 32px 0;
    padding: 25px;
    background: rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    gap: 18px;
}

.gold-destaque > i {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--azul);
    color: white;
}

.gold-destaque span {
    display: block;
    color: var(--azul-claro);
    font-size: 8px;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.gold-destaque strong {
    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   LISTAS
========================================================= */

.linha-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.linha-lista li {
    color: #586373;
    font-size: 12px;
    display: flex;
    gap: 11px;
    align-items: center;
}

.linha-lista i {
    color: var(--azul);
    font-size: 9px;
}

.linha-gold .linha-lista li {
    color: rgba(255,255,255,0.75);
}

.linha-gold .linha-lista i {
    color: var(--azul-claro);
}


/* =========================================================
   RODAPÉ DOS CARDS
========================================================= */

.linha-rodape {
    margin-top: 36px;
    padding-top: 25px;
    border-top: 1px solid #e1e5eb;
}

.linha-gold .linha-rodape {
    border-color: rgba(255,255,255,0.1);
}

.linha-rodape span {
    display: block;
    color: var(--azul);
    font-size: 8px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 7px;
}

.linha-gold .linha-rodape span {
    color: var(--azul-claro);
}

.linha-rodape strong {
    color: var(--azul-escuro);
    font-size: 12px;
    line-height: 1.5;
}

.linha-gold .linha-rodape strong {
    color: white;
}


/* =========================================================
   ESCOLHA DA LINHA
========================================================= */

.escolha-linha {
    margin-top: 40px;
    background: white;
    padding: 35px 40px;
    display: grid;
    grid-template-columns: 65px 1fr auto;
    gap: 25px;
    align-items: center;
}

.escolha-icon {
    width: 65px;
    height: 65px;
    background: #edf3fa;
    color: var(--azul);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

.escolha-texto span {
    display: block;
    color: var(--azul);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.8px;
    margin-bottom: 6px;
}

.escolha-texto h3 {
    color: var(--azul-escuro);
    font-size: 20px;
    margin-bottom: 6px;
}

.escolha-texto p {
    color: #77808e;
    font-size: 11px;
    line-height: 1.6;
    max-width: 600px;
}


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

.galeria-portas {
    margin-top: 120px;
}

.galeria-titulo {
    margin-bottom: 40px;
}

.galeria-titulo > span {
    color: var(--azul);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.galeria-titulo h3 {
    margin-top: 10px;
    font-size: 36px;
    color: var(--azul-escuro);
    font-weight: 300;
}

.galeria-titulo h3 strong {
    font-weight: 700;
}

.galeria-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: repeat(2, 280px);
    gap: 18px;
}

.galeria-item {
    position: relative;
    overflow: hidden;
}

.galeria-grande {
    grid-row: 1 / 3;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.galeria-item:hover img {
    transform: scale(1.06);
}

.galeria-overlay {
    position: absolute;
    inset: 0;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(
            to top,
            rgba(4,18,42,0.75),
            transparent 55%
        );
    color: white;
}

.galeria-overlay span {
    font-size: 8px;
    letter-spacing: 1.8px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 5px;
}

.galeria-overlay strong {
    font-size: 15px;
}


/* =========================================================
   RESPONSIVO PARTE 3
========================================================= */

@media (max-width: 850px) {

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

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

    .escolha-linha {
        grid-template-columns: 65px 1fr;
    }

    .escolha-linha .btn-primary {
        grid-column: 1 / 3;
    }

}


@media (max-width: 600px) {

    .portas-correr {
        padding: 90px 0;
    }

    .porta-destaque {
        height: 430px;
    }

    .porta-destaque-texto {
        left: 25px;
        bottom: 30px;
        right: 25px;
    }

    .porta-destaque-texto h3 {
        font-size: 30px;
    }

    .linha-card {
        padding: 30px 25px;
    }

    .linha-card > h3 {
        font-size: 34px;
    }

    .medidas-valores {
        gap: 12px;
    }

    .medidas-valores strong {
        font-size: 21px;
    }

    .escolha-linha {
        grid-template-columns: 1fr;
    }

    .escolha-linha .btn-primary {
        grid-column: auto;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 380px 260px 260px;
    }

    .galeria-grande {
        grid-row: auto;
    }

}
/* =========================================================
   PARTE 4
   PORTAS 3 E 4 FOLHAS / VENEZIANA / CORES
========================================================= */

.modelos-portas {
    padding: 130px 0;
    background: #ffffff;
}


/* CABEÇALHO */

.modelos-header {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 80px;
    align-items: end;
    margin-bottom: 75px;
}

.modelos-header h2 {
    color: var(--azul-escuro);
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.03;
    letter-spacing: -2.5px;
    font-weight: 300;
}

.modelos-header h2 span {
    display: block;
    font-weight: 700;
}

.modelos-header > p {
    color: #707b8a;
    line-height: 1.8;
    font-size: 14px;
}


/* =========================================================
   MODELO HORIZONTAL
========================================================= */

.modelo-porta {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    min-height: 520px;
    margin-bottom: 35px;
    background: #f3f5f8;
}

.modelo-invertido {
    grid-template-columns: 1fr 1.25fr;
}

.modelo-invertido .modelo-imagem {
    order: 2;
}

.modelo-invertido .modelo-conteudo {
    order: 1;
}

.modelo-imagem {
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.modelo-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

.modelo-porta:hover .modelo-imagem img {
    transform: scale(1.04);
}

.modelo-label {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 13px 21px;
    background: var(--azul);
    color: white;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* CONTEÚDO */

.modelo-conteudo {
    padding: 60px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modelo-numero {
    color: #c5cbd4;
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.modelo-categoria {
    color: var(--azul);
    font-size: 9px;
    letter-spacing: 2.2px;
    font-weight: 700;
    margin-bottom: 10px;
}

.modelo-conteudo h3 {
    color: var(--azul-escuro);
    font-size: 37px;
    line-height: 1.1;
    font-weight: 300;
    margin-bottom: 25px;
}

.modelo-conteudo h3 strong {
    display: block;
    font-weight: 700;
}

.modelo-conteudo > p {
    color: #747e8c;
    font-size: 13px;
    line-height: 1.8;
}


/* PONTOS */

.modelo-pontos {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 35px;
}

.modelo-pontos > div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.modelo-pontos i {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: white;
    color: var(--azul);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modelo-pontos span {
    color: #808995;
    font-size: 10px;
    line-height: 1.5;
}

.modelo-pontos strong {
    display: block;
    color: var(--azul-escuro);
    font-size: 12px;
}


/* =========================================================
   VENEZIANA
========================================================= */

.veneziana-destaque {
    margin-top: 100px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 600px;
    background: var(--azul-escuro);
}

.veneziana-imagem {
    min-height: 600px;
    overflow: hidden;
}

.veneziana-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.veneziana-conteudo {
    padding: 65px 55px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-tag-claro {
    color: var(--azul-claro);
}

.veneziana-conteudo h3 {
    font-size: 38px;
    line-height: 1.08;
    font-weight: 300;
    margin-bottom: 25px;
}

.veneziana-conteudo h3 strong {
    display: block;
    font-weight: 700;
}

.veneziana-conteudo > p {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
}


/* CONFIGURAÇÕES */

.veneziana-config {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.veneziana-config > div {
    padding: 22px 12px 22px 0;
}

.config-num {
    display: block;
    color: var(--azul-claro);
    font-size: 9px;
    margin-bottom: 7px;
}

.veneziana-config strong {
    font-size: 11px;
    line-height: 1.4;
}


/* DORMITÓRIO */

.veneziana-info {
    margin-top: 30px;
    display: flex;
    gap: 17px;
    align-items: center;
    padding: 22px;
    background: rgba(255,255,255,0.07);
}

.veneziana-info i {
    font-size: 21px;
    color: var(--azul-claro);
}

.veneziana-info span {
    display: block;
    color: var(--azul-claro);
    font-size: 8px;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

.veneziana-info strong {
    font-size: 13px;
}


/* OPCIONAL */

.veneziana-opcional {
    margin-top: 25px;
}

.veneziana-opcional span {
    color: rgba(255,255,255,0.4);
    font-size: 8px;
    letter-spacing: 1.7px;
}

.veneziana-opcional p {
    margin-top: 7px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    font-size: 11px;
}


/* =========================================================
   CORES
========================================================= */

.cores-portas {
    margin-top: 110px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.cores-texto h3 {
    color: var(--azul-escuro);
    font-size: 39px;
    font-weight: 300;
    line-height: 1.08;
    margin-bottom: 25px;
}

.cores-texto h3 strong {
    display: block;
    font-weight: 700;
}

.cores-texto p {
    color: #747e8c;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 12px;
}


/* AMOSTRAS */

.cores-amostras {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.cor-item {
    height: 145px;
    background: #f2f4f7;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cor-item span {
    width: 100%;
    height: 70px;
    display: block;
}

.cor-item strong {
    color: var(--azul-escuro);
    font-size: 11px;
}

.cor-branco span {
    background: #ffffff;
    border: 1px solid #dcdfe4;
}

.cor-preto span {
    background: #17191c;
}

.cor-cinza span {
    background: #74777c;
}

.cor-bronze span {
    background: #7b6353;
}


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

.mini-galeria-portas {
    margin-top: 90px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 420px;
    gap: 12px;
}

.mini-galeria-item {
    overflow: hidden;
}

.mini-galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.mini-galeria-item:hover img {
    transform: scale(1.06);
}

.mini-alto {
    margin-top: 35px;
    margin-bottom: -35px;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 850px) {

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

    .modelo-porta,
    .modelo-invertido {
        grid-template-columns: 1fr;
    }

    .modelo-invertido .modelo-imagem,
    .modelo-invertido .modelo-conteudo {
        order: initial;
    }

    .veneziana-destaque {
        grid-template-columns: 1fr;
    }

    .cores-portas {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .mini-galeria-portas {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }

    .mini-galeria-item {
        height: 300px;
    }

    .mini-alto {
        margin: 0;
    }

}


@media (max-width: 600px) {

    .modelos-portas {
        padding: 90px 0;
    }

    .modelo-imagem {
        min-height: 370px;
    }

    .modelo-conteudo {
        padding: 40px 28px;
    }

    .modelo-conteudo h3 {
        font-size: 31px;
    }

    .veneziana-imagem {
        min-height: 390px;
    }

    .veneziana-conteudo {
        padding: 45px 28px;
    }

    .veneziana-config {
        grid-template-columns: 1fr;
    }

    .veneziana-config > div {
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .cores-amostras {
        grid-template-columns: 1fr 1fr;
    }

    .mini-galeria-portas {
        grid-template-columns: 1fr;
    }

    .mini-galeria-item {
        height: 330px;
    }

}
/* =========================================================
   PARTE 5
   PERSIANAS INTEGRADAS
========================================================= */

.persianas {
    padding: 130px 0;
    background: #f4f6f8;
}


/* CABEÇALHO */

.persianas-header {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 80px;
    align-items: end;
    margin-bottom: 65px;
}

.persianas-header h2 {
    color: var(--azul-escuro);
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.03;
    letter-spacing: -2.5px;
    font-weight: 300;
}

.persianas-header h2 span {
    display: block;
    font-weight: 700;
}

.persianas-header > p {
    color: #707a88;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   IMAGEM PRINCIPAL
========================================================= */

.persiana-principal {
    margin-bottom: 35px;
}

.persiana-principal-img {
    height: 580px;
    position: relative;
    overflow: hidden;
}

.persiana-principal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

.persiana-principal-img:hover img {
    transform: scale(1.035);
}

.persiana-principal-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5,22,49,0.88),
            rgba(5,22,49,0.25),
            rgba(5,22,49,0.02)
        );
}

.persiana-principal-info {
    position: absolute;
    left: 55px;
    bottom: 50px;
    color: white;
}

.persiana-principal-info > span {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 9px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.persiana-principal-info h3 {
    font-size: 39px;
    line-height: 1.08;
    font-weight: 300;
}

.persiana-principal-info h3 strong {
    display: block;
    font-weight: 700;
}


/* =========================================================
   TIPOS
========================================================= */

.persianas-tipos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.persiana-card {
    background: white;
    padding: 38px;
    border-top: 3px solid var(--azul);
}

.persiana-card-destaque {
    background: var(--azul-escuro);
    color: white;
    border-color: var(--azul-claro);
}

.persiana-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #edf3fa;
    color: var(--azul);
    font-size: 18px;
    margin-bottom: 25px;
}

.persiana-card-destaque .persiana-card-icon {
    background: rgba(255,255,255,0.08);
    color: var(--azul-claro);
}

.persiana-card > span {
    display: block;
    color: var(--azul);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.8px;
    margin-bottom: 8px;
}

.persiana-card-destaque > span {
    color: var(--azul-claro);
}

.persiana-card h3 {
    color: var(--azul-escuro);
    font-size: 27px;
    margin-bottom: 12px;
}

.persiana-card-destaque h3 {
    color: white;
}

.persiana-card p {
    color: #747e8d;
    font-size: 12px;
    line-height: 1.7;
}

.persiana-card-destaque p {
    color: rgba(255,255,255,0.62);
}


/* =========================================================
   ALERTA 250 / 280
========================================================= */

.persiana-alerta {
    margin-top: 55px;
    background: #ffffff;
    display: grid;
    grid-template-columns: 280px 1fr;
    box-shadow: 0 15px 45px rgba(7,26,56,0.05);
}

.persiana-alerta-numero {
    background: var(--azul);
    color: white;
    min-height: 290px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex-wrap: wrap;
    padding: 35px;
}

.persiana-alerta-numero span {
    font-size: 50px;
    font-weight: 700;
}

.persiana-alerta-numero small {
    font-size: 14px;
    opacity: 0.7;
}

.persiana-alerta-numero strong {
    width: 100%;
    text-align: center;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 500;
}

.persiana-alerta-texto {
    padding: 50px 55px;
}

.persiana-alerta-texto h3 {
    color: var(--azul-escuro);
    font-size: 30px;
    margin-bottom: 20px;
}

.persiana-alerta-texto p {
    color: #707a89;
    font-size: 13px;
    line-height: 1.75;
    margin-bottom: 10px;
}

.persiana-alerta-texto strong {
    color: var(--azul-escuro);
}


/* =========================================================
   EXEMPLOS
========================================================= */

.persianas-exemplos {
    margin-top: 110px;
}

.persianas-exemplos-titulo {
    margin-bottom: 40px;
}

.persianas-exemplos-titulo > span {
    color: var(--azul);
    font-size: 9px;
    letter-spacing: 2px;
    font-weight: 700;
}

.persianas-exemplos-titulo h3 {
    margin-top: 10px;
    color: var(--azul-escuro);
    font-size: 37px;
    font-weight: 300;
}

.persianas-exemplos-titulo h3 strong {
    font-weight: 700;
}

.persianas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.persiana-projeto {
    background: white;
    transition: 0.35s ease;
}

.persiana-projeto:hover {
    transform: translateY(-6px);
    box-shadow: var(--sombra);
}

.persiana-projeto-img {
    height: 330px;
    overflow: hidden;
}

.persiana-projeto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.persiana-projeto:hover img {
    transform: scale(1.05);
}

.persiana-projeto-texto {
    padding: 25px;
}

.persiana-projeto-texto span {
    display: block;
    color: var(--azul);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.7px;
    margin-bottom: 8px;
}

.persiana-projeto-texto h4 {
    color: var(--azul-escuro);
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.persiana-projeto-texto p {
    color: #77818f;
    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   BENEFÍCIO
========================================================= */

.persiana-beneficio {
    margin-top: 70px;
    padding: 45px 50px;
    background: var(--azul-escuro);
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.persiana-beneficio span {
    display: block;
    color: var(--azul-claro);
    font-size: 8px;
    letter-spacing: 1.8px;
    font-weight: 700;
    margin-bottom: 8px;
}

.persiana-beneficio h3 {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.15;
}

.persiana-beneficio h3 strong {
    font-weight: 700;
}

.persiana-beneficio > p {
    color: rgba(255,255,255,0.65);
    font-size: 12px;
    line-height: 1.75;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 850px) {

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

    .persiana-alerta {
        grid-template-columns: 1fr;
    }

    .persiana-alerta-numero {
        min-height: 180px;
    }

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

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

}


@media (max-width: 600px) {

    .persianas {
        padding: 90px 0;
    }

    .persiana-principal-img {
        height: 430px;
    }

    .persiana-principal-info {
        left: 25px;
        bottom: 30px;
        right: 25px;
    }

    .persiana-principal-info h3 {
        font-size: 30px;
    }

    .persianas-tipos {
        grid-template-columns: 1fr;
    }

    .persiana-alerta-texto {
        padding: 35px 25px;
    }

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

    .persiana-projeto-img {
        height: 350px;
    }

    .persiana-beneficio {
        padding: 35px 28px;
    }

}
/* =========================================================
   VÍDEOS - PERSIANA
========================================================= */

.persiana-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* =========================================================
   LOGO OFICIAL VAZ GLASS
========================================================= */

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: auto;
    height: 58px;
    object-fit: contain;
    display: block;
    transition: 0.3s ease;
}

/* Quando o menu diminuir ao rolar a página */

.header.scrolled .logo-img {
    height: 48px;
}


/* CELULAR */

@media (max-width: 600px) {

    .logo-img {
        height: 46px;
    }

}
/* =========================================================
   PARTE 6
   PORTAS DE GIRO
========================================================= */

.portas-giro {
    padding: 130px 0;
    background: #ffffff;
}


/* CABEÇALHO */

.giro-header {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 80px;
    align-items: end;
    margin-bottom: 65px;
}

.giro-header h2 {
    color: var(--azul-escuro);
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.03;
    letter-spacing: -2.5px;
    font-weight: 300;
}

.giro-header h2 span {
    display: block;
    font-weight: 700;
}

.giro-header > p {
    color: #707a89;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   FOTO PRINCIPAL
========================================================= */

.giro-hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.giro-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.giro-hero:hover img {
    transform: scale(1.035);
}

.giro-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(5, 22, 49, 0.92) 0%,
        rgba(5, 22, 49, 0.62) 42%,
        rgba(5, 22, 49, 0.08) 80%
    );
}

.giro-hero-content {
    position: absolute;
    left: 60px;
    bottom: 60px;
    max-width: 540px;
    color: white;
}

.giro-hero-content > span {
    display: block;
    color: var(--azul-claro);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.2px;
    margin-bottom: 13px;
}

.giro-hero-content h3 {
    font-size: 42px;
    line-height: 1.07;
    font-weight: 300;
    margin-bottom: 18px;
}

.giro-hero-content h3 strong {
    display: block;
    font-weight: 700;
}

.giro-hero-content p {
    max-width: 450px;
    color: rgba(255,255,255,0.68);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   OPÇÕES
========================================================= */

.giro-opcoes {
    margin-top: 110px;
}

.giro-opcoes-titulo {
    margin-bottom: 40px;
}

.giro-opcoes-titulo > span {
    display: block;
    color: var(--azul);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.giro-opcoes-titulo h3 {
    color: var(--azul-escuro);
    font-size: 38px;
    line-height: 1.1;
    font-weight: 300;
}

.giro-opcoes-titulo h3 strong {
    font-weight: 700;
}

.giro-opcoes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.giro-opcao {
    min-height: 235px;
    padding: 28px;
    background: #f3f5f8;
    border-bottom: 3px solid transparent;
    transition: 0.35s ease;
}

.giro-opcao:hover {
    background: white;
    border-bottom-color: var(--azul);
    box-shadow: 0 18px 45px rgba(7,26,56,0.1);
    transform: translateY(-5px);
}

.giro-opcao-icon {
    width: 47px;
    height: 47px;
    background: white;
    color: var(--azul);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 27px;
}

.giro-opcao:hover .giro-opcao-icon {
    background: var(--azul);
    color: white;
}

.giro-opcao > strong {
    display: block;
    color: var(--azul-escuro);
    font-size: 15px;
    margin-bottom: 9px;
}

.giro-opcao > p {
    color: #7b8491;
    font-size: 11px;
    line-height: 1.65;
}


/* =========================================================
   MODELOS
========================================================= */

.giro-modelo {
    margin-top: 100px;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    min-height: 540px;
    background: #f3f5f8;
}

.giro-modelo + .giro-modelo {
    margin-top: 25px;
}

.giro-modelo-invertido {
    grid-template-columns: 1fr 1.15fr;
}

.giro-modelo-invertido .giro-modelo-imagem {
    order: 2;
}

.giro-modelo-invertido .giro-modelo-content {
    order: 1;
}


/* IMAGEM */

.giro-modelo-imagem {
    position: relative;
    min-height: 540px;
    overflow: hidden;
}

.giro-modelo-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.giro-modelo:hover .giro-modelo-imagem img {
    transform: scale(1.04);
}

.giro-modelo-numero {
    position: absolute;
    top: 25px;
    left: 25px;

    width: 48px;
    height: 48px;

    background: var(--azul-escuro);
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 10px;
    letter-spacing: 1px;
}


/* TEXTO */

.giro-modelo-content {
    padding: 60px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.giro-label {
    display: block;
    color: var(--azul);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.giro-modelo-content h3 {
    color: var(--azul-escuro);
    font-size: 39px;
    line-height: 1.08;
    font-weight: 300;
    margin-bottom: 22px;
}

.giro-modelo-content h3 strong {
    display: block;
    font-weight: 700;
}

.giro-modelo-content > p {
    color: #747e8c;
    font-size: 13px;
    line-height: 1.8;
}


/* CARACTERÍSTICAS */

.giro-caracteristicas {
    margin-top: 32px;
    padding-top: 27px;
    border-top: 1px solid #dce1e7;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
}

.giro-caracteristicas > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.giro-caracteristicas i {
    width: 25px;
    height: 25px;
    flex-shrink: 0;

    background: #e6eef8;
    color: var(--azul);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 8px;
}

.giro-caracteristicas span {
    color: #596474;
    font-size: 11px;
}


/* =========================================================
   VENEZIANAS
========================================================= */

.veneziana-tipos-giro {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

.veneziana-tipos-giro > div {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 17px;
    padding: 20px 0;
    border-top: 1px solid #dce1e7;
}

.veneziana-tipos-giro > div > span {
    width: 36px;
    height: 36px;

    background: var(--azul-escuro);
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 9px;
}

.veneziana-tipos-giro strong {
    display: block;
    color: var(--azul-escuro);
    font-size: 13px;
    margin-bottom: 5px;
}

.veneziana-tipos-giro p {
    color: #7b8491;
    font-size: 10px;
    line-height: 1.5;
}


/* =========================================================
   LINHAS DISPONÍVEIS
========================================================= */

.giro-linhas {
    margin-top: 100px;
    padding: 55px;

    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;

    background: var(--azul-escuro);
    color: white;
}

.giro-linhas-texto > span {
    display: block;
    color: var(--azul-claro);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.giro-linhas-texto h3 {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 300;
    margin-bottom: 18px;
}

.giro-linhas-texto h3 strong {
    display: block;
    font-weight: 700;
}

.giro-linhas-texto p {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    line-height: 1.7;
}


/* LISTA DE LINHAS */

.giro-linhas-lista {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(255,255,255,0.12);
}

.giro-linhas-lista > div {
    padding: 20px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.12);

    display: flex;
    align-items: center;
    gap: 15px;
}

.giro-linhas-lista span {
    color: var(--azul-claro);
    font-size: 9px;
}

.giro-linhas-lista strong {
    font-size: 13px;
}


/* =========================================================
   BANDEIRAS
========================================================= */

.giro-bandeiras {
    margin-top: 100px;

    display: grid;
    grid-template-columns: 1.25fr 1fr;

    background: #f3f5f8;
}

.giro-bandeiras-imagem {
    min-height: 470px;
}

.giro-bandeiras-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.giro-bandeiras-content {
    padding: 55px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.giro-bandeiras-content > span {
    color: var(--azul);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.giro-bandeiras-content h3 {
    color: var(--azul-escuro);
    font-size: 36px;
    line-height: 1.1;
    font-weight: 300;
    margin-bottom: 23px;
}

.giro-bandeiras-content h3 strong {
    display: block;
    font-weight: 700;
}

.giro-bandeiras-content p {
    color: #747e8c;
    font-size: 12px;
    line-height: 1.75;
    margin-bottom: 10px;
}


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

.giro-galeria {
    margin-top: 110px;
}

.giro-galeria-header {
    display: grid;
    grid-template-columns: 1fr 300px;
    align-items: end;
    gap: 50px;
    margin-bottom: 40px;
}

.giro-galeria-header span {
    display: block;
    color: var(--azul);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.giro-galeria-header h3 {
    color: var(--azul-escuro);
    font-size: 37px;
    font-weight: 300;
}

.giro-galeria-header h3 strong {
    font-weight: 700;
}

.giro-galeria-header p {
    color: #7a8492;
    font-size: 12px;
    line-height: 1.6;
}


/* IMAGENS */

.giro-galeria-grid {
    height: 500px;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 15px;
}

.giro-galeria-item {
    height: 430px;
    overflow: hidden;
}

.giro-galeria-alta {
    height: 500px;
}

.giro-galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.giro-galeria-item:hover img {
    transform: scale(1.055);
}


/* =========================================================
   RESPONSIVO - PORTAS DE GIRO
========================================================= */

@media (max-width: 950px) {

    .giro-opcoes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .giro-linhas {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}


@media (max-width: 850px) {

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

    .giro-modelo,
    .giro-modelo-invertido {
        grid-template-columns: 1fr;
    }

    .giro-modelo-invertido .giro-modelo-imagem,
    .giro-modelo-invertido .giro-modelo-content {
        order: initial;
    }

    .giro-bandeiras {
        grid-template-columns: 1fr;
    }

    .giro-galeria-header {
        grid-template-columns: 1fr;
        gap: 15px;
    }

}


@media (max-width: 600px) {

    .portas-giro {
        padding: 90px 0;
    }

    .giro-hero {
        height: 480px;
    }

    .giro-hero-content {
        left: 25px;
        right: 25px;
        bottom: 35px;
    }

    .giro-hero-content h3 {
        font-size: 32px;
    }

    .giro-opcoes {
        margin-top: 75px;
    }

    .giro-opcoes-grid {
        grid-template-columns: 1fr 1fr;
    }

    .giro-opcao {
        min-height: 210px;
        padding: 22px;
    }

    .giro-modelo {
        margin-top: 70px;
    }

    .giro-modelo-imagem {
        min-height: 400px;
    }

    .giro-modelo-content {
        padding: 40px 27px;
    }

    .giro-modelo-content h3 {
        font-size: 31px;
    }

    .giro-caracteristicas {
        grid-template-columns: 1fr;
    }

    .giro-linhas {
        padding: 40px 27px;
    }

    .giro-linhas-lista {
        grid-template-columns: 1fr;
    }

    .giro-bandeiras-imagem {
        min-height: 390px;
    }

    .giro-bandeiras-content {
        padding: 40px 27px;
    }

    .giro-galeria-grid {
        height: auto;
        grid-template-columns: 1fr;
    }

    .giro-galeria-item,
    .giro-galeria-alta {
        height: 350px;
    }

}   
/* AJUSTE - PORTA DE GIRO EM VIDRO */

.giro-modelo:has(.giro-imagem-vidro) {
    min-height: 430px;
}

.giro-imagem-vidro {
    min-height: 430px;
    height: 430px;
}

.giro-imagem-vidro img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #eef1f5;
}
/* =========================================================
   3 IMAGENS - PORTA DE GIRO
========================================================= */

.giro-imagem-tripla {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    background: #eef1f5;
    min-height: 430px;
    height: 430px;
}

.giro-tripla-item {
    overflow: hidden;
    height: 100%;
}

.giro-tripla-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: 0.4s ease;
}

.giro-tripla-item:hover img {
    transform: scale(1.04);
}


/* CELULAR */

@media (max-width: 600px) {

    .giro-imagem-tripla {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
    }

    .giro-tripla-item {
        height: 280px;
    }

}
/* =========================================================
   CORREÇÃO - 3 IMAGENS PORTA DE GIRO
========================================================= */

.giro-imagem-tripla {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px;

    height: 430px !important;
    min-height: 430px !important;

    padding: 8px;
    background: #eef1f5;

    position: relative;
    overflow: hidden;
}

.giro-imagem-tripla .giro-tripla-item {
    width: 100%;
    height: 100%;
    min-width: 0;
    overflow: hidden;
}

.giro-imagem-tripla .giro-tripla-item img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center;

    display: block;
    position: static !important;

    transform: none;
}


/* EFEITO AO PASSAR O MOUSE */

.giro-imagem-tripla .giro-tripla-item:hover img {
    transform: scale(1.04);
}


/* CELULAR */

@media (max-width: 600px) {

    .giro-imagem-tripla {
        grid-template-columns: 1fr !important;
        height: auto !important;
        min-height: 0 !important;
    }

    .giro-imagem-tripla .giro-tripla-item {
        height: 300px;
    }

}
/* =========================================================
   AJUSTE FINAL - PORTA DE GIRO COM 3 FOTOS + TEXTO AO LADO
========================================================= */

/* BLOCO COMPLETO: FOTOS À ESQUERDA + TEXTO À DIREITA */

.giro-modelo:has(.giro-imagem-tripla) {
    display: grid !important;
    grid-template-columns: 58% 42% !important;
    align-items: stretch;
    min-height: 460px !important;
}


/* ÁREA DAS 3 FOTOS */

.giro-imagem-tripla {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;

    gap: 6px;

    width: 100% !important;
    height: 460px !important;
    min-height: 460px !important;

    padding: 6px;
    box-sizing: border-box;

    background: #eef1f5;
    overflow: hidden;
}


/* CADA FOTO */

.giro-imagem-tripla .giro-tripla-item {
    width: 100%;
    height: 100%;
    min-width: 0;
    overflow: hidden;
}


/* IMAGENS */

.giro-imagem-tripla .giro-tripla-item img {
    width: 100% !important;
    height: 100% !important;

    display: block !important;

    object-fit: cover !important;
    object-position: center;

    position: static !important;
}


/* TEXTO DA DIREITA */

.giro-modelo:has(.giro-imagem-tripla) .giro-modelo-content {
    width: 100%;
    min-width: 0;

    padding: 45px 40px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    box-sizing: border-box;
}


/* RESPONSIVO */

@media (max-width: 850px) {

    .giro-modelo:has(.giro-imagem-tripla) {
        grid-template-columns: 1fr !important;
    }

    .giro-imagem-tripla {
        height: 400px !important;
        min-height: 400px !important;
    }

}
/* =========================================================
   PORTA DE GIRO COM VIDRO
   3 IMAGENS À ESQUERDA + TEXTO À DIREITA
========================================================= */

.giro-vidro-bloco {
    width: 100%;

    display: grid;
    grid-template-columns: 58% 42%;

    background: #f3f5f8;

    min-height: 480px;

    margin-top: 100px;
}


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

.giro-vidro-galeria {
    position: relative;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 7px;

    padding: 7px;

    height: 480px;

    overflow: hidden;

    background: #e9edf2;
}


.giro-vidro-item {
    width: 100%;
    height: 100%;

    min-width: 0;

    overflow: hidden;
}


.giro-vidro-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;

    transition: 0.4s ease;
}


.giro-vidro-item:hover img {
    transform: scale(1.04);
}


/* =========================
   TEXTO
========================= */

.giro-vidro-texto {
    padding: 55px 45px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


.giro-vidro-texto h3 {
    color: var(--azul-escuro);

    font-size: 39px;

    line-height: 1.08;

    font-weight: 300;

    margin-bottom: 22px;
}


.giro-vidro-texto h3 strong {
    display: block;

    font-weight: 700;
}


.giro-vidro-texto > p {
    color: #747e8c;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================
   OPÇÕES
========================= */

.giro-vidro-opcoes {
    margin-top: 30px;

    padding-top: 25px;

    border-top: 1px solid #dce1e7;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}


.giro-vidro-opcoes > div {
    display: flex;

    align-items: center;

    gap: 10px;
}


.giro-vidro-opcoes i {
    width: 28px;
    height: 28px;

    flex-shrink: 0;

    background: var(--azul-escuro);

    color: white;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 9px;
}


.giro-vidro-opcoes span {
    color: #596474;

    font-size: 11px;

    line-height: 1.4;
}


/* =========================
   CELULAR
========================= */

@media (max-width: 850px) {

    .giro-vidro-bloco {
        grid-template-columns: 1fr;
    }

    .giro-vidro-galeria {
        height: 420px;
    }

}


@media (max-width: 600px) {

    .giro-vidro-galeria {
        grid-template-columns: 1fr;

        height: auto;
    }

    .giro-vidro-item {
        height: 300px;
    }

    .giro-vidro-texto {
        padding: 40px 27px;
    }

    .giro-vidro-texto h3 {
        font-size: 31px;
    }

    .giro-vidro-opcoes {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   PORTA DE GIRO COM LAMBRIL
   3 IMAGENS + TEXTO AO LADO
========================================================= */

.giro-lambril-bloco {
    width: 100%;
    display: grid;
    grid-template-columns: 58% 42%;
    background: #f3f5f8;
    min-height: 480px;
    margin-top: 25px;
}


/* GALERIA */

.giro-lambril-galeria {
    position: relative;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 7px;
    padding: 7px;

    height: 480px;

    background: #e9edf2;
    overflow: hidden;
}

.giro-lambril-item {
    width: 100%;
    height: 100%;
    min-width: 0;
    overflow: hidden;
}

.giro-lambril-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;

    transition: transform 0.4s ease;
}

.giro-lambril-item:hover img {
    transform: scale(1.04);
}


/* TEXTO */

.giro-lambril-texto {
    padding: 55px 45px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.giro-lambril-texto h3 {
    color: var(--azul-escuro);

    font-size: 39px;
    line-height: 1.08;

    font-weight: 300;

    margin-bottom: 22px;
}

.giro-lambril-texto h3 strong {
    display: block;
    font-weight: 700;
}

.giro-lambril-texto > p {
    color: #747e8c;
    font-size: 13px;
    line-height: 1.8;
}


/* OPÇÕES */

.giro-lambril-opcoes {
    margin-top: 30px;
    padding-top: 25px;

    border-top: 1px solid #dce1e7;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.giro-lambril-opcoes > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.giro-lambril-opcoes i {
    width: 28px;
    height: 28px;

    flex-shrink: 0;

    background: var(--azul-escuro);
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 9px;
}

.giro-lambril-opcoes span {
    color: #596474;
    font-size: 11px;
    line-height: 1.4;
}


/* RESPONSIVO */

@media (max-width: 850px) {

    .giro-lambril-bloco {
        grid-template-columns: 1fr;
    }

    .giro-lambril-galeria {
        height: 420px;
    }

}

@media (max-width: 600px) {

    .giro-lambril-galeria {
        grid-template-columns: 1fr;
        height: auto;
    }

    .giro-lambril-item {
        height: 300px;
    }

    .giro-lambril-texto {
        padding: 40px 27px;
    }

    .giro-lambril-texto h3 {
        font-size: 31px;
    }

    .giro-lambril-opcoes {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   INVERTER LADO - PORTA COM LAMBRIL
   TEXTO ESQUERDA / FOTOS DIREITA
========================================================= */

.giro-lambril-texto {
    grid-column: 1;
    grid-row: 1;
}

.giro-lambril-galeria {
    grid-column: 2;
    grid-row: 1;
}
.giro-lambril-bloco {
    grid-template-columns: 42% 58%;
}
/* =========================================================
   PORTA DE GIRO COM VENEZIANA
   3 FOTOS ESQUERDA / TEXTO DIREITA
========================================================= */

.giro-veneziana-bloco {
    width: 100%;
    display: grid;
    grid-template-columns: 58% 42%;
    min-height: 480px;

    margin-top: 25px;

    background: #f3f5f8;
}


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

.giro-veneziana-galeria {
    position: relative;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 7px;
    padding: 7px;

    height: 480px;

    background: #e9edf2;

    overflow: hidden;
}


.giro-veneziana-item {
    width: 100%;
    height: 100%;

    min-width: 0;

    overflow: hidden;
}


.giro-veneziana-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 0.4s ease;
}


.giro-veneziana-item:hover img {
    transform: scale(1.04);
}


/* =========================================================
   TEXTO
========================================================= */

.giro-veneziana-texto {
    padding: 55px 45px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


.giro-veneziana-texto h3 {
    color: var(--azul-escuro);

    font-size: 39px;
    line-height: 1.08;

    font-weight: 300;

    margin-bottom: 22px;
}


.giro-veneziana-texto h3 strong {
    display: block;
    font-weight: 700;
}


.giro-veneziana-texto > p {
    color: #747e8c;

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   TIPOS DE VENEZIANA
========================================================= */

.giro-veneziana-tipos {
    margin-top: 30px;

    border-top: 1px solid #dce1e7;
}


.giro-veneziana-tipo {
    display: grid;
    grid-template-columns: 42px 1fr;

    gap: 15px;

    padding: 20px 0;

    border-bottom: 1px solid #dce1e7;
}


.giro-veneziana-num {
    width: 36px;
    height: 36px;

    background: var(--azul-escuro);
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 9px;
}


.giro-veneziana-tipo strong {
    display: block;

    color: var(--azul-escuro);

    font-size: 13px;

    margin-bottom: 5px;
}


.giro-veneziana-tipo p {
    color: #7b8491;

    font-size: 10px;
    line-height: 1.55;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 850px) {

    .giro-veneziana-bloco {
        grid-template-columns: 1fr;
    }

    .giro-veneziana-galeria {
        height: 420px;
    }

}


@media (max-width: 600px) {

    .giro-veneziana-galeria {
        grid-template-columns: 1fr;
        height: auto;
    }

    .giro-veneziana-item {
        height: 300px;
    }

    .giro-veneziana-texto {
        padding: 40px 27px;
    }

    .giro-veneziana-texto h3 {
        font-size: 31px;
    }

}
/* =========================================================
   PARTE 7
   PORTAS PIVOTANTES
========================================================= */

.pivotantes {
    padding: 130px 0;
    background: #f4f6f8;
}


/* CABEÇALHO */

.pivotantes-header {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: end;
    margin-bottom: 65px;
}

.pivotantes-header h2 {
    color: var(--azul-escuro);
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.03;
    letter-spacing: -2.5px;
    font-weight: 300;
}

.pivotantes-header h2 span {
    display: block;
    font-weight: 700;
}

.pivotantes-header > p {
    color: #747e8d;
    font-size: 14px;
    line-height: 1.8;
}


/* HERO */

.pivotante-hero {
    position: relative;
    height: 570px;
    overflow: hidden;
}

.pivotante-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pivotante-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(5,22,49,0.88),
        rgba(5,22,49,0.25)
    );
}

.pivotante-hero-texto {
    position: absolute;
    left: 55px;
    bottom: 50px;
    color: white;
}

.pivotante-hero-texto > span {
    display: block;
    color: var(--azul-claro);
    font-size: 9px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.pivotante-hero-texto h3 {
    font-size: 40px;
    line-height: 1.08;
    font-weight: 300;
}

.pivotante-hero-texto h3 strong {
    display: block;
    font-weight: 700;
}


/* MEDIDA */

.pivotante-medida {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 35px;
    align-items: center;
    padding: 35px 40px;
    background: var(--azul-escuro);
    color: white;
    margin-top: 25px;
}

.pivotante-medida-numero {
    font-size: 45px;
    font-weight: 700;
    color: var(--azul-claro);
}

.pivotante-medida-numero span {
    font-size: 12px;
}

.pivotante-medida > div:last-child > span {
    display: block;
    font-size: 8px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
}

.pivotante-medida h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.pivotante-medida p {
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    line-height: 1.6;
}


/* MODELO */

.pivotante-modelo {
    display: grid;
    grid-template-columns: 58% 42%;
    margin-top: 100px;
    background: white;
    min-height: 480px;
}

.pivotante-galeria {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    padding: 7px;
    height: 480px;
    background: #e9edf2;
}

.pivotante-galeria > div {
    overflow: hidden;
}

.pivotante-galeria img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.pivotante-galeria img:hover {
    transform: scale(1.04);
}

.pivotante-content {
    padding: 55px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pivotante-content h3 {
    color: var(--azul-escuro);
    font-size: 37px;
    line-height: 1.08;
    font-weight: 300;
    margin-bottom: 20px;
}

.pivotante-content h3 strong {
    display: block;
    font-weight: 700;
}

.pivotante-content > p {
    color: #747e8c;
    font-size: 13px;
    line-height: 1.8;
}


/* OPÇÕES */

.pivotante-opcoes {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #dce1e7;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
}

.pivotante-opcoes > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pivotante-opcoes i {
    width: 27px;
    height: 27px;
    background: var(--azul-escuro);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8px;
}

.pivotante-opcoes span {
    color: #596474;
    font-size: 11px;
}


/* RIPADO */

.pivotante-ripado {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 42% 58%;
    background: var(--azul-escuro);
}

.pivotante-ripado-texto {
    padding: 55px 45px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pivotante-ripado-texto > span {
    color: var(--azul-claro);
    font-size: 9px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.pivotante-ripado-texto h3 {
    font-size: 36px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 20px;
}

.pivotante-ripado-texto h3 strong {
    display: block;
    font-weight: 700;
}

.pivotante-ripado-texto > p {
    color: rgba(255,255,255,0.65);
    font-size: 12px;
    line-height: 1.75;
}

.pivotante-ripado-info {
    margin-top: 27px;
    padding: 20px;
    background: rgba(255,255,255,0.07);
    display: flex;
    gap: 15px;
    align-items: center;
}

.pivotante-ripado-info i {
    color: var(--azul-claro);
}

.pivotante-ripado-info span {
    display: block;
    font-size: 8px;
    color: var(--azul-claro);
    margin-bottom: 5px;
}

.pivotante-ripado-info strong {
    font-size: 11px;
}

.pivotante-ripado-imagens {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
    padding: 7px;
    min-height: 480px;
}

.pivotante-ripado-imagens img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* CORES */

.pivotante-cores {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pivotante-cores > div:first-child > span {
    color: var(--azul);
    font-size: 9px;
    letter-spacing: 2px;
}

.pivotante-cores h3 {
    margin-top: 8px;
    color: var(--azul-escuro);
    font-size: 32px;
    font-weight: 300;
}

.pivotante-cores h3 strong {
    display: block;
    font-weight: 700;
}

.pivotante-cores p {
    margin-top: 15px;
    color: #747e8c;
    font-size: 12px;
    line-height: 1.7;
}

.pivotante-aviso {
    display: flex;
    gap: 15px;
    padding: 25px;
    background: white;
}

.pivotante-aviso i {
    color: var(--azul);
}


/* RESPONSIVO */

@media (max-width: 850px) {

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

    .pivotante-modelo,
    .pivotante-ripado {
        grid-template-columns: 1fr;
    }

    .pivotante-cores {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .pivotantes {
        padding: 90px 0;
    }

    .pivotante-hero {
        height: 430px;
    }

    .pivotante-hero-texto {
        left: 25px;
        bottom: 30px;
        right: 25px;
    }

    .pivotante-medida {
        grid-template-columns: 1fr;
    }

    .pivotante-galeria {
        grid-template-columns: 1fr;
        height: auto;
    }

    .pivotante-galeria > div {
        height: 280px;
    }

    .pivotante-content {
        padding: 40px 27px;
    }

    .pivotante-opcoes {
        grid-template-columns: 1fr;
    }

    .pivotante-ripado-imagens {
        grid-template-columns: 1fr;
    }

    .pivotante-ripado-imagens img {
        height: 300px;
    }

}
/* =========================================================
   PORTA PIVOTANTE RIPADA - VÍDEO
========================================================= */

.pivotante-ripado-video {
    min-height: 480px;
    overflow: hidden;
    background: #000;
}

.pivotante-ripado-video video {
    width: 100%;
    height: 100%;
    min-height: 480px;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* CELULAR */

@media (max-width: 600px) {

    .pivotante-ripado-video {
        min-height: 380px;
    }

    .pivotante-ripado-video video {
        min-height: 380px;
    }

}
/* =========================================================
   AJUSTE FINAL - PIVOTANTE RIPADA
   TEXTO ESQUERDA / VÍDEO VERTICAL DIREITA
========================================================= */

.pivotante-ripado {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 600px;

    background: var(--azul-escuro);
    overflow: hidden;
}


/* TEXTO - LADO ESQUERDO */

.pivotante-ripado-texto {
    padding: 60px 55px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    height: 100%;
    box-sizing: border-box;

    color: white;
}


/* TÍTULO PEQUENO */

.pivotante-ripado-texto > span {
    display: block;

    color: var(--azul-claro);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 14px;
}


/* TÍTULO PRINCIPAL */

.pivotante-ripado-texto h3 {
    margin: 0 0 22px 0;

    font-size: 38px;
    line-height: 1.08;

    font-weight: 300;
}

.pivotante-ripado-texto h3 strong {
    display: block;
    font-weight: 700;
}


/* DESCRIÇÃO */

.pivotante-ripado-texto > p {
    max-width: 390px;

    margin: 0;

    color: rgba(255,255,255,0.68);

    font-size: 13px;
    line-height: 1.8;
}


/* CAIXA CORES PERSONALIZADAS */

.pivotante-ripado-info {
    width: 100%;
    max-width: 390px;

    margin-top: 30px;
    padding: 20px;

    box-sizing: border-box;

    display: flex;
    align-items: center;
    gap: 15px;

    background: rgba(255,255,255,0.07);
}


/* =========================================================
   LADO DIREITO - VÍDEO
========================================================= */

.pivotante-ripado-video {
    width: 100%;
    height: 600px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px 35px;

    box-sizing: border-box;

    background: #08182e;
    overflow: hidden;
}


/* VÍDEO VERTICAL */

.pivotante-ripado-video video {
    width: auto;
    height: 100%;

    max-width: 100%;

    display: block;

    object-fit: contain;

    margin: 0 auto;

    background: transparent;

    border-radius: 2px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .pivotante-ripado {
        grid-template-columns: 1fr;
    }

    .pivotante-ripado-texto {
        padding: 50px 40px;
    }

    .pivotante-ripado-video {
        height: 550px;
    }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 600px) {

    .pivotante-ripado {
        min-height: auto;
    }

    .pivotante-ripado-texto {
        padding: 45px 28px;
    }

    .pivotante-ripado-texto h3 {
        font-size: 31px;
    }

    .pivotante-ripado-video {
        height: 500px;
        padding: 20px;
    }

}
/* =========================================================
   BLOCO EXCLUSIVO - PIVOTANTE RIPADA
========================================================= */

.ripado-video-bloco {
    width: 100% !important;

    display: grid !important;
    grid-template-columns: 45% 55% !important;

    min-height: 620px !important;

    margin-top: 30px !important;

    background: #071a38 !important;

    overflow: hidden !important;
}


/* =========================
   TEXTO ESQUERDA
========================= */

.ripado-video-texto {
    width: 100% !important;
    height: 100% !important;

    padding: 60px 55px !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;

    box-sizing: border-box !important;

    color: white !important;
}


.ripado-video-tag {
    color: #2d74c8 !important;

    font-size: 9px !important;
    font-weight: 700 !important;

    letter-spacing: 2px !important;

    margin-bottom: 14px !important;
}


.ripado-video-texto h3 {
    margin: 0 0 20px 0 !important;

    color: white !important;

    font-size: 38px !important;
    line-height: 1.08 !important;

    font-weight: 300 !important;
}


.ripado-video-texto h3 strong {
    display: block !important;

    font-weight: 700 !important;
}


.ripado-video-texto > p {
    max-width: 390px !important;

    margin: 0 !important;

    color: rgba(255,255,255,0.68) !important;

    font-size: 13px !important;
    line-height: 1.8 !important;
}


/* CAIXA DE INFORMAÇÃO */

.ripado-video-info {
    width: 100% !important;
    max-width: 390px !important;

    margin-top: 30px !important;

    padding: 20px !important;

    display: flex !important;
    align-items: center !important;

    gap: 15px !important;

    background: rgba(255,255,255,0.08) !important;

    box-sizing: border-box !important;
}


.ripado-video-info > i {
    color: #2d74c8 !important;

    font-size: 18px !important;
}


.ripado-video-info span {
    display: block !important;

    color: #2d74c8 !important;

    font-size: 8px !important;

    letter-spacing: 1.5px !important;

    margin-bottom: 5px !important;
}


.ripado-video-info strong {
    color: white !important;

    font-size: 11px !important;

    line-height: 1.4 !important;
}


/* =========================
   ÁREA DO VÍDEO
========================= */

.ripado-video-area {
    width: 100% !important;
    height: 620px !important;

    display: flex !important;
    justify-content: center !important;
    align-items: center !important;

    padding: 25px !important;

    box-sizing: border-box !important;

    background: #0b1626 !important;

    overflow: hidden !important;
}


/* VÍDEO */

.ripado-video-area video {
    width: auto !important;
    height: 100% !important;

    max-width: 100% !important;
    max-height: 100% !important;

    display: block !important;

    object-fit: contain !important;

    margin: 0 auto !important;

    position: static !important;

    transform: none !important;

    background: transparent !important;
}


/* =========================
   TABLET
========================= */

@media (max-width: 850px) {

    .ripado-video-bloco {
        grid-template-columns: 1fr !important;
    }

    .ripado-video-area {
        height: 560px !important;
    }

}


/* =========================
   CELULAR
========================= */

@media (max-width: 600px) {

    .ripado-video-texto {
        padding: 45px 28px !important;
    }

    .ripado-video-texto h3 {
        font-size: 31px !important;
    }

    .ripado-video-area {
        height: 500px !important;
        padding: 18px !important;
    }

}
/* =========================================================
   PARTE 8
   JANELAS
========================================================= */

.janelas {
    padding: 130px 0;
    background: #ffffff;
}


/* CABEÇALHO */

.janelas-header {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 80px;
    align-items: end;
    margin-bottom: 65px;
}

.janelas-header h2 {
    color: var(--azul-escuro);
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.03;
    letter-spacing: -2.5px;
    font-weight: 300;
}

.janelas-header h2 span {
    display: block;
    font-weight: 700;
}

.janelas-header > p {
    color: #707a89;
    font-size: 14px;
    line-height: 1.8;
}


/* HERO */

.janelas-hero {
    position: relative;
    height: 570px;
    overflow: hidden;
}

.janelas-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.janelas-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(5,22,49,0.88),
        rgba(5,22,49,0.15)
    );
}

.janelas-hero-texto {
    position: absolute;
    left: 55px;
    bottom: 50px;
    color: white;
}

.janelas-hero-texto > span {
    color: var(--azul-claro);
    font-size: 9px;
    letter-spacing: 2px;
}

.janelas-hero-texto h3 {
    margin-top: 10px;
    font-size: 40px;
    font-weight: 300;
    line-height: 1.08;
}

.janelas-hero-texto h3 strong {
    display: block;
    font-weight: 700;
}


/* LINHAS */

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

.janela-linha-card {
    padding: 38px;
    background: #f3f5f8;
    border-top: 3px solid var(--azul);
}

.janela-linha-card > span {
    color: var(--azul);
    font-size: 9px;
}

.janela-linha-card h3 {
    color: var(--azul-escuro);
    font-size: 27px;
    margin: 10px 0;
}

.janela-linha-card p {
    color: #737d8c;
    font-size: 12px;
    line-height: 1.7;
}

.janela-linha-gold {
    background: var(--azul-escuro);
}

.janela-linha-gold h3 {
    color: white;
}

.janela-linha-gold p {
    color: rgba(255,255,255,0.62);
}


/* MODELOS */

.janelas-modelos {
    margin-top: 100px;
}

.janelas-modelos-titulo span {
    color: var(--azul);
    font-size: 9px;
    letter-spacing: 2px;
}

.janelas-modelos-titulo h3 {
    margin-top: 10px;
    color: var(--azul-escuro);
    font-size: 37px;
    font-weight: 300;
}

.janelas-modelos-titulo h3 strong {
    font-weight: 700;
}

.janelas-modelos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.janela-modelo-card {
    padding: 30px;
    min-height: 210px;
    background: #f3f5f8;
}

.janela-modelo-icon {
    width: 45px;
    height: 45px;
    background: white;
    color: var(--azul);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.janela-modelo-card h4 {
    color: var(--azul-escuro);
    font-size: 15px;
    margin-bottom: 8px;
}

.janela-modelo-card p {
    color: #7b8492;
    font-size: 11px;
    line-height: 1.6;
}


/* BLOCOS COM 3 FOTOS */

.janela-bloco {
    display: grid;
    grid-template-columns: 58% 42%;
    min-height: 480px;
    margin-top: 90px;
    background: #f3f5f8;
}

.janela-bloco-invertido {
    grid-template-columns: 42% 58%;
}

.janela-bloco-invertido .janela-galeria {
    order: 2;
}

.janela-bloco-invertido .janela-bloco-texto {
    order: 1;
}

.janela-galeria {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 7px;
    padding: 7px;
    height: 480px;
    background: #e9edf2;
}

.janela-galeria > div {
    overflow: hidden;
}

.janela-galeria img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.janela-galeria img:hover {
    transform: scale(1.04);
}

.janela-bloco-texto {
    padding: 55px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.janela-bloco-texto > span {
    color: var(--azul);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.janela-bloco-texto h3 {
    margin: 10px 0 20px;
    color: var(--azul-escuro);
    font-size: 37px;
    line-height: 1.08;
    font-weight: 300;
}

.janela-bloco-texto h3 strong {
    display: block;
    font-weight: 700;
}

.janela-bloco-texto > p {
    color: #747e8c;
    font-size: 13px;
    line-height: 1.8;
}


/* LISTA */

.janela-lista {
    margin-top: 28px;
    padding-top: 25px;
    border-top: 1px solid #dce1e7;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.janela-lista > div {
    display: flex;
    gap: 9px;
    align-items: center;
}

.janela-lista i {
    width: 27px;
    height: 27px;
    background: var(--azul-escuro);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8px;
}

.janela-lista span {
    color: #596474;
    font-size: 11px;
}


/* MINI OPÇÕES */

.janela-mini-opcoes {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.janela-mini-opcoes > div {
    padding: 20px;
    background: white;
}

.janela-mini-opcoes strong {
    display: block;
    color: var(--azul-escuro);
    font-size: 12px;
    margin-bottom: 5px;
}

.janela-mini-opcoes span {
    color: #818a97;
    font-size: 10px;
}


/* MAXIM-AR */

.maximar-destaque {
    margin-top: 100px;
    display: grid;
    grid-template-columns: 55% 45%;
    background: var(--azul-escuro);
}

.maximar-imagem {
    min-height: 520px;
}

.maximar-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.maximar-texto {
    padding: 55px 45px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.maximar-texto > span {
    color: var(--azul-claro);
    font-size: 9px;
    letter-spacing: 2px;
}

.maximar-texto h3 {
    margin: 10px 0 20px;
    font-size: 36px;
    font-weight: 300;
}

.maximar-texto h3 strong {
    display: block;
    font-weight: 700;
}

.maximar-texto > p {
    color: rgba(255,255,255,0.65);
    font-size: 12px;
    line-height: 1.75;
}

.maximar-partes {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.maximar-partes > div {
    padding: 20px;
    background: rgba(255,255,255,0.07);
}

.maximar-partes span {
    color: var(--azul-claro);
    font-size: 8px;
}

.maximar-partes strong {
    display: block;
    margin: 6px 0;
    font-size: 13px;
}

.maximar-partes p {
    color: rgba(255,255,255,0.55);
    font-size: 10px;
    line-height: 1.5;
}


/* PELÍCULAS */

.janela-peliculas {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.janela-peliculas > div:first-child > span {
    color: var(--azul);
    font-size: 9px;
    letter-spacing: 2px;
}

.janela-peliculas h3 {
    margin-top: 8px;
    color: var(--azul-escuro);
    font-size: 32px;
    font-weight: 300;
}

.janela-peliculas h3 strong {
    font-weight: 700;
}

.peliculas-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
}

.peliculas-grid > div {
    min-height: 110px;
    background: #f3f5f8;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
}

.peliculas-grid i {
    color: var(--azul);
    font-size: 22px;
}

.peliculas-grid strong {
    color: var(--azul-escuro);
    font-size: 12px;
}


/* CORES */

.janelas-cores {
    margin-top: 100px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.janelas-cores-texto > span {
    color: var(--azul);
    font-size: 9px;
    letter-spacing: 2px;
}

.janelas-cores-texto h3 {
    margin: 10px 0 20px;
    color: var(--azul-escuro);
    font-size: 37px;
    font-weight: 300;
}

.janelas-cores-texto h3 strong {
    display: block;
    font-weight: 700;
}

.janelas-cores-texto p {
    color: #747e8c;
    font-size: 12px;
    line-height: 1.75;
    margin-bottom: 10px;
}

.janelas-cores-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
}

.janela-cor {
    height: 140px;
    background: #f3f5f8;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.janela-cor span {
    height: 70px;
}

.janela-cor strong {
    color: var(--azul-escuro);
    font-size: 11px;
}

.janela-cor.branco span {
    background: #fff;
    border: 1px solid #ddd;
}

.janela-cor.preto span {
    background: #17191c;
}

.janela-cor.cinza span {
    background: #777a80;
}

.janela-cor.anodizado span {
    background: linear-gradient(
        90deg,
        #777,
        #bbb,
        #777
    );
}


/* AVISO */

.janelas-aviso {
    margin-top: 45px;
    padding: 28px 30px;
    background: #f3f5f8;
    display: flex;
    gap: 17px;
    align-items: flex-start;
}

.janelas-aviso i {
    color: var(--azul);
    margin-top: 3px;
}

.janelas-aviso span {
    display: block;
    color: var(--azul);
    font-size: 8px;
    letter-spacing: 1.7px;
    margin-bottom: 6px;
}

.janelas-aviso p {
    color: #747e8c;
    font-size: 11px;
    line-height: 1.65;
}


/* RESPONSIVO */

@media (max-width: 850px) {

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

    .janelas-modelos-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .janela-bloco,
    .janela-bloco-invertido,
    .maximar-destaque,
    .janelas-cores {
        grid-template-columns: 1fr;
    }

    .janela-bloco-invertido .janela-galeria,
    .janela-bloco-invertido .janela-bloco-texto {
        order: initial;
    }

    .janela-peliculas {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .janelas {
        padding: 90px 0;
    }

    .janelas-hero {
        height: 430px;
    }

    .janelas-linhas {
        grid-template-columns: 1fr;
    }

    .janelas-modelos-grid {
        grid-template-columns: 1fr;
    }

    .janela-galeria {
        grid-template-columns: 1fr;
        height: auto;
    }

    .janela-galeria > div {
        height: 290px;
    }

    .janela-bloco-texto {
        padding: 40px 27px;
    }

    .janela-lista {
        grid-template-columns: 1fr;
    }

    .maximar-imagem {
        min-height: 390px;
    }

    .maximar-texto {
        padding: 40px 27px;
    }

    .maximar-partes {
        grid-template-columns: 1fr;
    }

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

    .janelas-cores-grid {
        grid-template-columns: 1fr 1fr;
    }
}
/* =========================================================
   AJUSTE FOTO - JANELA MAXIM-AR
========================================================= */

.maximar-destaque {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 500px;
}


/* ÁREA ESQUERDA */

.maximar-imagem {
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 35px;

    box-sizing: border-box;

    background: #f3f5f8;
}


/* FOTO */

.maximar-imagem img {
    width: auto !important;
    height: auto !important;

    max-width: 85% !important;
    max-height: 430px !important;

    object-fit: contain !important;
    object-position: center !important;

    display: block;
    margin: auto;
}


/* CELULAR */

@media (max-width: 850px) {

    .maximar-destaque {
        grid-template-columns: 1fr;
    }

    .maximar-imagem {
        min-height: 430px;
    }

    .maximar-imagem img {
        max-width: 90% !important;
        max-height: 380px !important;
    }

}
/* =========================================================
   PARTE 9
   GALERIA GERAL + CONTATO + RODAPÉ
========================================================= */


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

.projetos-geral {
    padding: 130px 0;
    background: #f4f6f8;
}

.projetos-geral-header {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 80px;
    align-items: end;
    margin-bottom: 60px;
}

.projetos-geral-header h2 {
    color: var(--azul-escuro);
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.03;
    letter-spacing: -2.5px;
    font-weight: 300;
}

.projetos-geral-header h2 span {
    display: block;
    font-weight: 700;
}

.projetos-geral-header > p {
    color: #707a89;
    font-size: 14px;
    line-height: 1.8;
}


/* MOSAICO */

.projetos-mosaico {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 270px 270px;
    gap: 14px;
}

.projeto-foto {
    position: relative;
    overflow: hidden;
}

.projeto-foto-grande {
    grid-row: 1 / 3;
}

.projeto-foto-horizontal {
    grid-column: 2 / 4;
}

.projeto-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.projeto-foto:hover img {
    transform: scale(1.05);
}

.projeto-foto-overlay {
    position: absolute;
    inset: 0;

    padding: 25px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background:
        linear-gradient(
            to top,
            rgba(4,18,42,0.82),
            transparent 60%
        );

    color: white;
}

.projeto-foto-overlay span {
    font-size: 8px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 5px;
}

.projeto-foto-overlay strong {
    font-size: 14px;
}


/* =========================================================
   CTA ORÇAMENTO
========================================================= */

.orcamento-cta {
    position: relative;
    min-height: 430px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.orcamento-cta-bg {
    position: absolute;
    inset: 0;

    background-image:
        url("imagens/orcamento-fundo.jpg");

    background-size: cover;
    background-position: center;
}

.orcamento-cta-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5,22,49,0.95),
            rgba(5,22,49,0.65)
        );
}

.orcamento-cta-container {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.orcamento-cta-texto {
    color: white;
}

.orcamento-cta-texto > span {
    color: var(--azul-claro);
    font-size: 9px;
    letter-spacing: 2px;
    font-weight: 700;
}

.orcamento-cta-texto h2 {
    margin: 12px 0 20px;

    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;
    font-weight: 300;
}

.orcamento-cta-texto h2 strong {
    display: block;
    font-weight: 700;
}

.orcamento-cta-texto p {
    max-width: 560px;

    color: rgba(255,255,255,0.65);

    font-size: 13px;
    line-height: 1.8;
}


/* BOTÃO GRANDE */

.orcamento-whatsapp {
    min-width: 330px;

    padding: 25px 28px;

    display: flex;
    align-items: center;
    gap: 18px;

    background: white;

    color: var(--azul-escuro);

    transition: 0.3s ease;
}

.orcamento-whatsapp:hover {
    transform: translateY(-5px);
}

.orcamento-whatsapp > i:first-child {
    font-size: 29px;
}

.orcamento-whatsapp div {
    flex: 1;
}

.orcamento-whatsapp span {
    display: block;

    color: var(--azul);

    font-size: 8px;
    letter-spacing: 1.5px;

    margin-bottom: 5px;
}

.orcamento-whatsapp strong {
    font-size: 14px;
}


/* =========================================================
   CONTATO
========================================================= */

.contato {
    padding: 130px 0;
    background: white;
}

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

.contato-principal h2 {
    color: var(--azul-escuro);

    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.05;

    font-weight: 300;

    margin-bottom: 25px;
}

.contato-principal h2 span {
    display: block;
    font-weight: 700;
}

.contato-principal > p {
    max-width: 560px;

    color: #747e8c;

    font-size: 13px;
    line-height: 1.8;
}


/* LISTA */

.contato-lista {
    margin-top: 45px;

    display: flex;
    flex-direction: column;
}

.contato-item {
    padding: 23px 0;

    border-top: 1px solid #e0e4e9;

    display: flex;
    align-items: flex-start;

    gap: 17px;
}

.contato-item:last-child {
    border-bottom: 1px solid #e0e4e9;
}

.contato-item-icon {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    background: #edf3fa;

    color: var(--azul);

    display: flex;
    align-items: center;
    justify-content: center;
}

.contato-item span {
    display: block;

    color: #969eaa;

    font-size: 8px;
    letter-spacing: 1.6px;

    margin-bottom: 5px;
}

.contato-item strong {
    color: var(--azul-escuro);
    font-size: 14px;
}

.contato-item p {
    margin-top: 5px;

    color: #78818e;

    font-size: 10px;
    line-height: 1.55;
}


/* CARD */

.contato-card {
    background: var(--azul-escuro);

    color: white;

    padding: 50px 45px;
}

.contato-card-tag {
    display: block;

    color: var(--azul-claro);

    font-size: 9px;
    letter-spacing: 2px;

    margin-bottom: 12px;
}

.contato-card h3 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 300;
}

.contato-checklist {
    margin-top: 35px;
}

.contato-checklist > div {
    display: grid;
    grid-template-columns: 35px 1fr;

    gap: 12px;

    padding: 15px 0;

    border-top:
        1px solid rgba(255,255,255,0.1);
}

.contato-checklist span {
    color: var(--azul-claro);

    font-size: 9px;
}

.contato-checklist p {
    color: rgba(255,255,255,0.7);

    font-size: 11px;
}

.btn-contato-final {
    margin-top: 35px;

    min-height: 55px;

    padding: 0 23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: var(--azul);

    color: white;

    font-size: 12px;
    font-weight: 600;
}


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

.footer {
    background: #06162d;
    color: white;
}

.footer-topo {
    padding: 75px 0;

    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;

    gap: 60px;
}

.footer-logo {
    width: auto;
    max-width: 180px;
    max-height: 80px;

    object-fit: contain;

    margin-bottom: 20px;
}

.footer-marca p {
    max-width: 280px;

    color: rgba(255,255,255,0.5);

    font-size: 11px;
    line-height: 1.7;
}

.footer-coluna {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-coluna > span {
    color: var(--azul-claro);

    font-size: 8px;
    letter-spacing: 1.8px;

    margin-bottom: 10px;
}

.footer-coluna a,
.footer-coluna p {
    color: rgba(255,255,255,0.58);

    font-size: 11px;
    line-height: 1.6;

    transition: 0.3s;
}

.footer-coluna a:hover {
    color: white;
}


/* BASE FOOTER */

.footer-bottom {
    border-top:
        1px solid rgba(255,255,255,0.08);
}

.footer-bottom-container {
    min-height: 75px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p,
.footer-bottom a {
    color: rgba(255,255,255,0.4);

    font-size: 9px;
}

.footer-bottom a {
    display: flex;
    align-items: center;
    gap: 8px;
}


/* =========================================================
   WHATSAPP FLUTUANTE
========================================================= */

.whatsapp-flutuante {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 1000;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: #25D366;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 27px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.25);

    transition: 0.3s ease;
}

.whatsapp-flutuante:hover {
    transform: translateY(-5px) scale(1.03);
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 900px) {

    .projetos-geral-header,
    .contato-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .orcamento-cta-container {
        grid-template-columns: 1fr;
    }

    .orcamento-whatsapp {
        width: fit-content;
    }

    .footer-topo {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 650px) {

    .projetos-geral {
        padding: 90px 0;
    }

    .projetos-mosaico {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .projeto-foto,
    .projeto-foto-grande,
    .projeto-foto-horizontal {
        grid-column: auto;
        grid-row: auto;

        height: 310px;
    }

    .orcamento-cta {
        min-height: 550px;
    }

    .orcamento-whatsapp {
        width: 100%;
        min-width: 0;
    }

    .contato {
        padding: 90px 0;
    }

    .contato-card {
        padding: 40px 27px;
    }

    .footer-topo {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-container {
        padding: 25px 0;

        flex-direction: column;
        align-items: flex-start;

        gap: 15px;
    }

    .whatsapp-flutuante {
        width: 54px;
        height: 54px;

        right: 18px;
        bottom: 18px;
    }

}
/* =========================================================
   MENU SUPERIOR - CORREÇÃO
========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    z-index: 9999;

    transition:
        background 0.35s ease,
        box-shadow 0.35s ease,
        backdrop-filter 0.35s ease;
}


/* MENU QUANDO A PÁGINA É ROLADA */

.header.header-scroll {
    background: rgba(5, 22, 49, 0.94) !important;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}


/* LINKS */

.header .nav a {
    color: #ffffff !important;
    transition: 0.3s ease;
}


/* EFEITO AO PASSAR O MOUSE */

.header .nav a:hover {
    color: #4c9be8 !important;
}


/* LINHA EMBAIXO DO LINK */

.header .nav a::after {
    background: #4c9be8 !important;
}
.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    transition:
        background 0.35s ease,
        box-shadow 0.35s ease,
        backdrop-filter 0.35s ease;
}


.header.header-scroll {
    background: rgba(5, 22, 49, 0.94) !important;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}


.header .nav a {
    color: #ffffff !important;
}


.header .nav a:hover {
    color: #4c9be8 !important;
}
/* =========================================================
   EFEITOS VISUAIS DO SCRIPT
========================================================= */

/* ENTRADA */

.animar {
    opacity: 0;
    transform: translateY(55px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.animar.aparecer {
    opacity: 1;
    transform: translateY(0);
}


/* ITEM ATIVO DO MENU */

.nav-menu a.ativo {
    color: #ffffff !important;
}

.nav-menu a.ativo::after {
    width: 100% !important;
}


/* BOTÃO WHATSAPP */

.whatsapp-flutuante {
    opacity: 0;
    transform: translateY(25px) scale(0.9);
}

.whatsapp-flutuante.whatsapp-visivel {
    opacity: 1;
    transform: translateY(0) scale(1);
}


/* MENU MOBILE */

.menu-toggle {
    transition: transform 0.3s ease;
}

.menu-toggle.ativo {
    transform: rotate(90deg);
}
/* =========================================================
   CORREÇÃO DOS LINKS DO MENU
========================================================= */

section[id] {
    scroll-margin-top: 100px;
}
/* =========================================================
   AJUSTE SOMENTE DA PORTA DE CORRER 3 FOLHAS
========================================================= */

.modelo-imagem:has(.porta-3-folhas-img) {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 30px !important;

    box-sizing: border-box !important;
    overflow: hidden !important;
}


/* FOTO DA PORTA */

.porta-3-folhas-img {
    width: auto !important;
    height: auto !important;

    max-width: 72% !important;
    max-height: 420px !important;

    object-fit: contain !important;

    display: block !important;
    margin: auto !important;

    transform: none !important;
}


/* MANTÉM A ETIQUETA 3 FOLHAS NO LUGAR */

.modelo-imagem:has(.porta-3-folhas-img) .modelo-label {
    position: absolute !important;
}
/* =========================================================
   AJUSTE SOMENTE DA PORTA DE CORRER 4 FOLHAS
========================================================= */

.modelo-imagem:has(.porta-4-folhas-img) {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 30px !important;

    box-sizing: border-box !important;
    overflow: hidden !important;
}


/* FOTO */

.porta-4-folhas-img {
    width: auto !important;
    height: auto !important;

    max-width: 95% !important;
    max-height: 460px !important;

    object-fit: contain !important;

    display: block !important;
    margin: auto !important;

    transform: none !important;
}


/* MANTÉM A ETIQUETA "4 FOLHAS" */

.modelo-imagem:has(.porta-4-folhas-img) .modelo-label {
    position: absolute !important;
}
/* =========================================================
   PORTA DE CORRER COM VENEZIANA
========================================================= */

.modelo-imagem:has(.porta-correr-veneziana-img) {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 25px !important;

    box-sizing: border-box !important;
    overflow: hidden !important;
}


/* IMAGEM */

.porta-correr-veneziana-img {
    width: auto !important;
    height: auto !important;

    max-width: 82% !important;
    max-height: 440px !important;

    object-fit: contain !important;
    object-position: center !important;

    display: block !important;
    margin: auto !important;

    transform: none !important;
}


/* MANTÉM A ETIQUETA */

.modelo-imagem:has(.porta-correr-veneziana-img) .modelo-label {
    position: absolute !important;
}
/* =========================================================
   PORTA DE CORRER COM VENEZIANA - CENTRALIZAÇÃO
========================================================= */

.modelo-imagem:has(.porta-correr-veneziana-img) {
    position: relative !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 480px !important;
    height: 480px !important;

    padding: 30px !important;

    box-sizing: border-box !important;
    overflow: hidden !important;
}


/* IMAGEM */

.modelo-imagem .porta-correr-veneziana-img {
    position: static !important;

    width: auto !important;
    height: auto !important;

    max-width: 82% !important;
    max-height: 400px !important;

    object-fit: contain !important;
    object-position: center !important;

    display: block !important;

    margin: auto !important;

    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;

    transform: none !important;
}


/* ETIQUETA "VENEZIANA" */

.modelo-imagem:has(.porta-correr-veneziana-img) .modelo-label {
    position: absolute !important;

    left: 20px !important;
    bottom: 20px !important;

    top: auto !important;
    right: auto !important;
}
/* =========================================================
   PORTA DE CORRER COM VENEZIANA - AJUSTE CORRETO
========================================================= */

.veneziana-imagem {
    min-height: 600px !important;
    height: 600px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 35px !important;

    box-sizing: border-box !important;

    background: #f2f4f7 !important;

    overflow: hidden !important;
}


/* FOTO */

.veneziana-imagem .porta-correr-veneziana-img {
    width: auto !important;
    height: auto !important;

    max-width: 82% !important;
    max-height: 520px !important;

    object-fit: contain !important;
    object-position: center !important;

    display: block !important;

    margin: auto !important;

    position: static !important;

    transform: none !important;
}
/* =========================================================
   AJUSTE - PORTA CORRER 01
========================================================= */

/* CONTAINER DA FOTO */
.modelo-imagem:has(.porta-correr-01-img) {
    position: relative !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    height: 500px !important;
    min-height: 500px !important;

    padding: 30px !important;

    box-sizing: border-box !important;
    overflow: hidden !important;
}


/* FOTO */
.modelo-imagem .porta-correr-01-img {
    position: static !important;

    width: auto !important;
    height: auto !important;

    max-width: 80% !important;
    max-height: 430px !important;

    object-fit: contain !important;
    object-position: center !important;

    display: block !important;
    margin: auto !important;

    top: auto !important;
    left: auto !important;

    transform: none !important;
} 
/* =========================================================
   PORTA CORRER 01 - GALERIA
   MENOR E CENTRALIZADA
========================================================= */

.galeria-item.galeria-grande:has(.porta-correr-01-img) {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    position: relative !important;
    overflow: hidden !important;

    background: #f3f5f8 !important;
}


/* FOTO */

.galeria-item.galeria-grande .porta-correr-01-img {
    width: auto !important;
    height: auto !important;

    max-width: 88% !important;
    max-height: 95% !important;

    object-fit: contain !important;
    object-position: center !important;

    position: static !important;

    display: block !important;
    margin: auto !important;

    transform: none !important;
}


/* MANTÉM O TEXTO SOBRE A FOTO */

.galeria-item.galeria-grande:has(.porta-correr-01-img)
.galeria-overlay {
    position: absolute !important;
    inset: 0 !important;
}
/* =========================================================
   PORTA CORRER 01
   MOLDURA VERTICAL MENOR E CENTRALIZADA
========================================================= */

.galeria-item.galeria-grande:has(.porta-correr-01-img) {
    position: relative !important;

    /* DIMINUI A MOLDURA */
    width: 70% !important;
    max-width: 420px !important;

    /* FORMATO VERTICAL */
    aspect-ratio: 3 / 4 !important;
    height: auto !important;

    /* CENTRALIZA A MOLDURA */
    margin-left: auto !important;
    margin-right: auto !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;
    background: #f3f5f8 !important;
}


/* IMAGEM DENTRO DA MOLDURA */

.galeria-item.galeria-grande .porta-correr-01-img {
    width: 90% !important;
    height: 90% !important;

    object-fit: contain !important;
    object-position: center !important;

    display: block !important;
    margin: auto !important;

    position: static !important;
    transform: none !important;
}


/* TEXTO DA MOLDURA */

.galeria-item.galeria-grande:has(.porta-correr-01-img)
.galeria-overlay {
    position: absolute !important;
    inset: 0 !important;
}
/* =========================================================
   MINI GALERIA - MODELO PORTA 01, 02, 03, 04
   FUNDO AZUL MARINHO + MESMO EIXO
========================================================= */

.mini-galeria-portas {
    margin-top: 90px !important;

    background: #061a33 !important;

    padding: 50px !important;

    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;

    gap: 18px !important;

    align-items: center !important;

    height: auto !important;
}


/* TODAS AS MOLDURAS IGUAIS */

.mini-galeria-portas .mini-galeria-item {
    width: 100% !important;
    height: 430px !important;

    margin: 0 !important;

    overflow: hidden !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: #0b2447 !important;
}


/* REMOVE A DIFERENÇA DA SEGUNDA FOTO */

.mini-galeria-portas .mini-alto {
    margin: 0 !important;
}


/* TODAS AS FOTOS */

.mini-galeria-portas .mini-galeria-item img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center !important;

    display: block !important;

    transform: none !important;
}


/* EFEITO AO PASSAR O MOUSE */

.mini-galeria-portas .mini-galeria-item:hover img {
    transform: scale(1.04) !important;
}


/* TABLET */

@media (max-width: 900px) {

    .mini-galeria-portas {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 35px !important;
    }

}


/* CELULAR */

@media (max-width: 550px) {

    .mini-galeria-portas {
        grid-template-columns: 1fr !important;
        padding: 25px !important;
    }

    .mini-galeria-portas .mini-galeria-item {
        height: 380px !important;
    }

}
/* =========================================================
   PERSIANA DESTAQUE - AJUSTE DE PROPORÇÃO
========================================================= */

.persiana-destaque {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;
    box-sizing: border-box !important;
}


/* FOTO */

.persiana-destaque .persiana-destaque-img {
    width: auto !important;
    height: auto !important;

    max-width: 30% !important;
    max-height: 100px !important;

    object-fit: contain !important;
    object-position: center !important;

    display: block !important;
    margin: auto !important;

    position: static !important;
    transform: none !important;
}
/* =========================================================
   AJUSTE - DESTAQUE PORTAS DE GIRO
========================================================= */

.giro-hero {
    height: 520px !important;
    max-width: 1180px !important;

    margin-left: auto !important;
    margin-right: auto !important;

    overflow: hidden !important;
}


/* FOTO */

.giro-hero img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;

    /* puxa o enquadramento um pouco para a esquerda */
    object-position: 42% center !important;

    display: block !important;
}


/* TEXTO */

.giro-hero-content {
    left: 50px !important;
    bottom: 48px !important;

    max-width: 500px !important;
}


/* OVERLAY MAIS SUAVE */

.giro-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(5, 22, 49, 0.90) 0%,
            rgba(5, 22, 49, 0.60) 38%,
            rgba(5, 22, 49, 0.18) 70%,
            rgba(5, 22, 49, 0.04) 100%
        ) !important;
}
/* =========================================================
   AJUSTE DEFINITIVO - HERO PORTAS DE GIRO
========================================================= */

.giro-hero {
    position: relative !important;

    width: 100% !important;
    max-width: 1180px !important;

    aspect-ratio: 16 / 9 !important;

    height: auto !important;
    min-height: 0 !important;

    margin: 0 auto !important;

    overflow: hidden !important;

    background: #071a38 !important;
}


/* IMAGEM */

.giro-hero img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center center !important;

    display: block !important;
}


/* OVERLAY */

.giro-hero-overlay {
    position: absolute !important;
    inset: 0 !important;

    background:
        linear-gradient(
            90deg,
            rgba(5, 22, 49, 0.88) 0%,
            rgba(5, 22, 49, 0.58) 38%,
            rgba(5, 22, 49, 0.18) 68%,
            rgba(5, 22, 49, 0.02) 100%
        ) !important;
}


/* TEXTO */

.giro-hero-content {
    position: absolute !important;

    left: 55px !important;
    bottom: 50px !important;

    max-width: 520px !important;

    z-index: 2 !important;
}
/* =========================================================
   MODELOS PORTA DE GIRO - FUNDO AZUL MARINHO
========================================================= */

.giro-modelos {
    background: #061a33 !important;

    padding-top: 70px !important;
    padding-bottom: 80px !important;
}


/* TÍTULO */

.giro-modelos h2 {
    color: #ffffff !important;
}

.giro-modelos h2 strong {
    color: #ffffff !important;
}


/* TEXTO PEQUENO À DIREITA */

.giro-modelos p {
    color: rgba(255, 255, 255, 0.70) !important;
}


/* MANTÉM AS FOTOS SEM FUNDO BRANCO */

.giro-modelo {
    background: transparent !important;
}
/* =========================================================
   GALERIA PORTAS DE GIRO - FUNDO AZUL MARINHO
========================================================= */

.giro-galeria {
    background: #132844 !important;

    padding: 70px 60px 80px !important;

    margin-top: 60px !important;

    box-sizing: border-box !important;
}


/* =========================================================
   CABEÇALHO
========================================================= */

.giro-galeria-header {
    margin-bottom: 45px !important;
}


/* INSPIRAÇÃO */

.giro-galeria-header span {
    color: #4c9be8 !important;
}


/* TÍTULO */

.giro-galeria-header h3 {
    color: #ffffff !important;
}

.giro-galeria-header h3 strong {
    color: #ffffff !important;
}


/* TEXTO DA DIREITA */

.giro-galeria-header p {
    color: rgba(255, 255, 255, 0.70) !important;
}


/* =========================================================
   3 FOTOS
========================================================= */

.giro-galeria-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;

    gap: 18px !important;

    align-items: stretch !important;
}


/* TODAS COM O MESMO TAMANHO */

.giro-galeria-item {
    width: 100% !important;

    aspect-ratio: 3 / 4 !important;
    height: auto !important;

    margin: 0 !important;

    overflow: hidden !important;

    background: #0b1f3a !important;
}


/* REMOVE O DESNÍVEL DA FOTO DO MEIO */

.giro-galeria-alta {
    margin: 0 !important;
    transform: none !important;
}


/* IMAGENS */

.giro-galeria-item img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center !important;

    display: block !important;

    margin: 0 !important;
    transform: none !important;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 800px) {

    .giro-galeria {
        padding: 50px 25px !important;
    }

    .giro-galeria-grid {
        grid-template-columns: 1fr !important;
    }

}
/* AJUSTE DE ESPAÇAMENTO - HERO PIVOTANTE */

   .pivotante-hero {
    width: 85% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.pivotante-hero-texto {
    left: 45px !important;
    bottom: 40px !important;
}
/* =========================================================
   JANELA DESTAQUE - SEM CORTAR
========================================================= */

.janela-destaque {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;
    background: #f3f5f8 !important;
}


/* IMAGEM */

.janela-destaque .janela-destaque-img {
    width: 100% !important;
    height: 100% !important;

    object-fit: contain !important;
    object-position: center !important;

    display: block !important;

    margin: 0 !important;
    transform: none !important;
}
/* =========================================================
   PROJETOS - QUINTA FOTO HORIZONTAL
========================================================= */

.projeto-foto-horizontal {
    width: 70% !important;
    max-width: 520px !important;

    height: 300px !important;

    margin-left: auto !important;
    margin-right: auto !important;

    overflow: hidden !important;
    position: relative !important;
}


/* IMAGEM */

.projeto-foto-horizontal img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center !important;

    display: block !important;
}


/* MANTÉM O TEXTO SOBRE A FOTO */

.projeto-foto-horizontal .projeto-foto-overlay {
    position: absolute !important;
    inset: 0 !important;
}
/* =========================================================
   MENU MOBILE - AJUSTE FINAL
========================================================= */

@media (max-width: 1100px) {

    .nav-menu {
        position: fixed !important;

        top: 76px !important;
        right: 18px !important;

        width: 280px !important;

        padding: 20px !important;

        background: #132844 !important;

        display: flex !important;
        flex-direction: column !important;

        gap: 4px !important;

        opacity: 0 !important;
        visibility: hidden !important;

        transform: translateY(-15px) !important;

        transition:
            opacity 0.3s ease,
            transform 0.3s ease,
            visibility 0.3s ease !important;

        box-shadow: 0 20px 50px rgba(0,0,0,0.30) !important;

        z-index: 99999 !important;
    }


    /* QUANDO CLICA NOS 3 RISQUINHOS */

    .nav-menu.menu-aberto {
        opacity: 1 !important;
        visibility: visible !important;

        transform: translateY(0) !important;
    }


    /* LINKS */

    .nav-menu a {
        width: 100% !important;

        padding: 14px 8px !important;

        display: block !important;

        color: #ffffff !important;

        border-bottom:
            1px solid rgba(255,255,255,0.10) !important;
    }


    /* BOTÃO DOS 3 RISQUINHOS */

    .menu-toggle {
        width: 46px !important;
        height: 46px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        color: #ffffff !important;

        font-size: 24px !important;

        cursor: pointer !important;

        position: relative !important;

        z-index: 100000 !important;
    }

}
/* =========================================================
   MENU MOBILE - CORREÇÃO DEFINITIVA
========================================================= */

@media (max-width: 1100px) {

    .nav-menu {
        position: fixed !important;
        top: 76px !important;
        right: 18px !important;

        width: 290px !important;
        max-width: calc(100vw - 36px) !important;

        padding: 18px !important;

        background: #132844 !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;

        gap: 4px !important;

        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;

        transform: translateY(-12px) !important;

        z-index: 999999 !important;

        box-shadow: 0 20px 45px rgba(0,0,0,0.30) !important;

        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease !important;
    }


    .nav-menu.menu-aberto {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;

        transform: translateY(0) !important;
    }


    .nav-menu a {
        display: block !important;

        width: 100% !important;

        padding: 14px 10px !important;

        color: #ffffff !important;

        background: transparent !important;

        border-bottom:
            1px solid rgba(255,255,255,0.10) !important;
    }


    .nav-menu a:last-child {
        border-bottom: none !important;
    }


    .menu-toggle {
        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        width: 46px !important;
        height: 46px !important;

        position: relative !important;

        z-index: 1000000 !important;

        color: #ffffff !important;

        font-size: 24px !important;

        cursor: pointer !important;
    }

}
/* =========================================================
   HEADER / MENU MOBILE - VERSÃO FINAL
========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 10000;

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.header.header-scroll {
    background: rgba(5, 22, 49, 0.96) !important;

    box-shadow:
        0 8px 30px rgba(0,0,0,0.15);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* botão mobile escondido no desktop */

.menu-toggle {
    display: none;

    border: 0;
    background: transparent;

    color: white;

    cursor: pointer;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1100px) {

    .btn-header {
        display: none !important;
    }


    .menu-toggle {
        display: flex !important;

        width: 46px;
        height: 46px;

        align-items: center;
        justify-content: center;

        font-size: 24px;

        position: relative;

        z-index: 100002;
    }


    .nav-menu {
        position: fixed !important;

        top: 78px !important;
        right: 18px !important;

        width: min(300px, calc(100vw - 36px)) !important;

        padding: 18px !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;

        gap: 3px !important;

        background: #132844 !important;

        border:
            1px solid rgba(255,255,255,0.08);

        box-shadow:
            0 20px 50px rgba(0,0,0,0.35);

        opacity: 0 !important;
        visibility: hidden !important;

        pointer-events: none !important;

        transform:
            translateY(-12px) scale(0.98) !important;

        transform-origin: top right;

        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease !important;

        z-index: 100001 !important;
    }


    .nav-menu.menu-aberto {
        opacity: 1 !important;
        visibility: visible !important;

        pointer-events: auto !important;

        transform:
            translateY(0) scale(1) !important;
    }


    .nav-menu a {
        width: 100% !important;

        display: block !important;

        padding: 14px 10px !important;

        color: white !important;

        font-size: 13px;

        border-bottom:
            1px solid rgba(255,255,255,0.09);
    }


    .nav-menu a:last-child {
        border-bottom: 0;
    }


    .nav-menu a:hover {
        color: #69a9e8 !important;
    }

}


/* animações */

.animar {
    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.animar.aparecer {
    opacity: 1;

    transform:
        translateY(0);
}
/* =========================================================
   ANIMAÇÃO DA LOGO
========================================================= */

.logo img {
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.logo:hover img {
    transform: scale(1.06);
    opacity: 0.90;
}

.logo:active img {
    transform: scale(0.96);
}
/* =========================================================
   PADRÃO VISUAL FINAL
========================================================= */

:root {
    --azul-escuro: #061a33;
    --azul-medio: #132844;
    --azul-destaque: #2f78c4;
    --fundo-claro: #f4f6f8;
}


/* BOTÕES */

.btn-primary,
.btn-dark,
.btn-header,
.btn-contato-final {
    border-radius: 2px !important;
    min-height: 52px !important;

    font-weight: 600 !important;
    letter-spacing: 0.2px !important;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease !important;
}

.btn-primary:hover,
.btn-dark:hover,
.btn-header:hover,
.btn-contato-final:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(7,26,56,0.12) !important;
}


/* TÍTULOS */

section h2,
section h3 {
    text-wrap: balance;
}


/* ESPAÇAMENTO ENTRE SEÇÕES */

section {
    scroll-margin-top: 95px;
}


/* IMAGENS */

img {
    max-width: 100%;
}


/* GALERIAS DE PORTAS */

.giro-galeria-item,
.giro-tripla-item,
.giro-lambril-item,
.giro-veneziana-item,
.pivotante-galeria > div,
.janela-galeria > div {
    border-radius: 2px;
}


/* EFEITO DAS FOTOS */

.giro-galeria-item img,
.giro-tripla-item img,
.giro-lambril-item img,
.giro-veneziana-item img,
.pivotante-galeria img,
.janela-galeria img,
.projeto-foto img {
    transition:
        transform 0.45s ease,
        filter 0.45s ease !important;
}

.giro-galeria-item:hover img,
.giro-tripla-item:hover img,
.giro-lambril-item:hover img,
.giro-veneziana-item:hover img,
.pivotante-galeria > div:hover img,
.janela-galeria > div:hover img,
.projeto-foto:hover img {
    transform: scale(1.025) !important;
}


/* CARDS */

.trilho-card,
.linha-card,
.persiana-card,
.persiana-projeto,
.janela-modelo-card,
.giro-opcao {
    border-radius: 2px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease !important;
}

.trilho-card:hover,
.linha-card:hover,
.persiana-card:hover,
.persiana-projeto:hover,
.janela-modelo-card:hover,
.giro-opcao:hover {
    transform: translateY(-4px) !important;

    box-shadow:
        0 14px 35px rgba(7,26,56,0.09) !important;
}
/* =========================================================
   WHATSAPP FLUTUANTE
========================================================= */

.whatsapp-flutuante {
    position: fixed !important;

    right: 25px !important;
    bottom: 25px !important;

    width: 58px !important;
    height: 58px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 50% !important;

    z-index: 999999 !important;

    /* começa escondido */
    opacity: 0 !important;
    visibility: visible !important;

    transform: translateY(20px) !important;

    transition:
        opacity 0.4s ease,
        transform 0.4s ease !important;

    cursor: pointer !important;
}


/* QUANDO O JAVASCRIPT ATIVA */

.whatsapp-flutuante.whatsapp-visivel {
    opacity: 1 !important;
    transform: translateY(0) !important;
}


/* ÍCONE */

.whatsapp-flutuante i {
    font-size: 28px !important;
}


/* CELULAR */

@media (max-width: 600px) {

    .whatsapp-flutuante {
        right: 18px !important;
        bottom: 18px !important;

        width: 54px !important;
        height: 54px !important;
    }

}
/* =========================================================
   VAZ GLASS - AJUSTES MOBILE
   HOME + HEADER
========================================================= */

@media (max-width: 768px) {

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

    .header {
        width: 100% !important;
    }

    .header-container {
        min-height: 70px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }


    /* LOGO */

    .logo img,
    .logo-img {
        width: auto !important;
        max-width: 125px !important;
        height: auto !important;
    }


    /* ESCONDE BOTÃO GRANDE DE ORÇAMENTO */

    .btn-header {
        display: none !important;
    }


    /* 3 RISQUINHOS */

    .menu-toggle {
        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        width: 44px !important;
        height: 44px !important;

        padding: 0 !important;

        font-size: 23px !important;

        background: transparent !important;
        border: 0 !important;

        color: #ffffff !important;
    }


    /* =========================
       HOME
    ========================== */

    #inicio {
        min-height: 100svh !important;
    }


    /* CONTEÚDO PRINCIPAL */

    .hero-content {
        width: 100% !important;
        max-width: 100% !important;

        padding-left: 22px !important;
        padding-right: 22px !important;

        box-sizing: border-box !important;
    }


    /* TÍTULO */

    .hero-content h1 {
        font-size: clamp(38px, 11vw, 54px) !important;

        line-height: 0.98 !important;

        letter-spacing: -1.5px !important;

        max-width: 100% !important;
    }


    /* TEXTO */

    .hero-content p {
        max-width: 92% !important;

        font-size: 15px !important;
        line-height: 1.65 !important;

        margin-top: 22px !important;
    }


    /* BOTÕES */

    .hero-buttons {
        width: 100% !important;

        display: flex !important;
        flex-direction: column !important;

        gap: 12px !important;

        margin-top: 28px !important;
    }


    .hero-buttons a {
        width: 100% !important;
        max-width: 330px !important;

        min-height: 52px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        box-sizing: border-box !important;
    }


    /* INFORMAÇÕES DA HOME */

    .hero-stats {
        width: 100% !important;

        display: grid !important;
        grid-template-columns: 1fr !important;

        gap: 16px !important;

        margin-top: 35px !important;
    }


    .stat-divider {
        display: none !important;
    }


    /* WHATSAPP */

    .whatsapp-flutuante {
        right: 16px !important;
        bottom: 16px !important;

        width: 54px !important;
        height: 54px !important;
    }

}
/* =========================================================
   MOBILE - QUEM SOMOS + ESQUADRIAS
========================================================= */

@media (max-width: 768px) {

    /* =========================
       QUEM SOMOS
    ========================== */

    .sobre {
        padding-top: 75px !important;
    }

    .sobre-container {
        display: grid !important;
        grid-template-columns: 1fr !important;

        gap: 45px !important;
    }


    /* FOTO */

    .sobre-imagens {
        width: 100% !important;
    }

    .sobre-img-principal {
        width: 100% !important;
        height: 400px !important;

        overflow: hidden !important;
    }

    .sobre-img-principal img {
        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
        object-position: center !important;
    }


    /* BOX SOBRE A FOTO */

    .sobre-box {
        right: 15px !important;
        bottom: 20px !important;

        width: 175px !important;

        padding: 20px !important;
    }

    .sobre-box strong {
        font-size: 17px !important;
    }


    /* TEXTO */

    .sobre-content h2 {
        font-size: 38px !important;

        line-height: 1.08 !important;

        letter-spacing: -1px !important;
    }

    .sobre-content > p {
        font-size: 14px !important;
        line-height: 1.75 !important;
    }


    /* DIFERENCIAIS */

    .sobre-diferenciais {
        gap: 18px !important;

        margin-top: 30px !important;
        margin-bottom: 30px !important;
    }

    .diferencial-item {
        align-items: flex-start !important;
    }

    .diferencial-icon {
        width: 45px !important;
        height: 45px !important;
    }


    /* =========================
       ENDEREÇO
    ========================== */

    .endereco-faixa {
        margin-top: 70px !important;
    }

    .endereco-container {
        padding: 30px 0 !important;

        display: grid !important;
        grid-template-columns: 50px 1fr !important;

        gap: 15px !important;

        min-height: 0 !important;
    }

    .endereco-icon {
        width: 50px !important;
        height: 50px !important;

        margin: 0 !important;
    }

    .endereco-info strong {
        font-size: 14px !important;
        line-height: 1.4 !important;
    }

    .endereco-info p {
        font-size: 11px !important;
        line-height: 1.5 !important;
    }

    .endereco-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 12px;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition: 0.3s ease;
}

.endereco-link:hover {
    transform: translateX(4px);
}


    /* =========================
       INÍCIO DAS ESQUADRIAS
       TRILHOS
    ========================== */

    .trilhos {
        padding: 80px 0 !important;
    }

    .trilhos-header {
        display: grid !important;
        grid-template-columns: 1fr !important;

        gap: 18px !important;

        margin-bottom: 40px !important;
    }

    .trilhos-header h2 {
        font-size: 38px !important;

        line-height: 1.06 !important;

        letter-spacing: -1px !important;
    }

    .trilhos-header > p {
        font-size: 13px !important;
        line-height: 1.7 !important;
    }


    /* ALERTA TÉCNICO */

    .alerta-tecnico {
        display: grid !important;
        grid-template-columns: 1fr !important;

        gap: 22px !important;

        padding: 30px 25px !important;

        margin-bottom: 65px !important;
    }

    .alerta-icon {
        width: 55px !important;
        height: 55px !important;
    }

    .alerta-conteudo h3 {
        font-size: 25px !important;
        line-height: 1.2 !important;
    }

    .alerta-conteudo > p {
        font-size: 12px !important;
        line-height: 1.7 !important;
    }


    /* CARDS DOS TRILHOS */

    .trilhos-grid {
        grid-template-columns: 1fr !important;

        gap: 25px !important;
    }

    .trilho-imagem {
        height: 280px !important;
    }

    .trilho-conteudo {
        padding: 30px 25px !important;
    }

    .trilho-conteudo h3 {
        font-size: 25px !important;
    }


    /* AVISO FINAL */

    .aviso-chuva {
        padding: 25px 20px !important;

        gap: 15px !important;

        align-items: flex-start !important;
    }

    .aviso-chuva-icon {
        width: 50px !important;
        height: 50px !important;
    }

}
/* =========================================================
   MOBILE - PORTAS DE CORRER + PERSIANAS
========================================================= */

@media (max-width: 768px) {

    /* =========================
       PORTAS DE CORRER
    ========================== */

    .portas-correr {
        padding: 80px 0 !important;
    }

    .portas-header {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        margin-bottom: 40px !important;
    }

    .portas-header h2 {
        font-size: 38px !important;
        line-height: 1.06 !important;
        letter-spacing: -1px !important;
    }

    .portas-header > p {
        font-size: 13px !important;
        line-height: 1.7 !important;
    }

    .porta-destaque {
        height: 390px !important;
        margin-bottom: 40px !important;
    }

    .porta-destaque-texto {
        left: 24px !important;
        right: 24px !important;
        bottom: 28px !important;
    }

    .porta-destaque-texto h3 {
        font-size: 29px !important;
    }


    /* SUPREMA + GOLD */

    .linhas-grid {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .linha-card {
        padding: 28px 24px !important;
    }

    .linha-card > h3 {
        font-size: 32px !important;
    }

    .linha-intro {
        min-height: 0 !important;
    }

    .medidas-valores {
        flex-wrap: wrap !important;
    }

    .escolha-linha {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        padding: 28px 24px !important;
    }

    .escolha-linha .btn-primary {
        grid-column: auto !important;
        width: 100% !important;
    }


    /* =========================
       GALERIA PORTAS DE CORRER
    ========================== */

    .galeria-portas {
        margin-top: 75px !important;
    }

    .galeria-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: none !important;
        gap: 18px !important;
    }

    .galeria-item,
    .galeria-grande {
        width: 100% !important;
        height: 360px !important;
        grid-row: auto !important;
        grid-column: auto !important;
        margin: 0 !important;
    }

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


    /* =========================
       PORTAS 3 E 4 FOLHAS
    ========================== */

    .modelos-portas {
        padding: 80px 0 !important;
    }

    .modelos-header {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        margin-bottom: 45px !important;
    }

    .modelos-header h2 {
        font-size: 38px !important;
        line-height: 1.06 !important;
        letter-spacing: -1px !important;
    }

    .modelo-porta,
    .modelo-invertido {
        grid-template-columns: 1fr !important;
        min-height: 0 !important;
    }

    .modelo-invertido .modelo-imagem,
    .modelo-invertido .modelo-conteudo {
        order: initial !important;
    }

    .modelo-imagem {
        min-height: 360px !important;
        height: 360px !important;
    }

    .modelo-conteudo {
        padding: 35px 26px !important;
    }

    .modelo-conteudo h3 {
        font-size: 30px !important;
    }


    /* =========================
       VENEZIANA
    ========================== */

    .veneziana-destaque {
        grid-template-columns: 1fr !important;
        min-height: 0 !important;
        margin-top: 70px !important;
    }

    .veneziana-imagem {
        min-height: 360px !important;
        height: 360px !important;
    }

    .veneziana-conteudo {
        padding: 38px 26px !important;
    }

    .veneziana-conteudo h3 {
        font-size: 30px !important;
    }

    .veneziana-config {
        grid-template-columns: 1fr !important;
    }

    .veneziana-config > div {
        border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    }


    /* =========================
       CORES
    ========================== */

    .cores-portas {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        margin-top: 75px !important;
    }

    .cores-texto h3 {
        font-size: 31px !important;
    }

    .cores-amostras {
        grid-template-columns: repeat(2, 1fr) !important;
    }


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

    .mini-galeria-portas {
        grid-template-columns: 1fr !important;
        height: auto !important;
        gap: 14px !important;
        padding: 22px !important;
    }

    .mini-galeria-item,
    .mini-alto {
        height: 330px !important;
        margin: 0 !important;
    }


    /* =========================
       PERSIANAS
    ========================== */

    .persianas {
        padding: 80px 0 !important;
    }

    .persianas-header {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        margin-bottom: 40px !important;
    }

    .persianas-header h2 {
        font-size: 38px !important;
        line-height: 1.06 !important;
        letter-spacing: -1px !important;
    }

    .persiana-principal-img {
        height: 390px !important;
    }

    .persiana-principal-info {
        left: 24px !important;
        right: 24px !important;
        bottom: 28px !important;
    }

    .persiana-principal-info h3 {
        font-size: 29px !important;
    }

    .persianas-tipos {
        grid-template-columns: 1fr !important;
    }


    /* ALERTA 250–280 */

    .persiana-alerta {
        grid-template-columns: 1fr !important;
        margin-top: 40px !important;
    }

    .persiana-alerta-numero {
        min-height: 160px !important;
    }

    .persiana-alerta-texto {
        padding: 32px 24px !important;
    }


    /* PROJETOS PERSIANA */

    .persianas-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .persiana-projeto-img,
    .persiana-video {
        height: 340px !important;
    }

    .persiana-projeto-texto {
        padding: 24px !important;
    }

    .persiana-beneficio {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 34px 26px !important;
    }

}
/* =========================================================
   MOBILE - PORTAS DE GIRO + PIVOTANTES
========================================================= */

@media (max-width: 768px) {

    /* =========================
       PORTAS DE GIRO
    ========================== */

    .portas-giro {
        padding: 80px 0 !important;
    }

    .giro-header {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        margin-bottom: 40px !important;
    }

    .giro-header h2 {
        font-size: 38px !important;
        line-height: 1.06 !important;
        letter-spacing: -1px !important;
    }

    .giro-header > p {
        font-size: 13px !important;
        line-height: 1.7 !important;
    }

    /* HERO */

    .giro-hero {
        height: 390px !important;
        aspect-ratio: auto !important;
    }

    .giro-hero-content {
        left: 24px !important;
        right: 24px !important;
        bottom: 28px !important;
    }

    .giro-hero-content h3 {
        font-size: 30px !important;
    }

    .giro-hero-content p {
        font-size: 12px !important;
    }


    /* =========================
       OPÇÕES
    ========================== */

    .giro-opcoes {
        margin-top: 70px !important;
    }

    .giro-opcoes-titulo h3 {
        font-size: 31px !important;
    }

    .giro-opcoes-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .giro-opcao {
        min-height: 190px !important;
        padding: 22px !important;
    }

    .giro-opcao-icon {
        margin-bottom: 20px !important;
    }


    /* =========================
       PORTA COM VIDRO
       3 FOTOS + TEXTO
    ========================== */

    .giro-vidro-bloco {
        grid-template-columns: 1fr !important;
        min-height: 0 !important;
        margin-top: 70px !important;
    }

    .giro-vidro-galeria {
        grid-template-columns: 1fr !important;
        height: auto !important;
        min-height: 0 !important;
    }

    .giro-vidro-item {
        height: 300px !important;
    }

    .giro-vidro-texto {
        padding: 38px 26px !important;
    }

    .giro-vidro-texto h3 {
        font-size: 30px !important;
    }

    .giro-vidro-opcoes {
        grid-template-columns: 1fr !important;
    }


    /* =========================
       LAMBRIL
    ========================== */

    .giro-lambril-bloco {
        grid-template-columns: 1fr !important;
        min-height: 0 !important;
    }

    .giro-lambril-texto,
    .giro-lambril-galeria {
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .giro-lambril-texto {
        order: 2 !important;
        padding: 38px 26px !important;
    }

    .giro-lambril-galeria {
        order: 1 !important;
        grid-template-columns: 1fr !important;
        height: auto !important;
    }

    .giro-lambril-item {
        height: 300px !important;
    }

    .giro-lambril-texto h3 {
        font-size: 30px !important;
    }

    .giro-lambril-opcoes {
        grid-template-columns: 1fr !important;
    }


    /* =========================
       VENEZIANA
    ========================== */

    .giro-veneziana-bloco {
        grid-template-columns: 1fr !important;
        min-height: 0 !important;
    }

    .giro-veneziana-galeria {
        grid-template-columns: 1fr !important;
        height: auto !important;
    }

    .giro-veneziana-item {
        height: 300px !important;
    }

    .giro-veneziana-texto {
        padding: 38px 26px !important;
    }

    .giro-veneziana-texto h3 {
        font-size: 30px !important;
    }


    /* =========================
       LINHAS DISPONÍVEIS
    ========================== */

    .giro-linhas {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
        padding: 38px 26px !important;
        margin-top: 70px !important;
    }

    .giro-linhas-texto h3 {
        font-size: 29px !important;
    }

    .giro-linhas-lista {
        grid-template-columns: 1fr !important;
    }


    /* =========================
       BANDEIRAS
    ========================== */

    .giro-bandeiras {
        grid-template-columns: 1fr !important;
        margin-top: 70px !important;
    }

    .giro-bandeiras-imagem {
        min-height: 360px !important;
    }

    .giro-bandeiras-content {
        padding: 38px 26px !important;
    }

    .giro-bandeiras-content h3 {
        font-size: 30px !important;
    }


    /* =========================
       GALERIA PORTAS DE GIRO
    ========================== */

    .giro-galeria {
        padding: 45px 22px !important;
        margin-top: 70px !important;
    }

    .giro-galeria-header {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .giro-galeria-header h3 {
        font-size: 30px !important;
    }

    .giro-galeria-grid {
        grid-template-columns: 1fr !important;
        height: auto !important;
        gap: 16px !important;
    }

    .giro-galeria-item,
    .giro-galeria-alta {
        width: 100% !important;
        height: 390px !important;
        aspect-ratio: auto !important;
        margin: 0 !important;
    }


    /* =========================
       PIVOTANTES
    ========================== */

    .pivotantes {
        padding: 80px 0 !important;
    }

    .pivotantes-header {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        margin-bottom: 40px !important;
    }

    .pivotantes-header h2 {
        font-size: 38px !important;
        line-height: 1.06 !important;
        letter-spacing: -1px !important;
    }

    .pivotantes-header > p {
        font-size: 13px !important;
        line-height: 1.7 !important;
    }


    /* HERO PIVOTANTE */

    .pivotante-hero {
        width: 100% !important;
        height: 390px !important;
        margin-bottom: 25px !important;
    }

    .pivotante-hero-texto {
        left: 24px !important;
        right: 24px !important;
        bottom: 28px !important;
    }

    .pivotante-hero-texto h3 {
        font-size: 30px !important;
    }


    /* MEDIDA 1200 */

    .pivotante-medida {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 30px 25px !important;
    }

    .pivotante-medida-numero {
        font-size: 38px !important;
    }


    /* =========================
       PIVOTANTE COM 3 FOTOS
    ========================== */

    .pivotante-modelo {
        grid-template-columns: 1fr !important;
        min-height: 0 !important;
        margin-top: 70px !important;
    }

    .pivotante-galeria {
        grid-template-columns: 1fr !important;
        height: auto !important;
    }

    .pivotante-galeria > div {
        height: 300px !important;
    }

    .pivotante-content {
        padding: 38px 26px !important;
    }

    .pivotante-content h3 {
        font-size: 30px !important;
    }

    .pivotante-opcoes {
        grid-template-columns: 1fr !important;
    }


    /* =========================
       RIPADO COM VÍDEO
    ========================== */

    .ripado-video-bloco {
        grid-template-columns: 1fr !important;
        min-height: 0 !important;
        margin-top: 25px !important;
    }

    .ripado-video-texto {
        padding: 38px 26px !important;
    }

    .ripado-video-texto h3 {
        font-size: 30px !important;
    }

    .ripado-video-info {
        max-width: 100% !important;
    }

    .ripado-video-area {
        height: 520px !important;
        padding: 18px !important;
    }

    .ripado-video-area video {
        width: auto !important;
        height: 100% !important;
        max-width: 100% !important;
        object-fit: contain !important;
    }


    /* =========================
       CORES / ACABAMENTOS
    ========================== */

    .pivotante-cores {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        margin-top: 55px !important;
    }

    .pivotante-cores h3 {
        font-size: 29px !important;
    }

}
/* =========================================================
   CORREÇÃO GERAL - MOBILE SEM ROLAR PARA O LADO
========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}

* {
    box-sizing: border-box;
}


/* evita containers maiores que a tela */

.container,
.header-container,
.hero-container,
.sobre-container,
.trilhos-header,
.portas-header,
.modelos-header,
.persianas-header,
.giro-header,
.pivotantes-header,
.janelas-header,
.contato-container {
    max-width: 100% !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    section,
    article,
    header,
    footer,
    main,
    nav,
    div {
        max-width: 100%;
    }


    /* TODOS OS GRIDS IMPORTANTES */

    .trilhos-grid,
    .linhas-grid,
    .galeria-grid,
    .modelos-header,
    .modelo-porta,
    .veneziana-destaque,
    .cores-portas,
    .mini-galeria-portas,
    .persianas-grid,
    .giro-opcoes-grid,
    .giro-vidro-bloco,
    .giro-lambril-bloco,
    .giro-veneziana-bloco,
    .giro-linhas,
    .giro-bandeiras,
    .giro-galeria-grid,
    .pivotante-modelo,
    .pivotante-galeria,
    .ripado-video-bloco,
    .pivotante-cores,
    .janela-bloco,
    .maximar-destaque,
    .janelas-cores,
    .projetos-mosaico,
    .contato-container {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }


    /* IMAGENS E VÍDEOS */

    img,
    video {
        max-width: 100% !important;
    }


    /* TEXTOS NÃO PODEM FORÇAR A LARGURA */

    h1,
    h2,
    h3,
    h4,
    p,
    span,
    strong,
    a {
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }


    /* BOTÕES */

    .btn-primary,
    .btn-outline,
    .btn-dark,
    .btn-header,
    .btn-contato-final,
    .orcamento-whatsapp {
        max-width: 100% !important;
        min-width: 0 !important;
    }


    /* MENU MOBILE */

    .nav-menu {
        max-width: calc(100vw - 30px) !important;
        right: 15px !important;
        left: auto !important;
    }


    /* VÍDEO RIPADO */

    .ripado-video-area {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }


    /* GALERIAS COM PADDING */

    .giro-galeria,
    .mini-galeria-portas {
        width: 100% !important;
        max-width: 100% !important;

        margin-left: 0 !important;
        margin-right: 0 !important;

        padding-left: 20px !important;
        padding-right: 20px !important;
    }

}
/* =========================================================
   MOBILE - JANELAS + PROJETOS + CONTATO + RODAPÉ
========================================================= */

@media (max-width: 768px) {

    /* =========================
       JANELAS
    ========================== */

    .janelas {
        padding: 80px 0 !important;
    }

    .janelas-header {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        margin-bottom: 40px !important;
    }

    .janelas-header h2 {
        font-size: 38px !important;
        line-height: 1.06 !important;
        letter-spacing: -1px !important;
    }

    .janelas-header > p {
        font-size: 13px !important;
        line-height: 1.7 !important;
    }

    .janelas-hero {
        height: 380px !important;
    }

    .janelas-hero-texto {
        left: 24px !important;
        right: 24px !important;
        bottom: 28px !important;
    }

    .janelas-hero-texto h3 {
        font-size: 29px !important;
    }


    /* SUPREMA / GOLD */

    .janelas-linhas {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .janela-linha-card {
        padding: 28px 24px !important;
    }


    /* TIPOS DE JANELA */

    .janelas-modelos {
        margin-top: 70px !important;
    }

    .janelas-modelos-titulo h3 {
        font-size: 30px !important;
    }

    .janelas-modelos-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .janela-modelo-card {
        min-height: 0 !important;
        padding: 26px !important;
    }


    /* BLOCOS DE 3 FOTOS */

    .janela-bloco,
    .janela-bloco-invertido {
        grid-template-columns: 1fr !important;
        min-height: 0 !important;
        margin-top: 70px !important;
    }

    .janela-bloco-invertido .janela-galeria,
    .janela-bloco-invertido .janela-bloco-texto {
        order: initial !important;
    }

    .janela-galeria {
        grid-template-columns: 1fr !important;
        height: auto !important;
        padding: 6px !important;
        gap: 6px !important;
    }

    .janela-galeria > div {
        height: 290px !important;
    }

    .janela-bloco-texto {
        padding: 38px 26px !important;
    }

    .janela-bloco-texto h3 {
        font-size: 30px !important;
    }

    .janela-lista {
        grid-template-columns: 1fr !important;
    }

    .janela-mini-opcoes {
        grid-template-columns: 1fr !important;
    }


    /* MAXIM-AR */

    .maximar-destaque {
        grid-template-columns: 1fr !important;
        margin-top: 70px !important;
    }

    .maximar-imagem {
        min-height: 360px !important;
        height: 360px !important;
        padding: 20px !important;
    }

    .maximar-imagem img {
        max-width: 88% !important;
        max-height: 320px !important;
    }

    .maximar-texto {
        padding: 38px 26px !important;
    }

    .maximar-texto h3 {
        font-size: 30px !important;
    }

    .maximar-partes {
        grid-template-columns: 1fr !important;
    }


    /* PELÍCULAS */

    .janela-peliculas {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        margin-top: 55px !important;
    }

    .janela-peliculas h3 {
        font-size: 29px !important;
    }

    .peliculas-grid {
        grid-template-columns: 1fr !important;
    }


    /* CORES */

    .janelas-cores {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
        margin-top: 70px !important;
    }

    .janelas-cores-texto h3 {
        font-size: 30px !important;
    }

    .janelas-cores-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }


    /* =========================
       PROJETOS
    ========================== */

    .projetos-geral {
        padding: 80px 0 !important;
    }

    .projetos-geral-header {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        margin-bottom: 40px !important;
    }

    .projetos-geral-header h2 {
        font-size: 38px !important;
        line-height: 1.06 !important;
        letter-spacing: -1px !important;
    }

    .projetos-geral-header > p {
        font-size: 13px !important;
        line-height: 1.7 !important;
    }

    .projetos-mosaico {
        grid-template-columns: 1fr !important;
        grid-template-rows: none !important;
        gap: 14px !important;
    }

    .projeto-foto,
    .projeto-foto-grande,
    .projeto-foto-horizontal {
        grid-column: auto !important;
        grid-row: auto !important;

        width: 100% !important;
        max-width: 100% !important;

        height: 300px !important;

        margin: 0 !important;
    }


    /* =========================
       CTA ORÇAMENTO
    ========================== */

    .orcamento-cta {
        min-height: 520px !important;
        padding: 60px 0 !important;
    }

    .orcamento-cta-container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .orcamento-cta-texto h2 {
        font-size: 36px !important;
    }

    .orcamento-whatsapp {
        width: 100% !important;
        min-width: 0 !important;

        padding: 22px !important;
    }


    /* =========================
       CONTATO
    ========================== */

    .contato {
        padding: 80px 0 !important;
    }

    .contato-container {
        grid-template-columns: 1fr !important;
        gap: 45px !important;
    }

    .contato-principal h2 {
        font-size: 37px !important;
        line-height: 1.07 !important;
    }

    .contato-principal > p {
        font-size: 13px !important;
    }

    .contato-lista {
        margin-top: 35px !important;
    }

    .contato-item {
        gap: 14px !important;
    }

    .contato-item-icon {
        width: 44px !important;
        height: 44px !important;
    }

    .contato-card {
        padding: 36px 26px !important;
    }

    .contato-card h3 {
        font-size: 25px !important;
    }

    .btn-contato-final {
        width: 100% !important;
    }


    /* =========================
       RODAPÉ
    ========================== */

    .footer-topo {
        grid-template-columns: 1fr !important;
        gap: 38px !important;

        padding: 55px 0 !important;
    }

    .footer-logo {
        max-width: 160px !important;
    }

    .footer-marca p {
        max-width: 100% !important;
    }

    .footer-bottom-container {
        min-height: 0 !important;

        padding: 24px 0 !important;

        flex-direction: column !important;
        align-items: flex-start !important;

        gap: 14px !important;
    }


    /* WHATSAPP */

    .whatsapp-flutuante {
        right: 16px !important;
        bottom: 16px !important;

        width: 54px !important;
        height: 54px !important;
    }

}
/* =========================================================
   MOBILE - LOGO MENOR
========================================================= */

@media (max-width: 768px) {

    .logo {
        width: auto !important;
        height: auto !important;

        max-width: 100px !important;

        display: flex !important;
        align-items: center !important;

        overflow: visible !important;
    }

    .logo img,
    .logo-img {
        width: 100px !important;
        height: auto !important;

        max-width: 100px !important;
        max-height: 48px !important;

        object-fit: contain !important;
        object-position: left center !important;

        display: block !important;
    }

}
/* =========================================================
   ACABAMENTO VISUAL FINAL
   FUNDOS + ESPAÇAMENTOS
========================================================= */

/* FUNDOS PRINCIPAIS */

.sobre,
.portas-correr,
.persianas,
.pivotantes,
.projetos-geral {
    background: #f4f6f8 !important;
}

.trilhos,
.modelos-portas,
.portas-giro,
.janelas,
.contato {
    background: #ffffff !important;
}


/* SEÇÕES AZUL-MARINHO */

.giro-galeria,
.orcamento-cta,
.footer {
    background: #132844 !important;
}


/* PADRÃO DE ESPAÇAMENTO ENTRE SEÇÕES */

.sobre,
.trilhos,
.portas-correr,
.modelos-portas,
.persianas,
.portas-giro,
.pivotantes,
.janelas,
.projetos-geral,
.contato {
    padding-top: 110px;
    padding-bottom: 110px;
}


/* TÍTULOS PRINCIPAIS */

.section-tag {
    margin-bottom: 18px !important;
}

section h2 {
    margin-bottom: 22px;
}


/* MAIS RESPIRO EM CARDS */

.trilho-card,
.linha-card,
.persiana-card,
.janela-modelo-card,
.giro-opcao {
    overflow: hidden;
}


/* SOMBRA MAIS DISCRETA */

.trilho-card,
.linha-card,
.persiana-card,
.persiana-projeto,
.contato-card {
    box-shadow: 0 12px 35px rgba(7, 26, 56, 0.06);
}


/* LINHAS AZUIS PEQUENAS */

.section-tag span {
    width: 34px !important;
    height: 2px !important;
}


/* MOBILE */

@media (max-width: 768px) {

    .sobre,
    .trilhos,
    .portas-correr,
    .modelos-portas,
    .persianas,
    .portas-giro,
    .pivotantes,
    .janelas,
    .projetos-geral,
    .contato {
        padding-top: 75px !important;
        padding-bottom: 75px !important;
    }

}
/* =========================================================
   ENDEREÇO - MOSTRAR LINK DO GOOGLE MAPS
========================================================= */

.endereco-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;

    margin-top: 12px !important;

    color: #2f78c4 !important;

    font-size: 13px !important;
    font-weight: 600 !important;

    text-decoration: none !important;

    opacity: 1 !important;
    visibility: visible !important;

    transition: 0.3s ease !important;
}

.endereco-link:hover {
    color: #ffffff !important;
    transform: translateX(4px) !important;
}


/* CELULAR */

@media (max-width: 768px) {

    .endereco-link {
        display: inline-flex !important;
        margin-top: 10px !important;
    }

}
/* =========================================================
   JANELAS - FOTO PRINCIPAL + VER MODELOS
========================================================= */

.janela-foto-principal {
    position: relative;

    min-height: 650px;
    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eef1f5;
    overflow: hidden;
}

.janela-foto-principal > img {
    width: 100%;
    height: 600px;

    max-width: 100%;
    max-height: none;

    object-fit: contain;
    object-position: center;

    display: block;
}

/* CAIXINHA */

/* BOTÃO GALERIA - DESKTOP */

.btn-ver-modelos {
    position: absolute !important;

    left: 20px !important;
    bottom: 20px !important;

    right: auto !important;
    top: auto !important;

    min-width: 210px;

    padding: 16px 18px;

    display: flex;
    align-items: center;
    gap: 13px;

    border: 0;

    background: rgba(6, 26, 51, 0.95);
    color: #ffffff;

    cursor: pointer;
    z-index: 10;

    box-shadow: 0 12px 30px rgba(0,0,0,0.18);

    transition: 0.3s ease;
}


/* BOTÃO GALERIA - CELULAR */

@media (max-width: 768px) {

    .btn-ver-modelos {
        left: 15px !important;
        bottom: 15px !important;

        right: auto !important;
        top: auto !important;

        width: auto !important;
        min-width: 190px !important;
    }

}

.btn-ver-modelos:hover {
    transform: translateY(-4px);

    background: #132844;
}


.btn-ver-modelos > i:first-child {
    font-size: 21px;

    color: #5ca6ed;
}


.btn-ver-modelos div {
    flex: 1;

    text-align: left;
}


.btn-ver-modelos span {
    display: block;

    font-size: 8px;
    letter-spacing: 1.7px;

    color: #5ca6ed;

    margin-bottom: 3px;
}


.btn-ver-modelos strong {
    font-size: 12px;
}


.btn-ver-modelos > i:last-child {
    font-size: 11px;
}


/* MOBILE */

@media (max-width: 768px) {

    .janela-foto-principal {
        min-height: 460px !important;
        padding: 15px !important;
    }

    .janela-foto-principal > img {
        width: 100% !important;
        height: 420px !important;

        object-fit: contain !important;
        object-position: center !important;
    }

}
/* =========================================================
   CORREÇÃO FINAL - FOTO PRINCIPAL DAS JANELAS
   + BOTÃO GALERIA SOBRE A FOTO
========================================================= */

.janela-foto-principal {
    position: relative !important;

    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;

    padding: 0 !important;
    margin: 0 !important;

    background: #eef1f5 !important;

    display: block !important;

    overflow: hidden !important;
}


/* FOTO */

.janela-foto-principal > img {
    width: 100% !important;
    height: auto !important;

    max-width: none !important;
    max-height: none !important;

    margin: 0 !important;

    display: block !important;

    object-fit: contain !important;
    object-position: center !important;
}


/* BOTÃO GALERIA */

.janela-foto-principal .btn-ver-modelos {
    position: absolute !important;

    left: 20px !important;
    bottom: 20px !important;

    right: auto !important;
    top: auto !important;

    width: auto !important;
    min-width: 210px !important;

    padding: 16px 18px !important;

    display: flex !important;
    align-items: center !important;
    gap: 13px !important;

    background: rgba(8, 31, 58, 0.96) !important;
    color: #ffffff !important;

    border: none !important;

    cursor: pointer !important;

    z-index: 20 !important;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.20) !important;

    transition: 0.3s ease !important;
}


.janela-foto-principal .btn-ver-modelos:hover {
    transform: translateY(-3px) !important;

    background: #102b4c !important;
}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 768px) {

    .janela-foto-principal {
        width: 100% !important;
        height: auto !important;

        min-height: 0 !important;

        padding: 0 !important;
    }


    .janela-foto-principal > img {
        width: 100% !important;
        height: auto !important;

        max-height: none !important;

        object-fit: contain !important;
    }


    .janela-foto-principal .btn-ver-modelos {
        left: 12px !important;
        bottom: 12px !important;

        right: auto !important;

        min-width: 175px !important;

        padding: 12px 14px !important;
    }

}
/* =========================================================
   MODAL - GALERIA DE JANELAS
========================================================= */

.galeria-modal {
    position: fixed;
    inset: 0;

    z-index: 9999999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: 0.3s ease;
}


/* QUANDO ABRE */

.galeria-modal.aberta {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* FUNDO ESCURO */

.galeria-modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(3, 13, 28, 0.90);

    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}


/* CAIXA PRINCIPAL */

.galeria-modal-conteudo {
    position: relative;
    z-index: 2;

    width: min(1100px, 94vw);
    max-height: 92vh;

    padding: 25px;

    background: #071a38;

    display: grid;
    grid-template-columns: 60px 1fr 60px;
    grid-template-rows: auto auto auto;

    align-items: center;

    overflow: hidden;

    box-shadow: 0 30px 80px rgba(0,0,0,0.40);
}


/* FOTO PRINCIPAL */

.galeria-modal-imagem {
    grid-column: 2;
    grid-row: 1;

    height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eef1f5;

    overflow: hidden;
}

.galeria-modal-imagem img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    display: block;
}


/* SETAS */

.galeria-modal-seta {
    width: 48px;
    height: 48px;

    border: 0;

    background: rgba(255,255,255,0.08);
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    font-size: 18px;

    transition: 0.3s ease;
}

.galeria-modal-seta:hover {
    background: #2f78c4;
}

.galeria-modal-anterior {
    grid-column: 1;
    grid-row: 1;

    justify-self: center;
}

.galeria-modal-proxima {
    grid-column: 3;
    grid-row: 1;

    justify-self: center;
}


/* FECHAR */

.galeria-modal-fechar {
    position: absolute;

    top: 15px;
    right: 15px;

    width: 42px;
    height: 42px;

    border: 0;

    background: #ffffff;
    color: #071a38;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 10;

    font-size: 18px;
}


/* INFORMAÇÃO */

.galeria-modal-info {
    grid-column: 2;
    grid-row: 2;

    padding: 18px 0 14px;

    color: #ffffff;
}

.galeria-modal-info span {
    display: block;

    color: #5ca6ed;

    font-size: 8px;
    letter-spacing: 2px;

    margin-bottom: 5px;
}

.galeria-modal-info strong {
    font-size: 14px;
}


/* MINIATURAS */

.galeria-modal-miniaturas {
    grid-column: 2;
    grid-row: 3;

    display: flex;
    gap: 10px;

    overflow-x: auto;

    padding-bottom: 3px;
}

.miniatura-galeria {
    width: 95px;
    height: 70px;

    flex-shrink: 0;

    padding: 0;

    border: 2px solid transparent;

    background: none;

    cursor: pointer;

    overflow: hidden;
}

.miniatura-galeria.ativa {
    border-color: #5ca6ed;
}

.miniatura-galeria img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* MOBILE */

@media (max-width: 768px) {

    .galeria-modal {
        padding: 12px;
    }

    .galeria-modal-conteudo {
        width: 100%;
        max-height: 95vh;

        padding: 15px;

        grid-template-columns: 45px 1fr 45px;
    }

    .galeria-modal-imagem {
        height: 440px;
    }

    .galeria-modal-seta {
        width: 38px;
        height: 38px;
    }

    .galeria-modal-fechar {
        top: 10px;
        right: 10px;

        width: 38px;
        height: 38px;
    }

    .miniatura-galeria {
        width: 75px;
        height: 58px;
    }

}
/* =========================================================
   TRANSIÇÃO DA FOTO DA GALERIA
========================================================= */

.galeria-modal-imagem img {
    transition: opacity 0.25s ease;
}
/* =========================================================
   CORREÇÃO FINAL - FOTOS PORTA PIVOTANTE
   MOSTRAR FOTO INTEIRA E CENTRALIZADA
========================================================= */

.pivotante-modelo img {
    width: 100% !important;
    height: 100% !important;

    object-fit: contain !important;
    object-position: center center !important;

    display: block !important;

    margin: 0 auto !important;
}


/* CAIXA QUE SEGURA A FOTO */

.pivotante-modelo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;
}
/* =========================================================
   CORREÇÃO - PIVOTANTES
   RESTAURA O LAYOUT + CENTRALIZA AS FOTOS
========================================================= */

.pivotante-modelo {
    display: grid !important;
    grid-template-columns: 58% 42% !important;

    align-items: stretch !important;

    overflow: visible !important;
}


/* GALERIA DAS 3 FOTOS */

.pivotante-galeria {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;

    gap: 7px !important;
    padding: 7px !important;

    height: 480px !important;

    overflow: hidden !important;
}


/* CAIXAS DAS FOTOS */

.pivotante-galeria > div {
    width: 100% !important;
    height: 100% !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;

    background: #eef1f5 !important;
}


/* FOTOS INTEIRAS E CENTRALIZADAS */

.pivotante-galeria img {
    width: 100% !important;
    height: 100% !important;

    object-fit: contain !important;
    object-position: center center !important;

    display: block !important;

    margin: auto !important;

    transform: none !important;
}


/* CELULAR */

@media (max-width: 768px) {

    .pivotante-modelo {
        grid-template-columns: 1fr !important;
    }

    .pivotante-galeria {
        grid-template-columns: 1fr !important;
        height: auto !important;
    }

    .pivotante-galeria > div {
        height: 420px !important;
    }

}
/* =========================================================
   PIVOTANTES - 3 FOTOS GRANDES E ALINHADAS
========================================================= */

.pivotante-modelo {
    display: grid !important;
    grid-template-columns: 62% 38% !important;

    align-items: stretch !important;

    overflow: hidden !important;
}


/* GALERIA */

.pivotante-galeria {
    width: 100% !important;
    height: auto !important;

    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;

    gap: 8px !important;

    padding: 8px !important;

    background: #eef1f5 !important;

    align-items: stretch !important;
}


/* MOLDURA DE CADA FOTO */

.pivotante-galeria > div {
    width: 100% !important;
    height: auto !important;

    aspect-ratio: 3 / 4 !important;

    overflow: hidden !important;

    display: block !important;

    background: transparent !important;
}


/* FOTOS */

.pivotante-galeria img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center center !important;

    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: none !important;
}


/* TEXTO DO LADO DIREITO */

.pivotante-content {
    height: 100% !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;

    box-sizing: border-box !important;
}
/* =========================================================
   PIVOTANTE - AJUSTE SOMENTE FOTO 2
========================================================= */

.pivotante-galeria > div:nth-child(2) img {
    object-fit: cover !important;

    /* prioriza o lado esquerdo da foto */
    object-position: 30% center !important;
}
/* =========================================================
   JANELA COM GRADE - TAMANHO DA FOTO PRINCIPAL
========================================================= */

.janela-grade-principal {
    height: 520px !important;
}

.janela-grade-principal > img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center !important;
}


/* CELULAR */

@media (max-width: 768px) {

    .janela-grade-principal {
        height: 420px !important;
    }

}
/* =========================================================
   JANELA COM GRADE - SEM CORTAR E SEM ZOOM
========================================================= */

.janela-grade-principal {
    height: 500px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: #eef1f5 !important;

    padding: 20px !important;

    overflow: hidden !important;
}

.janela-grade-principal > img {
    width: auto !important;
    height: auto !important;

    max-width: 92% !important;
    max-height: 460px !important;

    object-fit: contain !important;
    object-position: center !important;

    display: block !important;

    margin: auto !important;

    transform: none !important;
}


/* BOTÃO CONTINUA NO CANTO */

.janela-grade-principal .btn-ver-modelos {
    left: 20px !important;
    bottom: 20px !important;
}


/* CELULAR */

@media (max-width: 768px) {

    .janela-grade-principal {
        height: 400px !important;
        padding: 15px !important;
    }

    .janela-grade-principal > img {
        max-width: 95% !important;
        max-height: 360px !important;
    }

}
/* =========================================================
   PORTA PIVOTANTE - FOTO PRINCIPAL
========================================================= */

.pivotante-foto-principal {
    position: relative !important;

    height: 560px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 20px !important;

    background: #eef1f5 !important;

    overflow: hidden !important;
}


.pivotante-foto-principal > img {
    width: auto !important;
    height: auto !important;

    max-width: 94% !important;
    max-height: 520px !important;

    object-fit: contain !important;
    object-position: center !important;

    display: block !important;
    margin: auto !important;

    transform: none !important;
}


/* BOTÃO */

.pivotante-foto-principal .btn-ver-modelos {
    position: absolute !important;

    left: 20px !important;
    bottom: 20px !important;

    right: auto !important;
    top: auto !important;

    z-index: 10 !important;
}


/* CELULAR */

@media (max-width: 768px) {

    .pivotante-foto-principal {
        height: 430px !important;
        padding: 15px !important;
    }

    .pivotante-foto-principal > img {
        max-width: 95% !important;
        max-height: 390px !important;
    }

}
/* =========================================================
   MOBILE - GALERIA PORTAS DE GIRO SEM CORTAR
========================================================= */

@media (max-width: 768px) {

    .giro-galeria-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;

        height: auto !important;
    }


    .giro-galeria-item,
    .giro-galeria-alta {
        width: 100% !important;

        height: auto !important;
        min-height: 0 !important;

        aspect-ratio: auto !important;

        margin: 0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        background: #132844 !important;

        overflow: hidden !important;
    }


    .giro-galeria-item img,
    .giro-galeria-alta img {
        width: 100% !important;
        height: auto !important;

        max-width: 100% !important;
        max-height: none !important;

        object-fit: contain !important;
        object-position: center !important;

        display: block !important;

        margin: 0 auto !important;

        transform: none !important;
    }

}
/* =========================================================
   PORTAS DE GIRO - FOTO PRINCIPAL + VER MODELOS
========================================================= */

.giro-foto-principal {
    position: relative !important;

    width: 100% !important;
    min-height: 520px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 20px !important;

    background: #eef1f5 !important;

    overflow: hidden !important;
}

.giro-foto-principal > img {
    width: auto !important;
    height: auto !important;

    max-width: 95% !important;
    max-height: 480px !important;

    object-fit: contain !important;
    object-position: center !important;

    display: block !important;
    margin: auto !important;
}

.giro-foto-principal .btn-ver-modelos {
    position: absolute !important;

    left: 20px !important;
    bottom: 20px !important;

    z-index: 10 !important;
}

@media (max-width: 768px) {

    .giro-foto-principal {
        min-height: 400px !important;
        padding: 15px !important;
    }

    .giro-foto-principal > img {
        max-width: 95% !important;
        max-height: 360px !important;
    }

}
/* =========================================================
   CORREÇÃO FINAL - PORTAS DE GIRO
   NÃO ESTICAR AS FOTOS
========================================================= */

.giro-foto-principal {
    position: relative !important;

    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;

    padding: 0 !important;

    display: block !important;

    overflow: hidden !important;
    background: #eef1f5 !important;
}


/* FOTO SEM DEFORMAR */

.giro-foto-principal > img {
    display: block !important;

    width: 100% !important;
    height: auto !important;

    max-width: 100% !important;
    max-height: none !important;

    object-fit: contain !important;
    object-position: center !important;

    margin: 0 auto !important;
    padding: 0 !important;

    transform: none !important;
}


/* BOTÃO VER MODELOS */

.giro-foto-principal .btn-ver-modelos {
    position: absolute !important;

    left: 20px !important;
    bottom: 20px !important;

    top: auto !important;
    right: auto !important;

    z-index: 10 !important;
}


/* =========================
   CELULAR
========================= */

@media (max-width: 768px) {

    .giro-foto-principal {
        width: 100% !important;
        height: auto !important;
    }

    .giro-foto-principal > img {
        width: 100% !important;
        height: auto !important;

        object-fit: contain !important;
    }

    .giro-foto-principal .btn-ver-modelos {
        left: 12px !important;
        bottom: 12px !important;
    }

}
/* =========================================================
   PORTAS DE GIRO - DIMINUIR FOTO SEM CORTAR
========================================================= */

.giro-foto-principal {
    position: relative !important;

    width: 100% !important;
    height: 520px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: #eef1f5 !important;
    overflow: hidden !important;

    padding: 15px !important;
}


.giro-foto-principal > img {
    width: auto !important;
    height: auto !important;

    max-width: 90% !important;
    max-height: 490px !important;

    object-fit: contain !important;

    display: block !important;
    margin: auto !important;
}


/* BOTÃO */

.giro-foto-principal .btn-ver-modelos {
    position: absolute !important;
    left: 15px !important;
    bottom: 15px !important;
    z-index: 10 !important;
}


/* CELULAR */

@media (max-width: 768px) {

    .giro-foto-principal {
        height: 400px !important;
        padding: 12px !important;
    }

    .giro-foto-principal > img {
        max-width: 90% !important;
        max-height: 370px !important;
    }

}