/*=====================================================
                LIDERPLAC - STYLE.CSS
                PARTE 1
Configurações • Header • Hero
======================================================*/


/*=====================================================
                    GOOGLE FONT
======================================================*/


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

:root{

    --preto:#0D0D0D;
    --cinza:#1F1D1D;
    --cinza-header:#2E2E2E;

    --cinza-claro:#E8E8E8;

    --texto:#FFFFFF;
    --texto-secundario:#C8C8C8;
    --texto-escuro:#1A1A1A;

    --vermelho:#D71F26;
    --vermelho-hover:#B8181F;

    --verde:#25D366;

    --container:1340px;

    --radius:14px;

    --transition:.35s ease;

}


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

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;
    scroll-padding-top:90px;

}

body{

    font-family:'Montserrat',sans-serif;
    background:var(--preto);
    color:var(--texto);

}

img{

    display:block;
    max-width:100%;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

button{

    font-family:inherit;

}


/*=====================================================
                CLASSES GLOBAIS
======================================================*/

.container{

    width:100%;
    max-width:var(--container);

    margin:auto;

    padding:0 35px;

}

.section-label{

    display:block;

    margin-bottom:18px;

    color:var(--vermelho);

    font-size:14px;

    font-weight:800;

    letter-spacing:4px;

}

.btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    border:none;

    cursor:pointer;

    transition:var(--transition);

}


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

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    height:82px;

    background:rgba(46,46,46,.96);

    backdrop-filter:blur(12px);

    z-index:999;

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

}

.header-container{

    height:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo img{

    width:110px;

}

.menu{

    display:flex;

    align-items:center;

    gap:48px;

}

.menu a{

    color:var(--texto);

    font-size:14px;

    font-weight:700;

    transition:var(--transition);

}

.menu a:hover{

    color:var(--vermelho);

}

.btn-header{

    width:170px;

    height:42px;

    border-radius:8px;

    background:var(--vermelho);

    color:#fff;

    font-size:13px;

    font-weight:700;

}

.btn-header:hover{

    background:var(--vermelho-hover);

    transform:translateY(-2px);

}


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

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    padding-top:82px;

    overflow:hidden;

    background:#111;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        rgba(0,0,0,.65),

        rgba(0,0,0,.65)

    );

    z-index:1;

}

/* imagem alterável */

.hero-image{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

}

.hero-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:820px;

    text-align:center;

}

.hero-subtitle{

    display:block;

    margin-bottom:24px;

    color:var(--vermelho);

    font-size:13px;

    font-weight:800;

    letter-spacing:5px;

}

.hero-title{

    margin-bottom:25px;

}

.hero-title span{

    display:block;

    color:#fff;

    font-size:62px;

    font-weight:900;

    line-height:1.05;

}

.hero-title strong{

    display:block;

    color:var(--vermelho);

    font-size:62px;

    font-weight:900;

    line-height:1.05;

}

.hero-description{

    max-width:720px;

    margin:0 auto 42px;

    color:var(--texto-secundario);

    font-size:17px;

    line-height:1.9;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

}

.btn-primary{

    width:220px;

    height:56px;

    border-radius:10px;

    background:var(--vermelho);

    color:#fff;

    font-size:14px;

    font-weight:700;

}

.btn-primary:hover{

    background:var(--vermelho-hover);

    transform:translateY(-3px);

}

.btn-secondary{

    width:220px;

    height:56px;

    border-radius:10px;

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

    background:transparent;

    color:#fff;

    font-size:14px;

    font-weight:700;

}

.btn-secondary:hover{

    border-color:var(--vermelho);

    color:var(--vermelho);

    transform:translateY(-3px);

}


/*=====================================================
                FIM DA PARTE 1
======================================================*/
/*=====================================================
                    QUEM SOMOS
======================================================*/

.about{

    background:var(--cinza-claro);

    color:var(--texto-escuro);

    padding:110px 0;

}

.about-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-content{

    max-width:620px;

}

.about-title{

    margin-bottom:28px;

    font-size:48px;

    font-weight:900;

    line-height:1.15;

    color:var(--texto-escuro);

}

.about-text{

    margin-bottom:22px;

    color:#5D6673;

    font-size:17px;

    line-height:1.9;

    font-weight:500;

}

.about-numbers{

    display:flex;

    gap:65px;

    margin-top:45px;

}

.about-number-item{

    display:flex;

    flex-direction:column;

}

.about-number-item strong{

    color:var(--vermelho);

    font-size:44px;

    font-weight:900;

    line-height:1;

    margin-bottom:8px;

}

.about-number-item span{

    color:#6C727C;

    font-size:14px;

    font-weight:600;

}


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

.about-image-wrapper{

    position:relative;

    width:100%;

    max-width:620px;

    margin-left:auto;

}

.about-image{

    width:100%;

    height:470px;

    object-fit:cover;

    border-radius:18px;

    box-shadow:

    0 18px 45px rgba(0,0,0,.18);

}


/*==============================
        CARD FLUTUANTE
==============================*/

.about-image-card{

    position:absolute;

    left:-35px;

    bottom:-35px;

    width:290px;

    padding:28px;

    border-radius:16px;

    background:var(--vermelho);

    color:#fff;

    box-shadow:

    0 22px 45px rgba(0,0,0,.25);

}

.about-image-card strong{

    display:block;

    margin-bottom:10px;

    font-size:20px;

    font-weight:800;

}

.about-image-card span{

    display:block;

    font-size:14px;

    line-height:1.7;

}


/*==============================
        ANIMAÇÕES
==============================*/

.about-image{

    transition:.45s;

}

.about-image:hover{

    transform:scale(1.02);

}

.about-image-card{

    transition:.35s;

}

.about-image-card:hover{

    transform:translateY(-8px);

}


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

@media(max-width:1050px){

.about-container{

grid-template-columns:1fr;

gap:70px;

}

.about-content{

max-width:100%;

}

.about-image-wrapper{

margin:auto;

}

}

@media(max-width:760px){

.about{

padding:80px 0;

}

.about-title{

font-size:36px;

}

.about-text{

font-size:15px;

}

.about-numbers{

flex-direction:column;

gap:25px;

}

.about-image{

height:360px;

}

.about-image-card{

position:relative;

left:0;

bottom:0;

width:100%;

margin-top:20px;

}

}

@media(max-width:480px){

.about-title{

font-size:31px;

}

.about-image{

height:280px;

}

.about-number-item strong{

font-size:36px;

}

}
/*=====================================================
                        SOLUÇÕES
======================================================*/

.solutions {
    background: var(--cinza);
    padding: 100px 0 110px;
    color: var(--texto);
}

.solutions-container {
    max-width: var(--container);
}

.solutions-heading {
    max-width: 780px;
    margin: 0 auto 60px;
    text-align: center;
}

.solutions-label {
    margin-bottom: 18px;
}

.solutions-title {
    margin-bottom: 20px;
    color: var(--texto);
    font-size: 46px;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.8px;
}

.solutions-description {
    max-width: 680px;
    margin: 0 auto;
    color: var(--texto-secundario);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
}

/*=====================================================
                    GRID DE SOLUÇÕES
======================================================*/

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

/*=====================================================
                    CARD DE SOLUÇÃO
======================================================*/

.solution-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    background: #302f2f;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.22);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.solution-card:hover {
    border-color: rgba(215, 31, 38, 0.9);
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
}

/*=====================================================
                    IMAGEM DO CARD
======================================================*/

.solution-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #252525;
}

.solution-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.22),
        transparent 55%
    );
    pointer-events: none;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

.solution-card:hover .solution-image img {
    transform: scale(1.07);
    filter: brightness(0.9);
}

/*=====================================================
                    ÍCONE DO CARD
======================================================*/

.solution-icon {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 11px;
    background: var(--vermelho);
    color: var(--texto);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
    transition:
        transform var(--transition),
        background var(--transition);
}

.solution-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.solution-card:hover .solution-icon {
    background: var(--vermelho-hover);
    transform: scale(1.06);
}

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

.solution-content {
    min-height: 235px;
    padding: 28px 26px 25px;
    display: flex;
    flex-direction: column;
}

.solution-content h3 {
    margin-bottom: 12px;
    color: var(--texto);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
}

.solution-content p {
    margin-bottom: 25px;
    color: #c7c7c7;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
}

/*=====================================================
                    BOTÃO DO CARD
======================================================*/

.solution-button {
    width: 100%;
    min-height: 46px;
    margin-top: auto;
    padding: 0 20px;
    border-radius: 8px;
    background: var(--vermelho);
    color: var(--texto);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 800;
    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.solution-button span {
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    transition: transform var(--transition);
}

.solution-button:hover {
    background: var(--vermelho-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(215, 31, 38, 0.22);
}

.solution-button:hover span {
    transform: translateX(5px);
}

/*=====================================================
                CARD SOLICITAR ORÇAMENTO
======================================================*/

.solution-budget-card {
    min-height: 483px;
    padding: 45px 38px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background:
        radial-gradient(
            circle at top right,
            rgba(255, 255, 255, 0.15),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            var(--vermelho),
            var(--vermelho-hover)
        );
    color: var(--texto);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.22);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.solution-budget-card::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    top: -95px;
    right: -80px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
}

.solution-budget-card::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    bottom: -70px;
    left: -55px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 50%;
}

.solution-budget-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
}

.budget-icon {
    position: relative;
    z-index: 1;
    width: 66px;
    height: 66px;
    margin-bottom: 25px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.budget-icon svg {
    width: 31px;
    height: 31px;
    fill: currentColor;
}

.solution-budget-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
    font-size: 27px;
    font-weight: 900;
    line-height: 1.2;
}

.solution-budget-card p {
    position: relative;
    z-index: 1;
    max-width: 330px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.75;
}

.budget-button {
    position: relative;
    z-index: 1;
    min-width: 185px;
    min-height: 47px;
    padding: 0 22px;
    border-radius: 8px;
    background: var(--texto);
    color: var(--vermelho);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 800;
    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.budget-button span {
    font-size: 20px;
    line-height: 1;
    transition: transform var(--transition);
}

.budget-button:hover {
    background: #f1f1f1;
    color: var(--vermelho-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

.budget-button:hover span {
    transform: translateX(5px);
}

/*=====================================================
                RESPONSIVIDADE — SOLUÇÕES
======================================================*/

@media (max-width: 1080px) {
    .solutions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .solution-budget-card {
        min-height: 455px;
    }
}

@media (max-width: 760px) {
    .solutions {
        padding: 80px 0 90px;
    }

    .solutions-heading {
        margin-bottom: 45px;
    }

    .solutions-title {
        font-size: 36px;
    }

    .solutions-description {
        font-size: 15px;
    }

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

    .solution-image {
        height: 240px;
    }

    .solution-content {
        min-height: auto;
    }

    .solution-budget-card {
        min-height: 390px;
    }
}

@media (max-width: 480px) {
    .solutions {
        padding: 70px 0 80px;
    }

    .solutions-title {
        font-size: 30px;
    }

    .solutions-title br {
        display: none;
    }

    .solutions-description {
        font-size: 14px;
    }

    .solution-image {
        height: 205px;
    }

    .solution-content {
        padding: 24px 20px 22px;
    }

    .solution-content h3 {
        font-size: 18px;
    }

    .solution-content p {
        font-size: 13px;
    }

    .solution-budget-card {
        min-height: 360px;
        padding: 38px 25px;
    }

    .solution-budget-card h3 {
        font-size: 24px;
    }
}

/*=====================================================
                  FIM DA PARTE 2B
======================================================*/
/*=====================================================
                PROCESSO DE PRODUÇÃO
======================================================*/

.process {
    background: #f4f5f7;
    padding: 100px 0 110px;
    color: var(--texto-escuro);
}

.process-container {
    max-width: var(--container);
}

.process-heading {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
}

.process-heading .section-label {
    margin-bottom: 18px;
}

.process-title {
    margin-bottom: 20px;
    color: var(--texto-escuro);
    font-size: 46px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.8px;
}

.process-description {
    max-width: 680px;
    margin: 0 auto;
    color: #5d6673;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
}

/*=====================================================
                    LINHA DO PROCESSO
======================================================*/

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 28px;
}

.process-timeline::before {
    content: "";
    position: absolute;
    top: 42px;
    left: 9%;
    width: 82%;
    height: 3px;
    border-radius: 50px;
    background: linear-gradient(
        90deg,
        var(--vermelho),
        var(--vermelho-hover)
    );
    z-index: 0;
}

/*=====================================================
                    ETAPA DO PROCESSO
======================================================*/

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-circle {
    width: 84px;
    height: 84px;
    margin: 0 auto 25px;
    border: 7px solid #f4f5f7;
    border-radius: 50%;
    background: var(--vermelho);
    color: var(--texto);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
    transition:
        transform var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.process-step:hover .step-circle {
    background: var(--vermelho-hover);
    transform: translateY(-6px) scale(1.06);
    box-shadow: 0 18px 38px rgba(215, 31, 38, 0.24);
}

.process-step h3 {
    margin-bottom: 13px;
    color: var(--texto-escuro);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
}

.process-step p {
    max-width: 215px;
    margin: 0 auto;
    color: #666d77;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.75;
}

/*=====================================================
                RESPONSIVIDADE — PROCESSO
======================================================*/

@media (max-width: 1080px) {
    .process-timeline {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 55px;
    }

    .process-timeline::before {
        display: none;
    }
}

@media (max-width: 760px) {
    .process {
        padding: 80px 0 90px;
    }

    .process-heading {
        margin-bottom: 50px;
    }

    .process-title {
        font-size: 36px;
    }

    .process-description {
        font-size: 15px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .process-step {
        max-width: 470px;
        width: 100%;
        margin: 0 auto;
        padding: 28px 25px;
        border: 1px solid #e2e4e7;
        border-radius: 16px;
        background: var(--texto);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    }

    .step-circle {
        border-color: var(--texto);
    }

    .process-step p {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .process {
        padding: 70px 0 80px;
    }

    .process-title {
        font-size: 30px;
    }

    .process-description {
        font-size: 14px;
    }

    .process-step {
        padding: 25px 20px;
    }

    .step-circle {
        width: 76px;
        height: 76px;
        font-size: 27px;
    }

    .process-step h3 {
        font-size: 18px;
    }

    .process-step p {
        font-size: 13px;
    }
}

/*=====================================================
                  FIM DA PARTE 2C
======================================================*/
/*=====================================================
                         GALERIA
======================================================*/

.gallery {
    background: #dedfe2;
    padding: 100px 0 110px;
    color: var(--texto-escuro);
}

.gallery-container {
    max-width: var(--container);
}

.gallery-heading {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.gallery-heading .section-label {
    margin-bottom: 18px;
}

.gallery-title {
    margin-bottom: 20px;
    color: var(--texto-escuro);
    font-size: 46px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.8px;
}

.gallery-description {
    max-width: 680px;
    margin: 0 auto;
    color: #5d6673;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
}

/*=====================================================
                    FILTROS DA GALERIA
======================================================*/

.gallery-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.gallery-filter {
    min-height: 42px;
    padding: 0 22px;
    border: 1px solid #b9bcc1;
    border-radius: 8px;
    background: transparent;
    color: #4f555e;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.gallery-filter:hover,
.gallery-filter.active {
    border-color: var(--vermelho);
    background: var(--vermelho);
    color: var(--texto);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(215, 31, 38, 0.2);
}
/*=====================================================
                BOTÃO MOSTRAR MAIS
======================================================*/
.gallery-more-card{
    width:100%;
    height:310px;
    border:none;
    border-radius:16px;
    background:#D71F26;
    color:#fff;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:12px;

    cursor:pointer;

    transition:.35s;
}

.gallery-more-card span{
    font-size:60px;
    font-weight:300;
}

.gallery-more-card strong{
    font-size:18px;
    font-weight:700;
}

.gallery-more-card:hover{
    background:#B8181F;
    transform:translateY(-7px);
}
/*=====================================================
                    GRID DA GALERIA
======================================================*/

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    width: 100%;
    height: 310px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 16px;
    background: #252525;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
    cursor: pointer;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition),
        opacity var(--transition);
}

.gallery-item:hover {
    border-color: rgba(215, 31, 38, 0.65);
    transform: translateY(-7px);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.24);
}

.gallery-item.hidden {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.55s ease,
        filter 0.55s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.7);
}

/*=====================================================
                    OVERLAY DA IMAGEM
======================================================*/

.gallery-overlay {
    position: absolute;
    inset: 0;
    padding: 26px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9),
        rgba(0, 0, 0, 0.06) 68%
    );
    color: var(--texto);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    text-align: left;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay strong {
    margin-bottom: 6px;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.25;
}

.gallery-overlay small {
    color: #e3e3e3;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
}

/*=====================================================
                        LIGHTBOX
======================================================*/

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    padding: 45px;
    background: rgba(0, 0, 0, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(5px);
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.gallery-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    display: block;
    max-width: min(1120px, 92vw);
    max-height: 88vh;
    border-radius: 13px;
    object-fit: contain;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
    transform: scale(0.94);
    transition: transform 0.3s ease;
}

.gallery-lightbox.open .lightbox-image {
    transform: scale(1);
}

/*=====================================================
                    BOTÃO FECHAR LIGHTBOX
======================================================*/

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--texto);
    font-family: Arial, sans-serif;
    font-size: 46px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition:
        color var(--transition),
        transform var(--transition);
}

.lightbox-close:hover {
    color: var(--vermelho);
    transform: rotate(90deg);
}

/*=====================================================
                RESPONSIVIDADE — GALERIA
======================================================*/

@media (max-width: 1080px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .gallery {
        padding: 80px 0 90px;
    }

    .gallery-heading {
        margin-bottom: 40px;
    }

    .gallery-title {
        font-size: 36px;
    }

    .gallery-description {
        font-size: 15px;
    }

    .gallery-filters {
        gap: 9px;
        margin-bottom: 32px;
    }

    .gallery-filter {
        min-height: 39px;
        padding: 0 17px;
        font-size: 12px;
    }

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

    .gallery-item {
        height: 360px;
    }

    .gallery-overlay {
        opacity: 1;
    }

    .gallery-lightbox {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 70px 0 80px;
    }

    .gallery-title {
        font-size: 30px;
    }

    .gallery-description {
        font-size: 14px;
    }

    .gallery-filter {
        min-height: 37px;
        padding: 0 14px;
        font-size: 11px;
    }

    .gallery-item {
        height: 275px;
    }

    .gallery-overlay {
        padding: 20px;
    }

    .gallery-overlay strong {
        font-size: 17px;
    }

    .gallery-lightbox {
        padding: 16px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 44px;
        height: 44px;
        font-size: 40px;
    }
}

/*=====================================================
                  FIM DA PARTE 3A
======================================================*/
/*=====================================================
                        CONTATO
======================================================*/

.contact {
    background: var(--cinza);
    padding: 100px 0 110px;
    color: var(--texto);
}

.contact-container {
    max-width: var(--container);
}

.contact-header {
    max-width: 780px;
    margin: 0 auto 60px;
    text-align: center;
}

.contact-header .section-label {
    margin-bottom: 18px;
}

.contact-title {
    margin-bottom: 20px;
    color: var(--texto);
    font-size: 46px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.8px;
}

.contact-description {
    max-width: 680px;
    margin: 0 auto;
    color: var(--texto-secundario);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
}

/*=====================================================
                CONTEÚDO PRINCIPAL
======================================================*/

.contact-content {
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 36px;
    align-items: stretch;
    margin-bottom: 55px;
}

/*=====================================================
                INFORMAÇÕES DE CONTATO
======================================================*/

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    background: #302f2f;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.info-card:hover {
    border-color: rgba(215, 31, 38, 0.85);
    transform: translateY(-5px);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.28);
}

.info-icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    border-radius: 13px;
    background: var(--vermelho);
    color: var(--texto);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    box-shadow: 0 10px 22px rgba(215, 31, 38, 0.22);
    transition:
        background var(--transition),
        transform var(--transition);
}

.info-card:hover .info-icon {
    background: var(--vermelho-hover);
    transform: scale(1.05);
}

.info-card h3 {
    margin-bottom: 7px;
    color: var(--texto);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
}

.info-card a,
.info-card p {
    color: #cfcfcf;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
}

.info-card a {
    display: inline-block;
    transition: color var(--transition);
}

.info-card a:hover {
    color: var(--vermelho);
}

/*=====================================================
                    FORMULÁRIO
======================================================*/

.contact-form {
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    background: #302f2f;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.2);
}

.contact-form form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    outline: none;
    background: #232222;
    color: var(--texto);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.contact-form input {
    min-height: 54px;
    padding: 0 18px;
}

.contact-form textarea {
    grid-column: 1 / -1;
    min-height: 170px;
    padding: 17px 18px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #909090;
}

.contact-form input:hover,
.contact-form textarea:hover {
    border-color: rgba(255, 255, 255, 0.16);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--vermelho);
    background: #272525;
    box-shadow: 0 0 0 3px rgba(215, 31, 38, 0.14);
}

/*=====================================================
                BOTÃO DO FORMULÁRIO
======================================================*/

.contact-form button {
    grid-column: 1 / -1;
    min-height: 56px;
    padding: 0 25px;
    border: 0;
    border-radius: 10px;
    background: var(--vermelho);
    color: var(--texto);
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.contact-form button:hover {
    background: var(--vermelho-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(215, 31, 38, 0.24);
}

.contact-form button:active {
    transform: translateY(-1px);
}

/*=====================================================
                        MAPA
======================================================*/

.contact-map {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    background: #302f2f;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 480px;
    border: 0;
    filter: grayscale(0.15) contrast(1.03);
}

/*=====================================================
                RESPONSIVIDADE — CONTATO
======================================================*/

@media (max-width: 1050px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 760px) {
    .contact {
        padding: 80px 0 90px;
    }

    .contact-header {
        margin-bottom: 45px;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-description {
        font-size: 15px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 28px;
    }

    .contact-form form {
        grid-template-columns: 1fr;
    }

    .contact-form textarea,
    .contact-form button {
        grid-column: 1;
    }

    .contact-map iframe {
        height: 390px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 70px 0 80px;
    }

    .contact-title {
        font-size: 30px;
    }

    .contact-description {
        font-size: 14px;
    }

    .info-card {
        padding: 20px;
    }

    .info-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .info-card h3 {
        font-size: 16px;
    }

    .info-card a,
    .info-card p {
        font-size: 13px;
    }

    .contact-form {
        padding: 22px;
    }

    .contact-form input {
        min-height: 51px;
    }

    .contact-form textarea {
        min-height: 150px;
    }

    .contact-map iframe {
        height: 330px;
    }
}

/*=====================================================
                  FIM DA PARTE 3B
======================================================*/
/*=====================================================
                  WHATSAPP FLUTUANTE
======================================================*/

.whatsapp-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1500;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--verde);
    color: var(--texto);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    transition:
        transform var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.whatsapp-button svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.whatsapp-button:hover {
    background: #1fbd5b;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.36);
}

/*=====================================================
              RESPONSIVIDADE GERAL — TABLET
======================================================*/

@media (max-width: 1100px) {
    .container {
        padding: 0 26px;
    }

    .menu {
        gap: 30px;
    }

    .hero-title span,
    .hero-title strong {
        font-size: 52px;
    }

    .hero-description {
        max-width: 650px;
        font-size: 16px;
    }
}

/*=====================================================
              RESPONSIVIDADE GERAL — MOBILE
======================================================*/

@media (max-width: 760px) {
    html {
        scroll-padding-top: 120px;
    }

    .container {
        padding: 0 22px;
    }

    .header {
        position: sticky;
        height: auto;
        padding: 13px 0;
    }

    .header-container {
        flex-wrap: wrap;
        gap: 14px;
    }

    .logo img {
        width: 95px;
    }

    .menu {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px 22px;
    }

    .menu a {
        font-size: 12px;
    }

    .btn-header {
        width: auto;
        min-width: 140px;
        height: 39px;
        padding: 0 15px;
        font-size: 12px;
    }

    .hero {
        min-height: calc(100vh - 118px);
        padding: 80px 22px 75px;
    }

    .hero-content {
        max-width: 680px;
    }

    .hero-subtitle {
        margin-bottom: 20px;
        font-size: 11px;
        letter-spacing: 4px;
    }

    .hero-title span,
    .hero-title strong {
        font-size: 41px;
    }

    .hero-description {
        margin-bottom: 34px;
        font-size: 15px;
        line-height: 1.75;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 320px;
    }

    .whatsapp-button {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-button svg {
        width: 27px;
        height: 27px;
    }
}

/*=====================================================
           RESPONSIVIDADE GERAL — CELULARES
======================================================*/

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

    .header-container {
        justify-content: space-between;
    }

    .menu {
        gap: 12px 16px;
    }

    .menu a {
        font-size: 10px;
    }

    .btn-header {
        min-width: 125px;
        height: 36px;
        font-size: 10px;
    }

    .hero {
        min-height: calc(100vh - 128px);
        padding: 65px 18px 65px;
    }

    .hero-subtitle {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .hero-title span,
    .hero-title strong {
        font-size: 33px;
        line-height: 1.08;
    }

    .hero-description {
        font-size: 13px;
        line-height: 1.7;
    }

    .btn-primary,
    .btn-secondary {
        height: 52px;
        font-size: 13px;
    }

    .section-label {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .whatsapp-button {
        width: 48px;
        height: 48px;
    }

    .whatsapp-button svg {
        width: 25px;
        height: 25px;
    }
}

/*=====================================================
              AJUSTES GERAIS DE SEGURANÇA
======================================================*/

input,
textarea,
button,
select {
    font: inherit;
}

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

iframe {
    max-width: 100%;
}

body.lightbox-open {
    overflow: hidden;
}

::selection {
    background: var(--vermelho);
    color: var(--texto);
}

/*=====================================================
               FORMULÁRIO DE ORÇAMENTO
======================================================*/

.budget-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--texto);
    font-size: 13px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    outline: none;
    background: #232222;
    color: var(--texto);
    font-family: inherit;
    font-size: 14px;
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.form-group input,
.form-group select {
    min-height: 54px;
    padding: 0 17px;
}

.form-group textarea {
    min-height: 160px;
    padding: 17px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--vermelho);
    box-shadow: 0 0 0 3px rgba(215, 31, 38, 0.14);
}

/*=====================================================
                    ANEXAR ARQUIVOS
======================================================*/

.file-upload input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.file-upload-label {
    min-height: 110px;
    padding: 22px;
    border: 2px dashed rgba(255, 255, 255, 0.16);
    border-radius: 13px;
    background: #232222;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    text-align: left;
    cursor: pointer;
    transition:
        border-color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.file-upload-label:hover {
    border-color: var(--vermelho);
    background: #292727;
    transform: translateY(-2px);
}

.file-upload-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--vermelho);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    font-weight: 400;
}

.file-upload-label strong,
.file-upload-label small {
    display: block;
}

.file-upload-label strong {
    margin-bottom: 5px;
    color: #fff;
    font-size: 14px;
}

.file-upload-label small {
    color: #a9a9a9;
    font-size: 12px;
    line-height: 1.5;
}

.selected-files {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 12px;
    color: #aaa;
    font-size: 12px;
}

.selected-files span {
    padding: 9px 12px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.05);
    color: #d3d3d3;
}

.file-warning {
    margin-top: 10px;
    color: #a8a8a8;
    font-size: 11px;
    line-height: 1.6;
}

.budget-submit {
    grid-column: 1 / -1;
    min-height: 56px;
    border: 0;
    border-radius: 10px;
    background: var(--vermelho);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.budget-submit:hover {
    background: var(--vermelho-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(215, 31, 38, 0.24);
}

@media (max-width: 760px) {
    .budget-form {
        grid-template-columns: 1fr;
    }

    .form-group-full,
    .budget-submit {
        grid-column: 1;
    }

    .file-upload-label {
        justify-content: flex-start;
    }
}

/*=====================================================
                FIM DO STYLE.CSS
======================================================*/

/*==================================
          DEPOIMENTOS
==================================*/

.testimonials{
    padding:110px 0;
    background:#f5f5f5;
}

.testimonials-header{
    max-width:1000px;
    margin:0 auto 70px;
    text-align:center;
}

.testimonials .section-label{
    display:inline-block;
    margin-bottom:18px;
    color:#d71f26;
    font-size:15px;
    font-weight:800;
    letter-spacing:4px;
    text-transform:uppercase;
}

.testimonials-title{
    margin:0;
    color:#1f1d1d;
    font-size:clamp(48px,5vw,64px);
    font-weight:900;
    line-height:1.1;
    letter-spacing:-1px;
}

.testimonials-description{
    max-width:760px;
    margin:28px auto 0;
    color:#5f5f5f;
    font-size:18px;
    line-height:1.8;
}

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

.testimonial-card{
    display:flex;
    flex-direction:column;
    height:100%;
    padding:38px;
    border-radius:20px;
    background:#fff;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    transition:.35s ease;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 55px rgba(0,0,0,.14);
}

.stars{
    margin-bottom:20px;
    color:#f4b400;
    font-size:24px;
    letter-spacing:2px;
}

.testimonial-card p{
    flex:1;
    margin:0 0 30px;
    color:#555;
    font-size:16px;
    line-height:1.8;
}

.testimonial-author strong{
    display:block;
    color:#1f1d1d;
    font-size:18px;
    font-weight:800;
}

.testimonial-author span{
    display:block;
    margin-top:5px;
    color:#777;
    font-size:14px;
}

@media(max-width:900px){

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

    .testimonials{
        padding:80px 0;
    }

    .testimonials-title{
        font-size:42px;
    }

}
/* ==================================================
   RODAPÉ PROFISSIONAL
================================================== */

.main-footer {
    background: #171616;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 55px;
    padding-top: 80px;
    padding-bottom: 70px;
}

.footer-company {
    max-width: 340px;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 25px;
}

.footer-logo img {
    display: block;
    width: auto;
    height: 58px;
    object-fit: contain;
}

.footer-company > p {
    margin: 0 0 28px;
    color: #bdbdbd;
    font-size: 15px;
    line-height: 1.8;
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 8px;
    background: #d71f26;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.footer-whatsapp:hover {
    background: #b71920;
    transform: translateY(-3px);
}

.footer-column h3 {
    position: relative;
    margin: 0 0 28px;
    padding-bottom: 14px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 38px;
    height: 3px;
    border-radius: 999px;
    background: #d71f26;
}

.footer-column ul {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-column li {
    color: #bdbdbd;
}

.footer-column a {
    color: #bdbdbd;
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}

.footer-column a:hover {
    padding-left: 4px;
    color: #ffffff;
}

.footer-contact-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact-list strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.footer-hours {
    display: grid;
    gap: 22px;
}

.footer-hours p {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0;
}

.footer-hours strong {
    margin-bottom: 3px;
    color: #ffffff;
    font-size: 14px;
}

.footer-hours span {
    color: #bdbdbd;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #0f0f0f;
}

.footer-bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 76px;
}

.footer-bottom p {
    margin: 0;
    color: #8f8f8f;
    font-size: 13px;
}

.footer-developer a {
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-developer a:hover {
    color: #d71f26;
}

/* TABLET */

@media (max-width: 1000px) {

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

/* CELULAR */

@media (max-width: 650px) {

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 42px;
        padding-top: 65px;
        padding-bottom: 55px;
    }

    .footer-company {
        max-width: none;
    }

    .footer-bottom-container {
        flex-direction: column;
        justify-content: center;
        padding: 22px 0;
        text-align: center;
    }
}
/* ==================================================
   BOTÃO VOLTAR AO TOPO
================================================== */

.back-to-top {
    position: fixed;
    right: 26px;
    bottom: 95px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background: #171616;
    color: #ffffff;
    font-family: inherit;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #d71f26;
    transform: translateY(-4px);
}

@media (max-width: 650px) {

    .back-to-top {
        right: 16px;
        bottom: 88px;
        width: 44px;
        height: 44px;
        font-size: 21px;
    }
}
/* ==================================================
   ANIMAÇÕES AO ROLAR A PÁGINA
================================================== */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Pequeno atraso entre elementos */

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* Respeita usuários que desativam animações */

@media (prefers-reduced-motion: reduce) {

    .reveal,
    .reveal.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
/* ==================================================
   PÁGINA 404
================================================== */

.error-page {
    min-height: 100vh;
    margin: 0;
    background: #171616;
    color: #ffffff;
}

.error-main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 50px 20px;
}

.error-container {
    width: min(760px, 100%);
    text-align: center;
}

.error-logo {
    display: inline-flex;
    margin-bottom: 48px;
}

.error-logo img {
    display: block;
    width: auto;
    height: 64px;
    max-width: 240px;
    object-fit: contain;
}

.error-code {
    display: block;
    margin-bottom: 12px;
    color: #d71f26;
    font-size: clamp(90px, 20vw, 190px);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -8px;
}

.error-container h1 {
    margin: 30px 0 20px;
    color: #ffffff;
    font-size: clamp(36px, 6vw, 62px);
    font-weight: 900;
    line-height: 1.1;
}

.error-container > p {
    max-width: 620px;
    margin: 0 auto 38px;
    color: #bdbdbd;
    font-size: 17px;
    line-height: 1.8;
}

.error-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.error-primary-button,
.error-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.error-primary-button {
    border: 1px solid #d71f26;
    background: #d71f26;
    color: #ffffff;
}

.error-primary-button:hover {
    background: #b71920;
    border-color: #b71920;
    transform: translateY(-3px);
}

.error-secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: #ffffff;
}

.error-secondary-button:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: #171616;
    transform: translateY(-3px);
}

@media (max-width: 520px) {

    .error-logo img {
        height: 52px;
    }

    .error-code {
        letter-spacing: -4px;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-primary-button,
    .error-secondary-button {
        width: 100%;
    }
}
/* ==================================================
   CURSOR E SELEÇÃO
================================================== */

a,
button,
input[type="submit"],
input[type="button"],
select {
    cursor: pointer;
}

.logo,
.header,
.btn,
.whatsapp-button,
.back-to-top,
.main-footer {
    user-select: none;
}
/* ==================================================
   ROLAGEM SUAVE
================================================== */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* ==================================================
   ACESSIBILIDADE, NAVEGAÇÃO E CONVERSÃO — REVISÃO 2026
================================================== */

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 12px 18px;
    border-radius: 8px;
    background: #ffffff;
    color: #171616;
    font-weight: 800;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:where(a, button, input, textarea, select, summary):focus-visible {
    outline: 3px solid #ffdb4d;
    outline-offset: 3px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    background: transparent;
    color: #ffffff;
}

.menu-toggle-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 100%;
}

.menu-toggle-line {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.menu a[aria-current="page"] {
    color: var(--vermelho);
}

.trust-strip {
    background: #ffffff;
    color: #1f1d1d;
    border-bottom: 1px solid #e7e7e7;
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: #e7e7e7;
}

.trust-item {
    padding: 28px 22px;
    background: #ffffff;
    text-align: center;
}

.trust-item strong {
    display: block;
    margin-bottom: 6px;
    color: #d71f26;
    font-size: 21px;
    font-weight: 900;
}

.trust-item span {
    color: #555;
    font-size: 14px;
    font-weight: 700;
}

.proof-section {
    padding: 110px 0;
    background: #f5f5f5;
    color: #1f1d1d;
}

.proof-header {
    max-width: 830px;
    margin: 0 auto 55px;
    text-align: center;
}

.proof-title {
    margin: 0;
    font-size: clamp(40px, 5vw, 62px);
    font-weight: 900;
    line-height: 1.08;
}

.proof-description {
    max-width: 720px;
    margin: 24px auto 0;
    color: #626262;
    font-size: 17px;
    line-height: 1.75;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.proof-card {
    min-height: 250px;
    padding: 38px;
    border: 1px solid #e1e1e1;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .07);
}

.proof-card-number {
    display: block;
    margin-bottom: 22px;
    color: #d71f26;
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
}

.proof-card h3 {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 900;
}

.proof-card p {
    margin: 0;
    color: #626262;
    font-size: 15px;
    line-height: 1.75;
}

.faq-section {
    padding: 105px 0;
    background: #ffffff;
    color: #1f1d1d;
}

.faq-header {
    max-width: 780px;
    margin-bottom: 45px;
}

.faq-title {
    margin: 0;
    font-size: clamp(40px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.1;
}

.faq-list {
    display: grid;
    gap: 14px;
    max-width: 980px;
}

.faq-item {
    border: 1px solid #e1e1e1;
    border-radius: 14px;
    background: #f8f8f8;
}

.faq-item summary {
    position: relative;
    padding: 24px 62px 24px 24px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 800;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 24px;
    color: #d71f26;
    font-size: 28px;
    transform: translateY(-50%);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 24px 24px;
    color: #5f5f5f;
    font-size: 15px;
    line-height: 1.75;
}

.contact-form select {
    width: 100%;
    min-height: 55px;
    padding: 0 17px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    outline: none;
    background: #232222;
    color: #ffffff;
    font: inherit;
    transition: border-color .3s ease, box-shadow .3s ease;
}

.contact-form select:focus {
    border-color: var(--vermelho);
    box-shadow: 0 0 0 3px rgba(215, 31, 38, .14);
}

.form-privacy-note {
    color: #a9a9a9;
    font-size: 12px;
    line-height: 1.6;
}

.footer-social-link {
    display: inline-flex;
    margin-top: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.footer-social-link:hover {
    color: #d71f26;
}

.gallery-lightbox[aria-hidden="true"] {
    pointer-events: none;
}

.lightbox-image:not([src]) {
    display: none;
}

@media (max-width: 900px) {
    .proof-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    body.menu-open {
        overflow: hidden;
    }

    .header-container {
        display: grid;
        grid-template-columns: auto auto 1fr;
        align-items: center;
        gap: 12px;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .header nav,
    .main-nav {
        grid-column: 1 / -1;
        width: 100%;
    }

    .menu {
        display: none;
        width: 100%;
        padding: 12px 0 4px;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .menu.active {
        display: flex;
    }

    .menu a {
        display: block;
        min-height: 44px;
        padding: 13px 12px;
        border-radius: 8px;
        font-size: 13px;
        text-align: center;
    }

    .menu a:hover,
    .menu a:focus-visible {
        background: rgba(255, 255, 255, .07);
    }

    .btn-header {
        justify-self: end;
    }

    .trust-strip-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        padding: 21px 18px;
    }

    .proof-section,
    .faq-section {
        padding: 78px 0;
    }
}

@media (max-width: 420px) {
    .logo img {
        width: 84px;
    }

    .btn-header {
        min-width: 112px;
        padding: 0 10px;
        font-size: 9px;
    }

    .proof-card {
        padding: 30px 24px;
    }
}


/* ==================================================
   FORMULÁRIOS E AJUSTES TÉCNICOS FINAIS
================================================== */
.contact-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form .form-field-full,
.contact-form .form-actions,
.contact-form .budget-note,
.contact-form .form-privacy-note {
    grid-column: 1 / -1;
}

.contact-form .form-field label {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.contact-form .form-field textarea {
    min-height: 170px;
}

.contact-form .form-actions button {
    width: 100%;
}

.required-mark {
    color: #ff7075;
}

.form-help {
    color: #aaaaaa;
    font-size: 12px;
    line-height: 1.5;
}

.gallery-item {
    cursor: zoom-in;
}

.gallery-item:focus-visible {
    outline: 3px solid #ffdb4d;
    outline-offset: 4px;
}

.gallery-lightbox[aria-hidden="false"] {
    display: flex;
}

body.menu-open .header {
    height: auto;
    min-height: 82px;
}

@media (max-width: 760px) {
    .contact-form .form-field-full,
    .contact-form .form-actions,
    .contact-form .budget-note,
    .contact-form .form-privacy-note {
        grid-column: 1;
    }

    .header-container {
        min-height: 82px;
        height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

/* Ordem correta do cabeçalho em telas pequenas */
@media (max-width: 760px) {
    .header-container {
        grid-template-columns: auto 1fr auto;
    }

    .header-container .logo {
        grid-column: 1;
        grid-row: 1;
    }

    .header-container .btn-header {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }

    .header-container .menu-toggle {
        grid-column: 3;
        grid-row: 1;
    }

    .header-container nav,
    .header-container .main-nav {
        grid-column: 1 / -1;
        grid-row: 2;
    }
}

/* Mantém a proporção das imagens quando width/height são informados no HTML */
img {
    height: auto;
}

/* Conteúdo permanece visível quando JavaScript está desativado */
.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(35px);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .js .reveal,
    .js .reveal.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
.footer-bottom {
  width: 100%;
  min-height: 76px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-container {
  width: min(1200px, calc(100% - 40px));
  min-height: 40px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-bottom-container p {
  margin: 0;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.footer-instagram:hover {
  color: #e31e24;
}

.developer-link {
  color: #a8181e;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 768px) {
  .footer-bottom {
    padding: 22px 0;
  }

  .footer-bottom-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
  }

  .footer-bottom-right {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
}