/* =========================================================
   MARCOAR CLIMATIZAÇÃO E REFRIGERAÇÃO
   CSS PRINCIPAL
========================================================= */


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

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f7fa;
    color:#222;
    line-height:1.6;
    overflow-x:hidden;
}

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

a{
    -webkit-tap-highlight-color:transparent;
}


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

header{
    color:white;
    text-align:center;
}

header h1{
    margin-bottom:15px;
}

header p{
    max-width:700px;
    margin:0 auto 30px;
}


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

.hero{
    min-height:680px;

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

    position:relative;
    overflow:hidden;

    background:
        linear-gradient(
            90deg,
            rgba(0,20,50,.94),
            rgba(0,87,184,.70),
            rgba(0,168,255,.28)
        ),
        url("https://images.unsplash.com/photo-1621905252507-b35492cc74b4");

    background-size:cover;
    background-position:center;

    color:white;

    padding:80px 20px;
}


/* =========================================================
   HERO CONTEÚDO
========================================================= */

.hero-conteudo{
    width:100%;
    max-width:820px;

    margin:0 auto;

    text-align:center;

    animation:entrada .8s ease;
}

.marca{
    font-size:14px;

    letter-spacing:3px;

    font-weight:bold;

    text-transform:uppercase;

    margin-bottom:20px;

    opacity:.95;
}

.hero h1{
    font-size:54px;

    line-height:1.08;

    margin-bottom:22px;

    text-shadow:
        0 4px 15px rgba(0,0,0,.30);
}

.hero p{
    font-size:20px;

    line-height:1.6;

    max-width:700px;

    margin:0 auto;
}


/* =========================================================
   DESTAQUES
========================================================= */

.destaques{
    display:flex;

    gap:12px;

    flex-wrap:wrap;

    justify-content:center;

    margin:30px 0;
}

.destaques span{
    background:rgba(255,255,255,.15);

    border:1px solid rgba(255,255,255,.28);

    padding:10px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:bold;

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

    transition:
        background .2s ease,
        transform .2s ease;
}

.destaques span:hover{
    background:rgba(255,255,255,.25);

    transform:translateY(-2px);
}


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

.botao{
    display:block;

    width:max-content;

    max-width:100%;

    margin:30px auto 0;

    background:#25D366;

    color:white;

    padding:17px 36px;

    border-radius:50px;

    text-decoration:none;

    font-weight:bold;

    font-size:18px;

    text-align:center;

    box-shadow:
        0 8px 20px rgba(0,0,0,.18);

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

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

    box-shadow:
        0 12px 28px rgba(0,0,0,.28);

    background:#20bd5a;
}

.botao:active{
    transform:translateY(0);
}


/* =========================================================
   SEÇÕES
========================================================= */

section{
    max-width:1100px;

    margin:auto;

    padding:75px 20px;
}

section h2{
    text-align:center;

    font-size:32px;

    line-height:1.2;

    margin-bottom:45px;

    color:#003b7a;
}


/* =========================================================
   CONFIANÇA
========================================================= */

.confiança{
    background:white;

    max-width:1100px;

    border-radius:20px;

    box-shadow:
        0 10px 35px rgba(0,0,0,.07);

    padding:55px 30px;

    margin-top:20px;
}

.confiança h2{
    margin-bottom:35px;
}


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

.cards{
    display:flex;

    gap:25px;

    justify-content:center;

    align-items:stretch;

    flex-wrap:wrap;
}

.card{
    background:white;

    width:300px;

    padding:32px 28px;

    border-radius:18px;

    border:1px solid #e8edf3;

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

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

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

    box-shadow:
        0 18px 40px rgba(0,0,0,.12);
}

.card h3{
    color:#0057b8;

    font-size:21px;

    line-height:1.3;

    margin-bottom:15px;
}

.card p{
    color:#555;

    line-height:1.6;
}


/* =========================================================
   SOBRE
========================================================= */

.sobre{
    text-align:center;

    max-width:900px;
}

.sobre p{
    font-size:18px;

    line-height:1.8;

    color:#555;

    margin-bottom:18px;
}

.sobre p:last-child{
    margin-bottom:0;
}


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

.galeria{
    text-align:center;
}

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

.fotos{
    display:grid;

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

    gap:22px;

    align-items:stretch;
}


/* =========================================================
   FOTOS DA GALERIA
========================================================= */

.fotos img{
    width:100%;

    height:260px;

    object-fit:cover;

    object-position:center;

    background:#fff;

    padding:4px;

    border-radius:18px;

    border:4px solid white;

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

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


/* =========================================================
   PRIMEIRA FOTO
   APARELHO NA PARTE SUPERIOR
========================================================= */

.fotos img:nth-child(1){
    object-position:center top;
}


/* =========================================================
   SEGUNDA FOTO
   PISO-TETO NA PARTE SUPERIOR
========================================================= */

.fotos img:nth-child(2){
    object-position:center top;
}


/* =========================================================
   TERCEIRA FOTO
   ENQUADRAMENTO NORMAL
========================================================= */

.fotos img:nth-child(3){
    object-position:center center;
}


/* =========================================================
   QUARTA FOTO
   ANTES E DEPOIS
========================================================= */

.fotos img:nth-child(4){
    object-position:center center;
}


/* =========================================================
   EFEITO DAS FOTOS
========================================================= */

.fotos img:hover{
    transform:scale(1.02);

    box-shadow:
        0 18px 40px rgba(0,0,0,.20);
}


/* =========================================================
   PROCESSO
========================================================= */

.processo{
    text-align:center;
}

.passos{
    display:grid;

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

    gap:22px;
}

.passo{
    background:white;

    padding:32px 22px;

    border-radius:18px;

    border:1px solid #e8edf3;

    box-shadow:
        0 10px 28px rgba(0,0,0,.07);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.passo:hover{
    transform:translateY(-6px);

    box-shadow:
        0 16px 35px rgba(0,0,0,.12);
}

.passo span{
    display:flex;

    align-items:center;

    justify-content:center;

    width:55px;

    height:55px;

    margin:0 auto 20px;

    background:
        linear-gradient(
            135deg,
            #0057b8,
            #00a8ff
        );

    color:white;

    border-radius:50%;

    font-size:22px;

    font-weight:bold;

    box-shadow:
        0 8px 18px rgba(0,87,184,.25);
}

.passo h3{
    color:#0057b8;

    font-size:20px;

    line-height:1.3;

    margin-bottom:15px;
}

.passo p{
    color:#555;

    line-height:1.6;
}


/* =========================================================
   ATENDIMENTO
========================================================= */

.atendimento{
    text-align:center;

    background:white;

    max-width:1100px;

    border-radius:20px;

    margin-bottom:20px;

    box-shadow:
        0 10px 35px rgba(0,0,0,.06);
}

.atendimento p{
    max-width:750px;

    margin:0 auto 12px;

    color:#555;

    font-size:18px;

    line-height:1.7;
}

.atendimento .botao{
    margin-top:25px;
}


/* =========================================================
   CHAMADA FINAL
========================================================= */

.chamada{
    max-width:none;

    background:
        linear-gradient(
            135deg,
            #003b7a,
            #0057b8,
            #00a8ff
        );

    color:white;

    text-align:center;

    padding:85px 20px;

    margin-top:20px;
}

.chamada h2{
    color:white;

    font-size:36px;

    line-height:1.2;

    margin-bottom:20px;
}

.chamada p{
    color:white;

    font-size:20px;

    line-height:1.6;

    max-width:700px;

    margin:0 auto 32px;
}

.chamada .botao{
    margin-top:0;

    background:#25D366;
}


/* =========================================================
   RODAPÉ
========================================================= */

footer{
    background:#001f3f;

    color:white;

    text-align:center;

    padding:28px 20px;

    font-size:14px;
}

footer p{
    margin:0;
}


/* =========================================================
   WHATSAPP FLUTUANTE
========================================================= */

.whatsapp{
    position:fixed;

    right:25px;

    bottom:25px;

    width:62px;

    height:62px;

    background:#25D366;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    font-size:30px;

    text-decoration:none;

    box-shadow:
        0 8px 25px rgba(0,0,0,.30);

    z-index:999;

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

.whatsapp:hover{
    background:#20bd5a;

    transform:scale(1.08);

    box-shadow:
        0 12px 30px rgba(0,0,0,.35);
}

.whatsapp:active{
    transform:scale(.96);
}


/* =========================================================
   ANIMAÇÃO
========================================================= */

@keyframes entrada{

    from{
        opacity:0;

        transform:translateY(25px);
    }

    to{
        opacity:1;

        transform:translateY(0);
    }

}


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

@media (max-width:900px){

    .hero{
        min-height:620px;

        padding:70px 20px;
    }

    .hero h1{
        font-size:46px;
    }

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

        gap:18px;
    }

    .fotos img{
        height:260px;
    }

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

}


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

@media (max-width:600px){

    body{
        font-size:16px;
    }


    /* HERO */

    .hero{
        min-height:650px;

        padding:65px 18px;
    }

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

    .marca{
        font-size:11px;

        letter-spacing:2px;

        margin-bottom:16px;
    }

    .hero h1{
        font-size:36px;

        line-height:1.1;

        margin-bottom:18px;
    }

    .hero p{
        font-size:17px;

        line-height:1.55;
    }


    /* DESTAQUES */

    .destaques{
        gap:8px;

        margin:25px 0;
    }

    .destaques span{
        padding:8px 12px;

        font-size:12px;
    }


    /* BOTÕES */

    .botao{
        width:100%;

        max-width:360px;

        padding:16px 20px;

        font-size:17px;

        margin-top:25px;
    }


    /* SEÇÕES */

    section{
        padding:55px 16px;
    }

    section h2{
        font-size:28px;

        margin-bottom:32px;
    }


    /* CONFIANÇA */

    .confiança{
        border-radius:0;

        padding:50px 16px;

        margin-top:0;
    }


    /* CARDS */

    .cards{
        gap:18px;
    }

    .card{
        width:100%;

        padding:27px 22px;
    }

    .card h3{
        font-size:20px;
    }


    /* SOBRE */

    .sobre p{
        font-size:17px;

        line-height:1.7;
    }


    /* GALERIA */

    .fotos{
        grid-template-columns:1fr;

        gap:20px;
    }

    .fotos img{
        width:100%;

        height:270px;

        object-fit:cover;
    }


    /* PRIMEIRA FOTO