/* =========================================================
   QUENTE E FRIO
   STYLE.CSS GERAL
========================================================= */


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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #FFFFFF;
    color: #222222;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button,
input,
textarea {
    font-family: inherit;
}

button {
    border: 0;
}


/* =========================================================
   VARIÁVEIS
========================================================= */

:root {
    --azul: #4A90E2;
    --azul-escuro: #2875C7;
    --azul-muito-escuro: #173B72;
    --azul-claro: #EEF6FF;
    --azul-extra-claro: #F6FAFE;

    --branco: #FFFFFF;
    --preto: #1D1D1D;

    --cinza: #666666;
    --cinza-texto: #5C6671;
    --cinza-claro: #F6F8FA;

    --borda: #E5E9EF;
}


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

.container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}


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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 46px;

    padding: 14px 26px;

    border-radius: 7px;

    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.btn svg {
    flex-shrink: 0;
}

.btn-primary {
    background: var(--azul);
    color: #FFFFFF;
}

.btn-primary:hover {
    background: var(--azul-escuro);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--azul);
    border: 1px solid var(--azul);
}

.btn-white {
    background: #FFFFFF;
    color: var(--azul-escuro);

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.08);
}

.btn-white:hover {
    background: #F4F8FC;
    transform: translateY(-2px);
}


/* =========================================================
   TAG DE SEÇÃO
========================================================= */

.section-tag {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--azul);

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

    letter-spacing: 1.5px;
}


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

.header {
    height: 110px;

    display: flex;
    align-items: center;

    position: relative;
    z-index: 1000;

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

    border-bottom:
        1px solid rgba(0, 0, 0, 0.06);

    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.025);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


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

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

    flex-shrink: 0;
}

.logo img {
    width: 300px;
    height: auto;
}


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

.nav {
    display: flex;
    align-items: center;

    gap: 32px;
}

.nav a {
    position: relative;

    color: #333333;

    font-size: 14px;
    font-weight: 500;

    transition:
        color 0.25s ease;
}

.nav a:hover,
.nav a.active {
    color: var(--azul);
}

.nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 100%;
    height: 2px;

    background: var(--azul);

    border-radius: 20px;
}


/* =========================================================
   MENU SUSPENSO - PRODUTOS
========================================================= */

.nav-dropdown {
    position: relative;

    display: flex;
    align-items: center;
}

.nav-dropdown summary {
    position: relative;

    display: flex;
    align-items: center;

    gap: 6px;

    list-style: none;

    color: #333333;

    font-size: 14px;
    font-weight: 500;

    cursor: pointer;

    user-select: none;

    transition:
        color 0.25s ease;
}

.nav-dropdown summary::-webkit-details-marker {
    display: none;
}

.nav-dropdown summary::after {
    content: "";

    width: 7px;
    height: 7px;

    margin-top: -4px;

    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;

    transform:
        rotate(45deg);

    transition:
        transform 0.2s ease;
}

.nav-dropdown[open] summary::after {
    margin-top: 3px;

    transform:
        rotate(225deg);
}

.nav-dropdown summary:hover,
.nav-dropdown summary.active,
.nav-dropdown[open] > summary {
    color: var(--azul);
}

.nav-dropdown summary.active::before {
    content: "";

    position: absolute;

    left: 0;
    right: 13px;
    bottom: -8px;

    height: 2px;

    background: var(--azul);

    border-radius: 20px;
}

.nav-dropdown-menu {
    position: absolute;

    top: calc(100% + 18px);
    left: 50%;

    z-index: 1200;

    width: 235px;

    padding: 8px;

    display: none;

    background: #FFFFFF;

    border:
        1px solid #E2EAF2;

    border-radius: 11px;

    box-shadow:
        0 14px 34px rgba(21, 61, 101, 0.14);

    transform:
        translateX(-50%);
}

.nav-dropdown[open] .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu::before {
    content: "";

    position: absolute;

    top: -7px;
    left: 50%;

    width: 13px;
    height: 13px;

    background: #FFFFFF;

    border-top:
        1px solid #E2EAF2;

    border-left:
        1px solid #E2EAF2;

    transform:
        translateX(-50%)
        rotate(45deg);
}

.nav .nav-dropdown-menu a {
    position: relative;

    width: 100%;

    padding: 11px 12px;

    display: flex;
    align-items: center;

    color: #465665;

    border-radius: 7px;

    font-size: 13px;
    font-weight: 500;

    line-height: 1.3;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.nav .nav-dropdown-menu a:hover {
    background: #EEF6FF;

    color: var(--azul-escuro);

    transform:
        translateX(2px);
}

.nav .nav-dropdown-menu a::after {
    display: none;
}

.anchor-alias {
    position: relative;

    display: block;

    height: 0;

    visibility: hidden;

    scroll-margin-top: 110px;
}


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

.btn-header {
    padding: 12px 22px;

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

    border-radius: 7px;

    flex-shrink: 0;

    box-shadow:
        0 5px 14px rgba(74, 144, 226, 0.20);
}

.btn-header:hover {
    background: var(--azul-escuro);
    transform: translateY(-1px);
}


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

.menu-mobile {
    display: none;

    background: transparent;
    color: #222222;

    font-size: 28px;

    cursor: pointer;
}


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


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

.hero {
    position: relative;

    min-height: 590px;

    display: flex;
    align-items: center;

    overflow: hidden;

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

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.68) 0%,
            rgba(0, 0, 0, 0.50) 38%,
            rgba(0, 0, 0, 0.24) 68%,
            rgba(0, 0, 0, 0.12) 100%
        );
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    width: 100%;
}

.hero h1 {
    max-width: 760px;

    margin-bottom: 22px;

    color: #FFFFFF;

    font-size:
        clamp(42px, 4.5vw, 60px);

    font-weight: 700;

    line-height: 1.04;

    letter-spacing: -1.5px;
}

.hero h1 span,
.hero h1 strong {
    display: block;
}

.hero h1 strong {
    color: var(--azul);
}

.hero p {
    max-width: 650px;

    margin-bottom: 30px;

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

    font-size: 16px;

    line-height: 1.6;
}


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

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;
}

.hero-buttons .btn {
    min-height: 54px;
}

.whatsapp-btn {
    box-shadow:
        0 8px 22px rgba(40, 117, 199, 0.28);
}

.whatsapp-icon,
.maintenance-icon {
    width: 20px;
    height: 20px;
}

.maintenance-btn {
    background:
        rgba(0, 0, 0, 0.16);

    color: #FFFFFF;

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

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.maintenance-btn:hover {
    background:
        rgba(255, 255, 255, 0.12);

    border-color: #FFFFFF;

    transform:
        translateY(-2px);
}


/* =========================================================
   HERO FEATURES
========================================================= */

.hero-features {
    display: grid;

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

    width: 100%;
    max-width: 930px;

    margin-top: 42px;

    padding: 20px 0;

    overflow: hidden;

    background:
        rgba(7, 42, 72, 0.82);

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

    border-radius: 12px;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-feature {
    display: flex;
    align-items: center;

    gap: 14px;

    min-height: 50px;

    padding: 0 26px;

    border-right:
        1px solid rgba(255, 255, 255, 0.17);
}

.hero-feature:last-child {
    border-right: none;
}

.feature-icon {
    width: 32px;
    min-width: 32px;
}

.feature-icon svg {
    width: 27px;
    height: 27px;

    stroke: #FFFFFF;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text strong {
    color: #FFFFFF;
    font-size: 13px;
}

.feature-text span {
    margin-top: 3px;

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

    font-size: 12px;
}


/* =========================================================
   SOLUÇÕES RÁPIDAS
========================================================= */






























/* =========================================================
   CORREÇÃO CARD AQUECIMENTO
========================================================= */










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




































/* =========================================================
   PRODUTOS HOME
========================================================= */

.nautilus-products {
    padding: 85px 0 90px;

    background: #FFFFFF;
}


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

.nautilus-carousel-wrapper {
    position: relative;

    width: 100%;

    padding: 0 52px;
}

.nautilus-carousel {
    display: flex;

    gap: 18px;

    padding: 8px 3px 20px;

    overflow-x: auto;

    scroll-behavior: smooth;

    scroll-snap-type:
        x mandatory;

    scrollbar-width: none;
}

.nautilus-carousel::-webkit-scrollbar {
    display: none;
}

.nautilus-slide {
    flex:
        0 0 calc((100% - 54px) / 4);

    min-width: 0;
    min-height: 300px;

    padding: 20px 16px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    scroll-snap-align: start;

    background: #FFFFFF;

    border:
        1px solid #DCE8F5;

    border-radius: 14px;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.nautilus-slide:hover {
    transform:
        translateY(-5px);

    border-color: #B9D6F3;

    box-shadow:
        0 12px 28px rgba(24, 73, 120, 0.10);
}

.nautilus-slide-image {
    width: 100%;
    height: 185px;

    margin-bottom: 16px;

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

.nautilus-slide-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition:
        transform 0.3s ease;
}

.nautilus-slide:hover
.nautilus-slide-image img {
    transform:
        scale(1.04);
}

.nautilus-slide h3 {
    margin-top: auto;

    color: #173B72;

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

    line-height: 1.25;
}

.product-type {
    display: block;

    margin-top: 7px;

    color: #697786;

    font-size: 12px;

    line-height: 1.35;
}


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

.carousel-arrow {
    position: absolute;

    top: 50%;

    z-index: 10;

    width: 44px;
    height: 44px;

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

    background: #FFFFFF;

    color: var(--azul-escuro);

    border:
        1px solid #D9E6F3;

    border-radius: 50%;

    cursor: pointer;

    transform:
        translateY(-50%);

    box-shadow:
        0 5px 16px rgba(24, 73, 120, 0.12);

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.carousel-arrow:hover {
    background: var(--azul);

    color: #FFFFFF;

    transform:
        translateY(-50%)
        scale(1.06);
}

.carousel-arrow svg {
    width: 23px;
    height: 23px;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}


/* =========================================================
   MARCAS
========================================================= */

.brands-section {
    margin: 0;

    padding: 32px 28px 24px;

    background:
        linear-gradient(
            180deg,
            #F8FBFE 0%,
            #F2F7FC 100%
        );

    border:
        1px solid #E0EAF4;

    border-radius: 14px;
}

.brands-heading {
    max-width: 650px;

    margin: 0 auto 26px;

    text-align: center;
}

.brands-label {
    display: block;

    margin-bottom: 6px;

    color: var(--azul-escuro);

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

    letter-spacing: 0.9px;
}

.brands-heading h3 {
    margin-bottom: 7px;

    color: #22384F;

    font-size: 20px;

    line-height: 1.3;
}

.brands-heading p {
    color: #71808E;
    font-size: 12px;
}

.brands-grid {
    display: grid;

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

    gap: 14px;
}

.brand-card {
    height: 100px;

    padding: 16px 20px;

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

    background: #FFFFFF;

    border:
        1px solid #DFE8F1;

    border-radius: 10px;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.brand-card:hover {
    transform:
        translateY(-3px);

    border-color: #BFD7EF;

    box-shadow:
        0 8px 20px rgba(24, 73, 120, 0.08);
}

.brand-card img {
    width: 100%;
    height: 100%;

    max-width: 150px;
    max-height: 60px;

    object-fit: contain;
}


/* =========================================================
   SECTION HEADING
========================================================= */


/* =========================================================
   SERVIÇOS
========================================================= */


/* =========================================================
   ASSISTÊNCIA HOME
========================================================= */


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


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


/* =========================================================
   HERO PRODUTOS
========================================================= */


/* =========================================================
   CATÁLOGO
========================================================= */


/* =========================================================
   ABAS PRINCIPAIS
========================================================= */


/* =========================================================
   PAINÉIS PRINCIPAIS
========================================================= */


/* =========================================================
   CABEÇALHO DO CATÁLOGO
========================================================= */


/* =========================================================
   ABAS DAS LINHAS
========================================================= */


/* =========================================================
   AVISO SOBRE VALORES
========================================================= */


/* =========================================================
   PAINÉIS DAS LINHAS
========================================================= */


/* =========================================================
   CABEÇALHO DA LINHA
========================================================= */


/* =========================================================
   DESCRIÇÃO COMPLETA DAS LINHAS
========================================================= */


/* =========================================================
   BADGE EQUIPAMENTO NOVO
========================================================= */


/* =========================================================
   GRID DE PRODUTOS
========================================================= */


/* =========================================================
   CARD PRODUTO
========================================================= */


/* =========================================================
   IMAGEM DO PRODUTO
========================================================= */


/* =========================================================
   AJUSTE ESPECÍFICO - TERMA PLATINUM

   A imagem original da Platinum possui mais espaço vazio
   ao redor do equipamento. Por isso aumentamos apenas
   as imagens da linha Platinum.
========================================================= */


/* =========================================================
   CONTEÚDO DO CARD
========================================================= */


/* =========================================================
   ALIMENTAÇÃO ELÉTRICA
========================================================= */


/* =========================================================
   VALOR SOB CONSULTA
========================================================= */


/* =========================================================
   EQUIPAMENTOS REFORMADOS
========================================================= */


/* =========================================================
   CONSULTA DE REFORMADOS
========================================================= */


/* =========================================================
   AJUDA / DIMENSIONAMENTO
========================================================= */


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

.footer {
    background: #101820;

    color: #FFFFFF;
}

.footer-container {
    padding: 68px 0 58px;

    display: grid;

    grid-template-columns:
        1.45fr 0.70fr 1.25fr;

    align-items: start;

    gap: 65px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer .footer-logo {
    display: inline-flex;
    align-items: center;

    margin-bottom: 22px;
}

.footer .footer-logo img {
    width: 380px;

    max-width: 100%;
    height: auto;
}

.footer-brand > p {
    max-width: 390px;

    margin: 0;

    color: #AEB7C2;

    font-size: 14px;

    line-height: 1.75;
}

.footer h3 {
    margin-bottom: 22px;

    color: #FFFFFF;

    font-size: 16px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-direction: column;

    gap: 11px;
}

.footer-links a {
    width: fit-content;

    color: #AEB7C2;

    font-size: 14px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-links a:hover {
    color: var(--azul);

    transform:
        translateX(3px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-info-list {
    display: flex;
    flex-direction: column;

    gap: 18px;
}

.footer-info-item {
    display: flex;
    align-items: flex-start;

    gap: 12px;
}

.footer-info-icon {
    width: 34px;
    height: 34px;

    min-width: 34px;

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

    margin-top: 1px;

    background:
        rgba(74, 144, 226, 0.10);

    border:
        1px solid rgba(74, 144, 226, 0.18);

    border-radius: 8px;
}

.footer-info-icon svg {
    width: 17px;
    height: 17px;

    stroke: #5DA1EA;
}

.footer-info-text {
    display: flex;
    flex-direction: column;

    min-width: 0;
}

.footer-info-text strong {
    margin-bottom: 2px;

    color: #FFFFFF;

    font-size: 12px;
    font-weight: 600;
}

.footer-info-text span,
.footer-info-text a {
    color: #AEB7C2;

    font-size: 13px;

    line-height: 1.55;
}

.footer-info-text a {
    transition:
        color 0.25s ease;
}

.footer-info-text a:hover {
    color: var(--azul);
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    width: fit-content;

    margin-top: 25px;

    padding: 11px 17px;

    background: var(--azul);

    color: #FFFFFF;

    border-radius: 7px;

    font-size: 13px;
    font-weight: 600;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.footer-whatsapp svg {
    width: 17px;
    height: 17px;
}

.footer-whatsapp:hover {
    background: var(--azul-escuro);

    transform:
        translateY(-2px);
}

.footer-bottom {
    padding: 20px 0;

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

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom p {
    color: #7F8995;

    font-size: 12px;

    line-height: 1.5;

    text-align: center;
}


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


/* =========================================================
   ATÉ 1100PX
========================================================= */

@media (max-width: 1100px) {

    .header-container {
        gap: 20px;
    }

    .nav {
        gap: 20px;
    }

    .logo img {
        width: 255px;
    }

}


/* =========================================================
   ATÉ 1000PX
========================================================= */

@media (max-width: 1000px) {

    .nav {
        gap: 16px;
    }

    .nav a {
        font-size: 13px;
    }

    .nav-dropdown summary {
        font-size: 13px;
    }


    /* HOME */

    .hero-features {
        max-width: 100%;
    }

    .nautilus-slide {
        flex:
            0 0 calc((100% - 36px) / 3);
    }

    .brands-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }


    /* PRODUTOS */


    /* FOOTER */

    .footer-container {
        grid-template-columns:
            1.2fr 0.75fr 1.15fr;

        gap: 38px;
    }

    .footer .footer-logo img {
        width: 330px;
    }

}


/* =========================================================
   ATÉ 900PX
========================================================= */

@media (max-width: 900px) {

    /* HEADER */

    .header {
        height: 72px;
    }

    .header-container {
        width: 92%;
    }

    .logo img {
        width: 235px;
    }

    .nav,
    .btn-header {
        display: none;
    }

    .menu-mobile {
        display: block;
    }


    /* MENU MOBILE ABERTO */

    .nav.active {
        display: flex;

        position: absolute;

        top: 72px;
        left: 0;

        width: 100%;

        flex-direction: column;
        align-items: flex-start;

        gap: 0;

        padding: 15px 4% 20px;

        background: #FFFFFF;

        border-bottom:
            1px solid var(--borda);

        box-shadow:
            0 10px 20px rgba(0, 0, 0, 0.08);
    }

    .nav.active a {
        width: 100%;

        padding: 14px 0;

        font-size: 15px;
    }

    .nav.active a.active::after {
        display: none;
    }


    /* MENU SUSPENSO NO MOBILE */

    .nav.active .nav-dropdown {
        width: 100%;

        display: block;
    }

    .nav.active .nav-dropdown summary {
        width: 100%;

        padding: 14px 0;

        justify-content: space-between;

        font-size: 15px;
    }

    .nav.active .nav-dropdown summary.active::before {
        display: none;
    }

    .nav.active .nav-dropdown-menu {
        position: static;

        width: 100%;

        padding:
            2px 0 8px 14px;

        background: transparent;

        border: 0;

        border-radius: 0;

        box-shadow: none;

        transform: none;
    }

    .nav.active .nav-dropdown-menu::before {
        display: none;
    }

    .nav.active .nav-dropdown-menu a {
        padding: 11px 13px;

        color: #5A6876;

        border-left:
            2px solid #DCE8F4;

        border-radius:
            0 7px 7px 0;

        font-size: 14px;
    }

    .nav.active .nav-dropdown-menu a:hover {
        background: #F3F8FD;

        color: var(--azul-escuro);

        border-left-color:
            var(--azul);
    }


    /* HOME */

    .hero {
        min-height: auto;

        padding: 70px 0 55px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.72),
                rgba(0, 0, 0, 0.48)
            );
    }

    .hero-features {
        grid-template-columns:
            1fr;

        max-width: 580px;

        padding: 6px 0;
    }

    .hero-feature {
        padding: 14px 20px;

        border-right: none;

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

    .hero-feature:last-child {
        border-bottom: none;
    }

    .nautilus-carousel-wrapper {
        padding: 0 42px;
    }

    .nautilus-slide {
        flex:
            0 0 calc((100% - 18px) / 2);
    }


    /* PRODUTOS */


    /* FOOTER */

    .footer-container {
        grid-template-columns:
            1fr 1fr;

        gap:
            45px 50px;

        padding: 58px 0 48px;
    }

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

    .footer .footer-logo img {
        width: 320px;
    }

    .footer-brand > p {
        max-width: 520px;
    }

}


/* =========================================================
   ATÉ 650PX
========================================================= */


/* =========================================================
   ATÉ 550PX
========================================================= */

@media (max-width: 550px) {

    .container {
        width: 92%;
    }


    /* HEADER */

    .logo img {
        width: 210px;
    }


    /* HOME HERO */

    .hero {
        padding: 55px 0 45px;
    }

    .hero h1 {
        font-size: 36px;

        line-height: 1.08;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-features {
        margin-top: 30px;
    }


    /* QUICK CARDS */


    /* QUEM SOMOS */


    /* PRODUTOS HOME */

    .nautilus-products {
        padding: 60px 0 70px;
    }

    .nautilus-carousel-wrapper {
        padding: 0 28px;
    }

    .nautilus-carousel {
        gap: 12px;
    }

    .nautilus-slide {
        flex:
            0 0 88%;

        min-height: 315px;
    }

    .nautilus-slide-image {
        height: 195px;
    }

    .nautilus-slide h3 {
        font-size: 17px;
    }

    .carousel-arrow {
        width: 34px;
        height: 34px;
    }

    .carousel-arrow svg {
        width: 19px;
        height: 19px;
    }


    /* MARCAS */

    .brands-section {
        padding: 24px 15px 20px;
    }

    .brands-heading h3 {
        font-size: 18px;
    }

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

        gap: 9px;
    }

    .brand-card {
        height: 82px;

        padding: 12px;
    }

    .brand-card img {
        max-width: 110px;
        max-height: 48px;
    }


    /* SERVIÇOS */


    /* ASSISTÊNCIA */


    /* CTA */


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


    /* ABAS PRINCIPAIS */


    /* CABEÇALHO CATÁLOGO */


    /* ABAS DAS LINHAS */


    /* AVISO DE PREÇO */


    /* DESCRIÇÃO DA LINHA */


    /* CARD PRODUTO */


    /* ALIMENTAÇÃO ELÉTRICA */


    /* VALOR */


    /* REFORMADOS */


    /* DIMENSIONAMENTO */


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

    .footer-container {
        grid-template-columns:
            1fr;

        gap: 38px;

        padding: 50px 0 42px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer .footer-logo {
        margin-bottom: 18px;
    }

    .footer .footer-logo img {
        width: 280px;
    }

    .footer-brand > p {
        max-width: 100%;

        font-size: 13px;
    }

    .footer h3 {
        margin-bottom: 17px;
    }

    .footer-info-list {
        gap: 16px;
    }

    .footer-info-text span,
    .footer-info-text a {
        font-size: 13px;
    }

    .footer-whatsapp {
        width: 100%;

        margin-top: 22px;
    }

    .footer-bottom {
        padding: 18px 0;
    }

    .footer-bottom p {
        font-size: 11px;
    }

}


/* =========================================================
   =========================================================
   NOVA PÁGINA DE PRODUTOS
   Compatível com o produtos.html reorganizado em:
   1) Aquecimento
   2) Automação
   3) Filtração
   =========================================================
========================================================= */


/* =========================================================
   HERO PRODUTOS - NOVA ESTRUTURA
========================================================= */

.produtos-hero {
    padding: 88px 0 78px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #F4F9FE 0%,
            #E8F3FD 100%
        );

    border-bottom:
        1px solid #DCE8F4;
}

.produtos-hero .container {
    max-width: 850px;
}

.produtos-hero .section-tag {
    margin-bottom: 13px;
}

.produtos-hero h1 {
    max-width: 780px;

    margin: 0 auto 18px;

    color: #1D1D1D;

    font-size:
        clamp(40px, 5vw, 56px);

    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -1.2px;
}

.produtos-hero p {
    max-width: 700px;

    margin: 0 auto;

    color: #5C6671;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================================
   CATEGORIAS PRINCIPAIS
========================================================= */


/* =========================================================
   CARD DE CATEGORIA
========================================================= */


/* =========================================================
   SEÇÕES DAS CATEGORIAS
========================================================= */

.categoria-secao {
    padding: 92px 0 98px;

    scroll-margin-top: 110px;

    background: #FFFFFF;
}

.categoria-secao-alt {
    background:
        linear-gradient(
            180deg,
            #F8FBFE 0%,
            #F4F8FC 100%
        );

    border-top:
        1px solid #E7EEF5;

    border-bottom:
        1px solid #E7EEF5;
}


/* =========================================================
   CABEÇALHO DAS CATEGORIAS
========================================================= */

.section-header {
    max-width: 740px;

    margin: 0 auto 46px;

    text-align: center;
}

.section-header .section-tag {
    margin-bottom: 9px;
}

.section-header h2 {
    margin-bottom: 14px;

    color: #1D1D1D;

    font-size:
        clamp(32px, 4vw, 44px);

    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -0.7px;
}

.section-header p {
    max-width: 660px;

    margin: 0 auto;

    color: #687684;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   GRID DOS PRODUTOS
========================================================= */

.produtos-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));

    gap: 24px;

    align-items: stretch;
}


/* =========================================================
   CARD DE PRODUTO
========================================================= */

.produto-card {
    min-width: 0;

    overflow: hidden;

    display: flex;
    flex-direction: column;

    background: #FFFFFF;

    border:
        1px solid #DDE7F0;

    border-radius: 14px;

    box-shadow:
        0 7px 22px rgba(26, 68, 106, 0.05);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.produto-card:hover {
    transform:
        translateY(-5px);

    border-color: #BBD5ED;

    box-shadow:
        0 15px 34px rgba(26, 68, 106, 0.10);
}


/* =========================================================
   IMAGEM DO PRODUTO
========================================================= */

.produto-imagem {
    position: relative;

    width: 100%;
    height: 275px;

    padding: 27px;

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

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #FCFDFE 0%,
            #F2F7FC 100%
        );

    border-bottom:
        1px solid #E8EFF5;
}

.produto-imagem img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition:
        transform 0.3s ease;
}

.produto-card:hover .produto-imagem img {
    transform:
        scale(1.04);
}


/* =========================================================
   CONTEÚDO DO PRODUTO
========================================================= */

.produto-conteudo {
    flex: 1;

    padding: 24px 22px 23px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.produto-categoria {
    display: block;

    margin-bottom: 7px;

    color: var(--azul-escuro);

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

    letter-spacing: 0.9px;

    text-transform: uppercase;
}

.produto-conteudo h3 {
    margin-bottom: 10px;

    color: #203B5C;

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

    line-height: 1.25;
}

.produto-conteudo p {
    margin-bottom: 23px;

    color: #687887;

    font-size: 14px;

    line-height: 1.68;
}


/* =========================================================
   BOTÃO DO PRODUTO
========================================================= */

.btn-produto {
    width: 100%;
    min-height: 45px;

    margin-top: auto;

    padding: 12px 17px;

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

    background: var(--azul);

    color: #FFFFFF;

    border-radius: 7px;

    font-size: 13px;
    font-weight: 600;

    line-height: 1.2;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.btn-produto:hover {
    background: var(--azul-escuro);

    transform:
        translateY(-1px);

    box-shadow:
        0 7px 18px rgba(40, 117, 199, 0.20);
}


/* =========================================================
   CTA DA PÁGINA PRODUTOS
========================================================= */

.produtos-cta {
    padding: 74px 0;

    background:
        linear-gradient(
            135deg,
            #2875C7,
            #4A90E2
        );

    color: #FFFFFF;
}

.produtos-cta .cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 45px;
}

.produtos-cta .cta-content > div {
    max-width: 700px;
}

.produtos-cta .section-tag {
    margin-bottom: 9px;

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

.produtos-cta h2 {
    max-width: 680px;

    margin-bottom: 12px;

    color: #FFFFFF;

    font-size:
        clamp(31px, 4vw, 43px);

    line-height: 1.15;
}

.produtos-cta p {
    max-width: 620px;

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

    font-size: 15px;

    line-height: 1.7;
}

.produtos-cta .btn-primary {
    min-height: 50px;

    flex-shrink: 0;

    padding: 14px 23px;

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

    background: #FFFFFF;

    color: var(--azul-escuro);

    border-radius: 7px;

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

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.08);

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.produtos-cta .btn-primary:hover {
    background: #F4F8FC;

    color: var(--azul-muito-escuro);

    transform:
        translateY(-2px);
}


/* =========================================================
   FOOTER - COMPATIBILIDADE COM O NOVO PRODUTOS.HTML
========================================================= */


/* =========================================================
   RESPONSIVO - NOVA PÁGINA PRODUTOS
========================================================= */

@media (max-width: 1000px) {

    .produtos-hero {
        padding: 72px 0 62px;
    }

    .categoria-secao {
        padding: 78px 0 82px;
    }

    .produtos-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .produtos-cta .cta-content {
        gap: 30px;
    }

}


@media (max-width: 800px) {

    .produtos-hero {
        padding: 58px 0 50px;
    }

    .produtos-hero h1 {
        font-size: 38px;
    }

    .produtos-hero p {
        font-size: 15px;
    }

    .categoria-secao {
        padding: 68px 0 72px;

        scroll-margin-top: 72px;
    }

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

    .produtos-cta {
        padding: 60px 0;
    }

    .produtos-cta .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .produtos-cta .btn-primary {
        width: 100%;
    }

}


@media (max-width: 650px) {

    .produtos-hero {
        padding: 50px 0 44px;
    }

    .produtos-hero h1 {
        font-size: 34px;

        line-height: 1.1;
    }

    .produtos-hero p {
        font-size: 14px;
    }

    .categoria-secao {
        padding: 60px 0 64px;
    }

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

    .section-header h2 {
        font-size: 30px;
    }

    .section-header p {
        font-size: 14px;
    }

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

    .produto-imagem {
        height: 300px;

        padding: 24px;
    }

    .produto-conteudo {
        padding: 22px 20px;
    }

    .produto-conteudo h3 {
        font-size: 20px;
    }

    .produtos-cta h2 {
        font-size: 30px;
    }

    .produtos-cta p {
        font-size: 14px;
    }

}


@media (max-width: 450px) {

    .produtos-hero h1 {
        font-size: 31px;
    }

    .produto-imagem {
        height: 265px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .produtos-cta h2 {
        font-size: 28px;
    }

}


/* =========================================================
   AJUSTE PÁGINA PRODUTOS - SEM CARDS DE CATEGORIAS
========================================================= */

.categoria-secao-primeira {
    padding-top: 75px;
}

@media (max-width: 650px) {
    .categoria-secao-primeira {
        padding-top: 55px;
    }
}


/* =========================================================
   =========================================================
   PÁGINA TERMA NAUTILUS
   =========================================================
========================================================= */


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

.terma-page-hero {
    padding: 56px 0 64px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #F4F9FE 0%,
            #E8F3FD 100%
        );

    border-bottom:
        1px solid #DCE8F4;
}

.terma-page-hero-container {
    max-width: 900px;
}

.terma-breadcrumb {
    margin-bottom: 28px;

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

    gap: 9px;

    color: #73808E;

    font-size: 12px;
}

.terma-breadcrumb a {
    transition:
        color 0.2s ease;
}

.terma-breadcrumb a:hover {
    color: var(--azul-escuro);
}

.terma-breadcrumb strong {
    color: #415366;
    font-weight: 600;
}

.terma-page-hero h1 {
    margin-bottom: 18px;

    color: #1D1D1D;

    font-size:
        clamp(42px, 5vw, 58px);

    line-height: 1.08;

    letter-spacing: -1.3px;
}

.terma-page-hero p {
    max-width: 700px;

    margin: 0 auto;

    color: #5C6671;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================================
   INTRO
========================================================= */

.terma-intro {
    padding: 85px 0;

    background: #FFFFFF;
}

.terma-intro-container {
    display: grid;

    grid-template-columns:
        0.88fr 1.12fr;

    align-items: center;

    gap: 80px;
}

.terma-intro-image {
    min-height: 440px;

    padding: 48px;

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

    background:
        linear-gradient(
            145deg,
            #F8FBFE,
            #EDF5FC
        );

    border:
        1px solid #DFEAF4;

    border-radius: 18px;

    box-shadow:
        0 18px 45px rgba(23, 59, 114, 0.08);
}

.terma-intro-image img {
    width: 100%;
    height: 100%;

    max-height: 360px;

    object-fit: contain;
}

.terma-intro-content h2 {
    max-width: 620px;

    margin-bottom: 20px;

    color: #1F3550;

    font-size:
        clamp(32px, 4vw, 44px);

    line-height: 1.12;

    letter-spacing: -0.8px;
}

.terma-intro-content > p {
    max-width: 650px;

    margin-bottom: 16px;

    color: #5F6E7E;

    font-size: 15px;

    line-height: 1.75;
}

.terma-intro-features {
    margin-top: 30px;

    display: grid;

    gap: 13px;
}

.terma-intro-feature {
    padding: 13px 15px;

    display: flex;
    align-items: center;

    gap: 13px;

    background: #F8FBFE;

    border:
        1px solid #E2EBF4;

    border-radius: 10px;
}

.terma-intro-feature-icon {
    width: 40px;
    height: 40px;

    min-width: 40px;

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

    background: #EAF4FF;

    color: var(--azul-escuro);

    border-radius: 9px;
}

.terma-intro-feature-icon svg {
    width: 19px;
    height: 19px;
}

.terma-intro-feature > div:last-child {
    display: flex;
    flex-direction: column;
}

.terma-intro-feature strong {
    color: #2A425D;

    font-size: 13px;
}

.terma-intro-feature span {
    margin-top: 1px;

    color: #71808F;

    font-size: 11px;
}


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

.terma-models {
    padding: 88px 0 95px;

    background: #F6F9FC;
}

.terma-models-heading {
    max-width: 760px;

    margin: 0 auto 48px;

    text-align: center;
}

.terma-models-heading h2 {
    margin-bottom: 13px;

    color: #1F3550;

    font-size:
        clamp(32px, 4vw, 44px);

    line-height: 1.15;
}

.terma-models-heading p {
    color: #667687;

    font-size: 15px;
}

.terma-models-grid {
    display: grid;

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

    gap: 24px;
}

.terma-model-card {
    min-width: 0;

    overflow: hidden;

    display: flex;
    flex-direction: column;

    background: #FFFFFF;

    border:
        1px solid #DCE7F1;

    border-radius: 15px;

    box-shadow:
        0 7px 22px rgba(26, 68, 106, 0.05);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.terma-model-card:hover {
    transform:
        translateY(-5px);

    border-color: #BAD4ED;

    box-shadow:
        0 15px 34px rgba(26, 68, 106, 0.10);
}

.terma-model-image {
    position: relative;

    height: 255px;

    padding: 26px;

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

    background:
        linear-gradient(
            180deg,
            #FCFDFE 0%,
            #F0F6FB 100%
        );

    border-bottom:
        1px solid #E7EEF5;
}

.terma-model-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition:
        transform 0.3s ease;
}

.terma-model-card:hover
.terma-model-image img {
    transform:
        scale(1.035);
}

.terma-model-number {
    position: absolute;

    top: 17px;
    left: 17px;

    z-index: 2;

    min-width: 42px;
    height: 32px;

    padding: 0 10px;

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

    background: #FFFFFF;

    color: var(--azul-escuro);

    border:
        1px solid #D7E7F6;

    border-radius: 8px;

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

    box-shadow:
        0 4px 12px rgba(39, 89, 135, 0.07);
}

.terma-model-content {
    flex: 1;

    padding: 23px 22px 22px;

    display: flex;
    flex-direction: column;
}

.terma-model-label {
    margin-bottom: 6px;

    color: var(--azul-escuro);

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

    letter-spacing: 0.9px;
}

.terma-model-content h3 {
    margin-bottom: 5px;

    color: #203B5C;

    font-size: 21px;

    line-height: 1.25;
}

.terma-model-subtitle {
    margin-bottom: 16px;

    color: #7A8794;

    font-size: 12px;
}

.terma-electric-list {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.terma-electric-option {
    min-height: 56px;

    padding: 10px 11px;

    display: flex;
    align-items: center;

    gap: 10px;

    background: #F7FAFD;

    border:
        1px solid #E3EBF3;

    border-radius: 8px;
}

.terma-electric-icon {
    width: 32px;
    height: 32px;

    min-width: 32px;

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

    background: #EAF4FF;

    color: var(--azul-escuro);

    border-radius: 7px;
}

.terma-electric-icon svg {
    width: 16px;
    height: 16px;
}

.terma-electric-option > div:last-child {
    display: flex;
    flex-direction: column;

    line-height: 1.25;
}

.terma-electric-option strong {
    color: #203B5C;

    font-size: 13px;
}

.terma-electric-option span {
    margin-top: 2px;

    color: #708090;

    font-size: 11px;
}

.terma-frequency {
    margin: 13px 0 19px;

    color: #86929E;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.3px;
}

.terma-consult-button {
    width: 100%;

    margin-top: auto;

    padding: 12px 16px;

    font-size: 12px;
}


/* =========================================================
   NOTA
========================================================= */

.terma-spec-note {
    max-width: 900px;

    margin: 45px auto 0;

    padding: 22px 24px;

    display: flex;
    align-items: flex-start;

    gap: 14px;

    background: #FFFFFF;

    border:
        1px solid #DCE7F1;

    border-radius: 12px;
}

.terma-spec-note-icon {
    width: 39px;
    height: 39px;

    min-width: 39px;

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

    background: #EAF4FF;

    color: var(--azul-escuro);

    border-radius: 8px;
}

.terma-spec-note-icon svg {
    width: 18px;
    height: 18px;
}

.terma-spec-note strong {
    color: #263F5B;

    font-size: 13px;
}

.terma-spec-note p {
    margin-top: 3px;

    color: #6B7987;

    font-size: 12px;

    line-height: 1.6;
}


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

.terma-page-cta {
    padding: 72px 0;

    background:
        linear-gradient(
            135deg,
            #2875C7,
            #4A90E2
        );

    color: #FFFFFF;
}

.terma-page-cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 45px;
}

.terma-page-cta .section-tag {
    color:
        rgba(255, 255, 255, 0.76);
}

.terma-page-cta h2 {
    max-width: 680px;

    margin-bottom: 10px;

    font-size:
        clamp(31px, 4vw, 42px);

    line-height: 1.15;
}

.terma-page-cta p {
    max-width: 640px;

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

    font-size: 14px;

    line-height: 1.65;
}

.terma-page-cta .btn {
    flex-shrink: 0;
}


/* =========================================================
   RESPONSIVO TERMA NAUTILUS
========================================================= */

@media (max-width: 1000px) {

    .terma-intro-container {
        grid-template-columns:
            1fr;

        gap: 45px;
    }

    .terma-intro-image {
        min-height: 380px;
    }

    .terma-models-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 800px) {

    .terma-page-hero {
        padding: 45px 0 52px;
    }

    .terma-page-hero h1 {
        font-size: 38px;
    }

    .terma-page-hero p {
        font-size: 15px;
    }

    .terma-intro {
        padding: 65px 0;
    }

    .terma-intro-image {
        min-height: 320px;

        padding: 32px;
    }

    .terma-models {
        padding: 65px 0 72px;
    }

    .terma-page-cta-container {
        flex-direction: column;

        align-items: flex-start;
    }

    .terma-page-cta .btn {
        width: 100%;
    }

}


@media (max-width: 650px) {

    .terma-breadcrumb {
        justify-content: flex-start;

        margin-bottom: 22px;
    }

    .terma-page-hero {
        text-align: left;
    }

    .terma-page-hero p {
        margin: 0;
    }

    .terma-models-grid {
        grid-template-columns:
            1fr;
    }

    .terma-model-image {
        height: 290px;
    }

    .terma-spec-note {
        flex-direction: column;
    }

    .terma-page-cta {
        padding: 58px 0;
    }

}