/* =============================
BASE
============================= */

:root{
    --gold:#c7b28d;
    --gold-hover:#b89f74;
    --dark:#111111;
    --dark-soft:#1b1b1d;
    --text:#5f6368;
    --light:#f7f7f7;
    --light-soft:#f3f0ea;
    --white:#ffffff;
    --border:rgba(17,17,17,.08);
    --shadow-sm:0 12px 30px rgba(0,0,0,.08);
    --shadow-md:0 18px 38px rgba(0,0,0,.12);
    --shadow-lg:0 20px 50px rgba(0,0,0,.18);
    --radius-md:14px;
    --radius-lg:18px;
}

html{
    scroll-behavior:smooth;
    overflow-x:hidden;
}

body{
    font-family:'Poppins',sans-serif;
    color:var(--text);
    background:#fff;
    overflow-x:hidden;
}

html{
    scroll-behavior:smooth;
    overflow-x:hidden;
}

body{
    font-family:'Poppins',sans-serif;
    color:var(--text);
    background:#fff;
    overflow-x:hidden;
}

.header .container,
.hero .container{
    padding-left:24px;
    padding-right:24px;
}

@media(min-width:1200px){
    .header .container,
    .hero .container{
        padding-left:32px;
        padding-right:32px;
    }
}

h1,h2,h3,h4,h5,h6{
    color:var(--dark);
    font-weight:700;
    margin-top:0;
}

a{
    text-decoration:none;
    transition:.25s ease;
}

img{
    max-width:100%;
    display:block;
}

/* =============================
BUTTONS
============================= */

.btn-warning{
    background:var(--gold);
    border:none;
    color:#111;
    font-weight:600;
    transition:.25s ease;
}

.btn-warning:hover{
    background:var(--gold-hover);
    color:#111;
}

.btn-outline-light{
    border-color:rgba(255,255,255,.75);
}

.btn-outline-light:hover{
    background:#fff;
    color:#111;
}

/* =============================
HEADER / NAVBAR
============================= */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:rgba(17,17,17,.88);
    transition:background .35s ease, box-shadow .35s ease;
}

.header.scrolled{
    background:rgba(255,255,255,.96);
    box-shadow:0 8px 24px rgba(0,0,0,.08);
}

.navbar{
    padding:15px 0;
}

.navbar-brand img{
    height:45px;
    width:auto;
}

.nav-link{
    color:#fff !important;
    font-weight:500;
    padding-left:1rem !important;
    padding-right:1rem !important;
}

.nav-link:hover,
.nav-link:focus{
    color:var(--gold) !important;
}

.header.scrolled .nav-link{
    color:var(--dark) !important;
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link:focus{
    color:var(--gold) !important;
}

.navbar-toggler{
    border-color:rgba(255,255,255,.25);
}

.navbar-toggler:focus{
    box-shadow:none;
}

.navbar-toggler-icon{
    filter:invert(1);
}

.header.scrolled .navbar-toggler{
    border-color:rgba(17,17,17,.15);
}

.header.scrolled .navbar-toggler-icon{
    filter:none;
}

/* =============================
HERO
============================= */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding-top:120px;
    padding-bottom:100px;
    background:
        linear-gradient(rgba(0,0,0,.50),rgba(0,0,0,.50)),
        url('../img/hero/hero.jpeg') center/cover no-repeat;
    color:#fff;
}

.hero h1{
    font-size:60px;
    line-height:1.08;
    color:#fff;
    margin-bottom:20px;
    max-width:760px;
}

.hero p{
    font-size:18px;
    opacity:.92;
    color:#fff;
    max-width:620px;
    margin-bottom:0;
}

/* =============================
FEATURES STRIP
============================= */

.features{
    padding:70px 0;
    background:#fff;
}

.feature-minimal{
    padding:25px;
    transition:.3s ease;
    text-align:center;
}

.feature-minimal i{
    font-size:32px;
    color:var(--gold);
    margin-bottom:12px;
}

.feature-minimal h5{
    font-size:17px;
    font-weight:600;
    margin:0;
    line-height:1.45;
}

.feature-minimal:hover{
    transform:translateY(-5px);
}

/* =============================
ABOUT
============================= */

.about-section{
    padding:100px 0;
    background:var(--light-soft);
}

.about-image-wrap{
    position:relative;
}

.about-image{
    width:100%;
    border-radius:16px;
    object-fit:cover;
    box-shadow:0 18px 40px rgba(0,0,0,.10);
}

.section-tag{
    display:inline-block;
    font-size:14px;
    font-weight:600;
    color:var(--gold);
    margin-bottom:14px;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.about-title{
    font-size:48px;
    line-height:1.08;
    margin-bottom:24px;
    max-width:520px;
}

.about-text{
    font-size:16px;
    line-height:1.9;
    color:var(--text);
    margin-bottom:18px;
}

.about-actions{
    margin-top:30px;
}

.about-stat{
    background:#fff;
    border:2px solid rgba(199,178,141,.45);
    border-radius:14px;
    padding:28px 18px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
}

.about-stat-number{
    font-size:54px;
    font-weight:800;
    line-height:1;
    color:var(--dark);
    margin-bottom:10px;
}

.about-stat-label{
    font-size:14px;
    color:var(--text);
    line-height:1.5;
}

/* =============================
SERVICES
============================= */

.services-section{
    padding:100px 0;
    background:#ffffff;
}

.services-header{
    max-width:760px;
    margin:0 auto 50px;
}

.services-title{
    font-size:48px;
    margin-bottom:14px;
}

.services-subtitle{
    font-size:16px;
    line-height:1.8;
    color:var(--text);
    margin:0;
}

.service-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:var(--shadow-sm);
    transition:.3s ease;
    height:100%;
}

.service-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-md);
}

.service-image-wrap{
    overflow:hidden;
}

.service-image{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:transform .5s ease;
}

.service-card:hover .service-image{
    transform:scale(1.05);
}

.service-card-body{
    padding:26px 24px 28px;
}

.service-card-body h5{
    font-size:28px;
    margin-bottom:14px;
}

.service-card-body p{
    font-size:15px;
    line-height:1.8;
    color:var(--text);
    margin:0;
}

.services-cta{
    margin-top:42px;
}

/* extras da galeria */
.project-gallery-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 12px 28px rgba(0,0,0,.08);
    transition:.3s ease;
    height:100%;
}

.project-gallery-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 36px rgba(0,0,0,.12);
}

.project-gallery-image-wrap{
    overflow:hidden;
}

.project-gallery-image{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:transform .45s ease;
}

.project-gallery-card:hover .project-gallery-image{
    transform:scale(1.05);
}

/* =============================
SERVICE DETAIL
============================= */

.service-detail{
    padding:110px 0;
    background:#0f0f0f;
    color:#ffffff;
}

.service-detail-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:24px;
    max-width:700px;
    color:#ffffff;
}

.service-detail p{
    color:#d7d7d7;
    line-height:1.8;
    margin-bottom:25px;
}

.service-detail h5{
    margin-top:25px;
    margin-bottom:10px;
    font-weight:600;
    color:#ffffff;
}

.service-list{
    padding-left:18px;
    margin-bottom:15px;
}

.service-list li{
    margin-bottom:6px;
    color:#e0e0e0;
}

.service-detail-image{
    border-radius:14px;
    box-shadow:0 20px 40px rgba(0,0,0,.4);
}

.service-detail .btn-warning{
    margin-top:20px;
}

/* =============================
BEFORE / AFTER HOME
============================= */

.before-after-section{
    padding:100px 0;
    background:var(--light-soft);
}

.before-after-title{
    font-size:46px;
    margin-bottom:14px;
}

.before-after-subtitle{
    max-width:720px;
    margin:0 auto 50px;
    color:var(--text);
    line-height:1.8;
    font-size:16px;
}

.before-after-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 14px 34px rgba(0,0,0,.08);
    height:100%;
    transition:.3s ease;
}

.before-after-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 42px rgba(0,0,0,.12);
}

.before-after-image-wrap{
    position:relative;
    overflow:hidden;
    height:100%;
}

.before-after-image{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:transform .4s ease;
}

.before-after-card:hover .before-after-image{
    transform:scale(1.04);
}

.before-label,
.after-label{
    position:absolute;
    top:14px;
    left:14px;
    font-size:12px;
    font-weight:700;
    padding:7px 12px;
    border-radius:999px;
    text-transform:uppercase;
    letter-spacing:.04em;
}

.before-label{
    background:rgba(17,17,17,.85);
    color:#fff;
}

.after-label{
    background:rgba(199,178,141,.95);
    color:#111;
}

.before-after-body{
    padding:26px 24px 28px;
}

.before-after-body h5{
    font-size:26px;
    margin-bottom:14px;
}

.before-after-body p{
    margin:0;
    color:var(--text);
    line-height:1.8;
    font-size:15px;
}

/* =============================
EXPERTISE
============================= */

.expertise-section{
    padding:100px 0;
    background:#f8f8f8;
}

.expertise-title{
    font-size:40px;
    font-weight:700;
    max-width:520px;
}

.expertise-text{
    color:var(--text);
    line-height:1.8;
    max-width:520px;
}

.expertise-item{
    text-align:center;
}

.expertise-item i{
    font-size:28px;
    background:var(--gold);
    color:#fff;
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin:auto auto 16px;
}

.expertise-item p{
    font-weight:600;
    margin:0;
    font-size:15px;
}

/* =============================
CONTACT SECTION
============================= */

.contact-section{
    padding:100px 0;
    background:
        linear-gradient(rgba(17,17,17,.78), rgba(17,17,17,.78)),
        url('../img/sections/contact-bg.jpg') center/cover no-repeat;
}

.section-tag-light{
    color:#fff;
}

.contact-hero{
    max-width:760px;
    margin:0 auto 46px;
}

.contact-title{
    color:#fff;
    font-size:46px;
    margin-bottom:14px;
}

.contact-subtitle{
    color:rgba(255,255,255,.82);
    font-size:16px;
    line-height:1.8;
    margin:0;
}

.contact-box{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:var(--shadow-lg);
}

.contact-form-wrap{
    height:100%;
    padding:44px 36px;
    background:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.contact-form-head{
    margin-bottom:24px;
}

.contact-form-head h3{
    font-size:28px;
    margin-bottom:10px;
}

.contact-form-head p{
    margin:0;
    color:var(--text);
    line-height:1.7;
    font-size:15px;
}

.contact-form .form-label{
    font-size:14px;
    font-weight:500;
    color:var(--dark);
    margin-bottom:8px;
}

.contact-form .form-control{
    border:1px solid rgba(17,17,17,.12);
    border-radius:12px;
    padding:13px 15px;
    box-shadow:none;
    font-size:15px;
    background:#fff;
    transition:border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.contact-form textarea.form-control{
    min-height:140px;
    resize:vertical;
}

.contact-form .form-control:focus{
    border-color:var(--gold);
    box-shadow:0 0 0 0.2rem rgba(199,178,141,.16);
}

.contact-form-actions{
    display:flex;
    align-items:center;
    gap:14px;
}

.contact-form-actions .btn{
    min-width:140px;
    padding:12px 20px;
    border-radius:12px;
}

.form-status{
    font-size:14px;
    font-weight:500;
}

.form-status.success{
    color:#1f8b4c;
}

.form-status.error{
    color:#c0392b;
}

.contact-visual{
    position:relative;
    min-height:620px;
    height:100%;
    overflow:hidden;
    background:#111;
}

.contact-image{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.contact-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(17,17,17,.12) 0%,
        rgba(17,17,17,.18) 35%,
        rgba(17,17,17,.58) 100%
    );
}

.contact-visual-content{
    position:absolute;
    left:32px;
    right:32px;
    bottom:32px;
    z-index:2;
    color:#fff;
    max-width:420px;
}

.contact-mini-tag{
    display:inline-block;
    padding:8px 12px;
    border-radius:999px;
    background:rgba(255,255,255,.16);
    color:#fff;
    font-size:12px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.06em;
    margin-bottom:16px;
    backdrop-filter:blur(6px);
}

.contact-visual-content h3{
    color:#fff;
    font-size:34px;
    line-height:1.1;
    margin-bottom:14px;
}

.contact-visual-content p{
    color:rgba(255,255,255,.86);
    font-size:15px;
    line-height:1.8;
    margin-bottom:22px;
}

.contact-phone-badge{
    display:inline-flex;
    align-items:center;
    gap:14px;
    background:var(--gold);
    color:#111;
    font-weight:700;
    padding:14px 18px;
    border-radius:14px;
    box-shadow:0 18px 35px rgba(0,0,0,.18);
}

.contact-phone-badge:hover{
    color:#111;
    background:var(--gold-hover);
    transform:translateY(-2px);
}

.contact-phone-icon{
    width:46px;
    height:46px;
    border-radius:50%;
    background:rgba(255,255,255,.28);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.contact-phone-content{
    display:flex;
    flex-direction:column;
    line-height:1.2;
}

.contact-phone-content small{
    font-size:12px;
    font-weight:600;
    opacity:.8;
    margin-bottom:4px;
}

.contact-phone-content strong{
    font-size:18px;
    font-weight:700;
}

/* =============================
CONTACT RESPONSIVE
============================= */

@media(max-width:992px){

    .contact-box{
        border-radius:20px;
    }

    .contact-visual{
        min-height:420px;
    }

    .contact-visual-content{
        left:24px;
        right:24px;
        bottom:24px;
        max-width:100%;
    }

    .contact-visual-content h3{
        font-size:28px;
    }

    .contact-form-wrap{
        padding:34px 26px;
    }
}

@media(max-width:768px){

    .contact-section{
        padding:65px 0;
    }

    .contact-title{
        font-size:32px;
    }

    .contact-subtitle{
        font-size:15px;
    }

    .contact-box{
        border-radius:18px;
    }

    .contact-visual{
        min-height:280px;
        max-height:320px;
    }

    .contact-overlay{
        background:linear-gradient(
            180deg,
            rgba(17,17,17,.06) 0%,
            rgba(17,17,17,.16) 50%,
            rgba(17,17,17,.52) 100%
        );
    }

    .contact-visual-content{
        left:18px;
        right:18px;
        bottom:18px;
    }

    .contact-mini-tag{
        font-size:11px;
        margin-bottom:12px;
    }

    .contact-visual-content h3{
        font-size:22px;
        margin-bottom:10px;
    }

    .contact-visual-content p{
        font-size:14px;
        line-height:1.6;
        margin-bottom:16px;
    }

    .contact-phone-badge{
        width:100%;
        justify-content:center;
        padding:13px 16px;
        border-radius:12px;
    }

    .contact-phone-icon{
        width:42px;
        height:42px;
        font-size:20px;
    }

    .contact-phone-content strong{
        font-size:16px;
    }

    .contact-form-wrap{
        padding:24px 18px 26px;
    }

    .contact-form-head{
        margin-bottom:18px;
    }

    .contact-form-head h3{
        font-size:22px;
        margin-bottom:8px;
    }

    .contact-form-head p{
        font-size:14px;
        line-height:1.6;
    }

    .contact-form .form-control{
        border-radius:10px;
        padding:12px 14px;
        font-size:15px;
    }

    .contact-form textarea.form-control{
        min-height:120px;
    }

    .contact-form-actions .btn{
        width:100%;
    }
}

/* =============================
WHATSAPP CTA PREMIUM
============================= */

.contact-phone-badge{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--gold);
    color: #111;
    font-weight: 700;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 
        0 10px 30px rgba(0,0,0,.18),
        0 0 0 rgba(199,178,141,.0);
    animation: whatsappStrongPulse 1.6s infinite;
    overflow: visible;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

/* glow dourado */
.contact-phone-badge::after{
    content:"";
    position:absolute;
    inset:-6px;
    border-radius:16px;
    background: radial-gradient(
        circle,
        rgba(199,178,141,.45) 0%,
        rgba(199,178,141,.18) 40%,
        transparent 70%
    );
    z-index:-2;
    opacity:.8;
    animation: whatsappGlow 2s infinite ease-in-out;
}

/* ondas comerciais */
.contact-phone-badge::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:14px;
    background: rgba(199,178,141,.45);
    z-index:-1;
    animation: whatsappRing 1.6s infinite;
}

/* pulsação do botão */
@keyframes whatsappStrongPulse{

    0%{
        transform: scale(1);
    }

    50%{
        transform: scale(1.07);
    }

    100%{
        transform: scale(1);
    }

}

/* onda expandindo */
@keyframes whatsappRing{

    0%{
        transform: scale(1);
        opacity:.7;
    }

    70%{
        transform: scale(1.6);
        opacity:0;
    }

    100%{
        transform: scale(1.6);
        opacity:0;
    }

}

/* brilho dourado respirando */
@keyframes whatsappGlow{

    0%{
        opacity:.6;
        transform: scale(1);
    }

    50%{
        opacity:1;
        transform: scale(1.15);
    }

    100%{
        opacity:.6;
        transform: scale(1);
    }

}

/* hover poderoso */
.contact-phone-badge:hover{
    transform: scale(1.14);
    box-shadow:
        0 24px 55px rgba(0,0,0,.35),
        0 0 25px rgba(199,178,141,.6);
    background: var(--gold-hover);
}

/* ícone */
.contact-phone-icon{
    width:46px;
    height:46px;
    border-radius:50%;
    background:rgba(255,255,255,.28);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
    transition: transform .25s ease;
}

.contact-phone-badge:hover .contact-phone-icon{
    transform: rotate(-10deg) scale(1.15);
}

@keyframes whatsappAttentionJump{

    0%{ transform: scale(1); }

    40%{ transform: scale(1.25); }

    60%{ transform: scale(0.95); }

    100%{ transform: scale(1); }

}

.contact-phone-badge.attention{
    animation: whatsappAttentionJump .6s ease;
}

/* =============================
FOOTER
============================= */

.site-footer{
    background:#111111;
    color:rgba(255,255,255,.78);
    padding:90px 0 26px;
    position:relative;
    overflow:hidden;
}

.site-footer::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:1px;
    background:rgba(199,178,141,.18);
}

.footer-brand{
    max-width:320px;
}

.footer-logo{
    height:84px;
    width:auto;
    margin-bottom:22px;
    opacity:.95;
}

.footer-brand-text{
    margin:0;
    line-height:1.95;
    font-size:16px;
    color:rgba(255,255,255,.68);
}

.footer-block{
    height:100%;
}

.footer-title{
    color:#fff;
    font-size:28px;
    font-weight:700;
    margin-bottom:28px;
    letter-spacing:-0.02em;
}

.footer-contact-list,
.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-contact-list li{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:22px;
}

.footer-contact-list i{
    color:var(--gold);
    font-size:18px;
    margin-top:4px;
    flex-shrink:0;
}

.footer-contact-list span{
    display:block;
    font-size:13px;
    color:rgba(255,255,255,.45);
    margin-bottom:3px;
    text-transform:uppercase;
    letter-spacing:.05em;
}

.footer-contact-list a,
.footer-contact-list p{
    margin:0;
    color:#fff;
    font-weight:600;
    line-height:1.6;
    font-size:15px;
}

.footer-contact-list a:hover{
    color:var(--gold);
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links a{
    color:rgba(255,255,255,.82);
    font-size:16px;
    position:relative;
    padding-left:18px;
}

.footer-links a::before{
    content:"";
    width:5px;
    height:5px;
    border-radius:50%;
    background:var(--gold);
    position:absolute;
    left:0;
    top:11px;
    opacity:.85;
}

.footer-links a:hover{
    color:var(--gold);
    padding-left:22px;
}

.footer-bottom{
    margin-top:56px;
    padding-top:24px;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
}

.footer-bottom p{
    margin:0;
    font-size:14px;
    color:rgba(255,255,255,.52);
    letter-spacing:.02em;
}

/* =============================
WHATSAPP FLOAT
============================= */

.whatsapp-float{
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
    z-index: 99999;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float i{
    line-height: 1;
}

.whatsapp-float:hover{
    color: #fff;
    background: #20bd5a;
    transform: scale(1.08);
    box-shadow: 0 15px 35px rgba(0,0,0,.35);
    animation-play-state: paused;
}

.whatsapp-float::before,
.whatsapp-float::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, .35);
    z-index: -1;
    animation: whatsappRing 2s infinite;
}

.whatsapp-float::after{
    animation-delay: 1s;
}

@keyframes whatsappPulse{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.04);
    }
    100%{
        transform: scale(1);
    }
}

@keyframes whatsappRing{
    0%{
        transform: scale(1);
        opacity: .55;
    }
    70%{
        transform: scale(1.55);
        opacity: 0;
    }
    100%{
        transform: scale(1.55);
        opacity: 0;
    }
}
/* =============================
RESPONSIVE
============================= */

@media(max-width:992px){

    .hero h1{
        font-size:40px;
    }

    .services-section,
    .about-section,
    .before-after-section,
    .expertise-section,
    .contact-section,
    .realisaties-section{
        padding:80px 0;
    }

    .services-title,
    .about-title,
    .before-after-title,
    .contact-title{
        font-size:38px;
    }

    .service-image{
        height:230px;
    }

    .service-card-body h5{
        font-size:24px;
    }

    .about-stat{
        max-width:240px;
    }

    .before-after-image{
        height:280px;
    }

    .before-after-body h5{
        font-size:22px;
    }

    .contact-phone-badge{
        position:static;
        transform:none;
        flex-direction:row;
        gap:12px;
        width:100%;
    }

    .site-footer{
        padding:65px 0 22px;
    }

    .footer-logo{
        height:72px;
    }
}

@media(max-width:768px){

    .hero{
        min-height:85vh;
        text-align:center;
        padding-top:140px;
    }

    .hero h1{
        font-size:34px;
    }

    .hero p{
        font-size:16px;
        margin-left:auto;
        margin-right:auto;
    }

    .feature-card{
        padding:25px;
    }

    .about-section,
    .services-section,
    .before-after-section,
    .contact-section,
    .site-footer,
    .realisaties-section{
        padding:65px 0;
    }

    .about-title,
    .services-title,
    .before-after-title,
    .contact-title{
        font-size:32px;
    }

    .about-text,
    .services-subtitle,
    .before-after-subtitle,
    .contact-subtitle{
        font-size:15px;
        line-height:1.8;
    }

    .about-stat{
        max-width:100%;
    }

    .service-image{
        height:220px;
    }

    .service-card-body{
        padding:22px 20px 24px;
    }

    .service-card-body h5{
        font-size:22px;
    }

    .before-after-image{
        height:220px;
    }

    .before-after-body{
        padding:20px 18px 22px;
    }

    .before-after-body h5{
        font-size:20px;
    }

    .before-after-body p{
        font-size:14px;
    }

    .contact-form-wrap{
        padding:28px 20px;
    }

    .contact-form-wrap h3{
        font-size:22px;
    }

    .contact-phone-text{
        font-size:16px;
    }

    .footer-title{
        font-size:20px;
        margin-bottom:18px;
    }

    .footer-brand{
        max-width:100%;
    }

    .footer-logo{
        height:68px;
    }

    .footer-bottom{
        margin-top:34px;
    }

    .whatsapp-float{
        width:58px;
        height:58px;
        right:18px;
        bottom:18px;
        font-size:28px;
    }
}

html, body{
    overflow-x: clip;
}

@supports not (overflow: clip) {
    html, body{
        overflow-x: hidden;
    }
}

/* evita qualquer filho estourar horizontalmente */
body *{
    box-sizing: border-box;
}

/* imagens e mídia nunca passam da tela */
img, svg, video, canvas, iframe{
    max-width: 100%;
    height: auto;
}

/* rows do bootstrap podem gerar estouro visual */
.row{
    margin-left: 0;
    margin-right: 0;
}

/* compensa a mudança acima */
.row > *{
    padding-left: calc(var(--bs-gutter-x, 1.5rem) * .5);
    padding-right: calc(var(--bs-gutter-x, 1.5rem) * .5);
}

@media (max-width: 768px){

    .header{
        width: 100%;
        left: 0;
        right: 0;
    }

    .navbar{
        padding: 10px 0;
    }

    .navbar-brand img{
        height: 38px;
    }

    .hero{
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 70px;
        background-position: center center;
    }

    .hero .container{
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero h1{
        font-size: 34px;
        line-height: 1.08;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-wrap: balance;
    }

    .hero p{
        font-size: 16px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero .mt-4{
        display: flex;
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }

    .hero .btn{
        width: 100%;
        max-width: 260px;
    }

    .feature-minimal{
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 768px){

    .contact-visual-content h3,
    .contact-visual-content p,
    .contact-mini-tag{
        display: none;
    }

    .contact-visual{
        min-height: 240px;
        max-height: 240px;
    }

    .contact-visual-content{
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: 100%;
    }

    .contact-phone-badge{
        width: 100%;
        justify-content: center;
        animation: none;
        transform: none !important;
    }

    .contact-phone-badge::before,
    .contact-phone-badge::after{
        display: none;
    }

    .contact-phone-badge.attention{
        animation: none;
    }
}

/* imagem mobile do primeiro serviço */
@media (max-width:768px){

    .service-image-wrap picture{
        display:block;
        width:100%;
        height:220px;
        overflow:hidden;
    }

    .service-image-wrap picture img{
        width:100%;
        height:100%;
        object-fit:cover;
        object-position:center;
        display:block;
    }

}