/* ==========================================
   BUILTRIGHT CONSTRUCTION LLC
   HEADER
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#111;
    color:#fff;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#111;
    z-index:9999;
    box-shadow:0 3px 15px rgba(0,0,0,.35);
}

.navbar{
    max-width:1280px;
    margin:auto;
    padding:15px 25px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:72px;
    transition:.3s;
}

.logo img:hover{
    transform:scale(1.05);
}

nav ul{
    display:flex;
    gap:35px;
    list-style:none;
}

nav a{
    color:white;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#ff7a00;
}

.call-button{

    background:#ff7a00;
    color:#fff;

    padding:12px 28px;

    border-radius:40px;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;
}

.call-button:hover{

    background:#ff932b;

    transform:translateY(-2px);

}

/* Espaço por causa do header fixo */

.hero{

    padding-top:120px;

}

/* ==========================================
   HERO SECTION
========================================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    position:relative;

    background:url("../images/hero/hero.jpg") center center/cover no-repeat;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.60);

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:900px;

    padding:20px;

}

.hero h1{

    font-size:68px;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:800;

}

.hero h1 span{

    color:#ff7a00;

}

.hero p{

    font-size:22px;

    line-height:1.7;

    color:#ddd;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn{

    display:inline-block;

    padding:18px 40px;

    border-radius:50px;

    text-decoration:none;

    font-size:18px;

    font-weight:bold;

    transition:.35s;

}

.btn-primary{

    background:#ff7a00;

    color:#fff;

}

.btn-primary:hover{

    background:#ff8e21;

    transform:translateY(-4px);

}

.btn-outline{

    border:2px solid white;

    color:white;

}

.btn-outline:hover{

    background:white;

    color:#111;

}

.scroll-down{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    font-size:32px;

    color:#ff7a00;

    animation:bounce 2s infinite;

}

@keyframes bounce{

    0%,20%,50%,80%,100%{

        transform:translate(-50%,0);

    }

    40%{

        transform:translate(-50%,-12px);

    }

    60%{

        transform:translate(-50%,-6px);

    }

}

/*=========================================
 WHY CHOOSE BUILTRIGHT
=========================================*/

.features{

    padding:100px 20px;

    background:#f7f7f7;

    color:#111;

}

.features .container{

    max-width:1200px;

    margin:auto;

}

.features-title{

    text-align:center;

    font-size:48px;

    font-weight:800;

    margin-bottom:70px;

}

.features-title span{

    color:#ff7a00;

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

}

.feature-card{

    background:#fff;

    border-radius:18px;

    padding:40px 30px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

    text-align:center;

    border-top:5px solid #ff7a00;

}

.feature-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.feature-card img{

    width:80px;

    margin:auto;

    margin-bottom:25px;

}

.feature-card i{

    font-size:58px;

    color:#ff7a00;

    margin-bottom:25px;

}

.feature-card h3{

    font-size:26px;

    margin-bottom:15px;

    font-weight:700;

}

.feature-card p{

    color:#666;

    line-height:1.8;

    font-size:16px;

}

.feature-card strong{

    color:#ff7a00;

}

/* animação */

.feature-card{

    opacity:0;

    transform:translateY(40px);

    animation:fadeUp .8s forwards;

}

.feature-card:nth-child(2){

    animation-delay:.2s;

}

.feature-card:nth-child(3){

    animation-delay:.4s;

}

.feature-card:nth-child(4){

    animation-delay:.6s;

}

.feature-card:nth-child(5){

    animation-delay:.8s;

}

.feature-card:nth-child(6){

    animation-delay:1s;

}

@keyframes fadeUp{

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*=========================================
 PROFESSIONAL GALLERY
=========================================*/

.gallery{

    padding:100px 20px;

    background:#111;

}

.gallery .container{

    max-width:1350px;

    margin:auto;

}

.gallery-title{

    text-align:center;

    color:#fff;

    font-size:48px;

    margin-bottom:15px;

    font-weight:800;

}

.gallery-title span{

    color:#ff7a00;

}

.gallery-subtitle{

    text-align:center;

    color:#ccc;

    font-size:20px;

    margin-bottom:60px;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:28px;

}

.gallery-item{

    overflow:hidden;

    border-radius:18px;

    background:#222;

    box-shadow:0 12px 35px rgba(0,0,0,.35);

    transition:.35s;

}

.gallery-item:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(255,122,0,.35);

}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:contain;
    background:#222;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-caption{

    padding:20px;

    background:#1a1a1a;

}

.gallery-caption h3{

    color:#fff;

    font-size:22px;

    margin-bottom:10px;

}

.gallery-caption p{

    color:#bbb;

    line-height:1.7;

}

/*==============================
 IMAGE HOVER
==============================*/

.gallery-item{

    position:relative;

}

.gallery-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    transition:.35s;

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

.gallery-overlay span{

    color:#fff;

    font-size:22px;

    border:2px solid #fff;

    padding:12px 28px;

    border-radius:40px;

    font-weight:bold;

}

/*==============================
 MOBILE
==============================*/

@media(max-width:768px){

.gallery-title{

font-size:36px;

}

.gallery-subtitle{

font-size:18px;

}

.gallery-grid{

grid-template-columns:1fr;

}

.gallery-item img{

height:240px;

}

}

/*=========================================
 ABOUT SECTION
=========================================*/

.about{

    padding:110px 20px;

    background:#ffffff;

    color:#222;

}

.about .container{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.about-text h2{

    font-size:50px;

    margin-bottom:25px;

    font-weight:800;

}

.about-text h2 span{

    color:#ff7a00;

}

.about-text p{

    font-size:18px;

    line-height:1.9;

    color:#555;

    margin-bottom:20px;

}

.about-list{

    margin-top:30px;

}

.about-list li{

    list-style:none;

    margin-bottom:18px;

    font-size:18px;

    font-weight:600;

}

.about-list li::before{

    content:"✔";

    color:#ff7a00;

    margin-right:12px;

}

/*=========================================
 COMPANY STATS
=========================================*/

.stats{

    background:#111;

    color:#fff;

    padding:90px 20px;

}

.stats .container{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

    text-align:center;

}

.stat-box{

    padding:25px;

}

.stat-box h3{

    font-size:52px;

    color:#ff7a00;

    margin-bottom:10px;

}

.stat-box p{

    font-size:18px;

    color:#ddd;

}

/*=========================================
 CALL TO ACTION
=========================================*/

.cta{

    background:#ff7a00;

    color:#fff;

    text-align:center;

    padding:90px 20px;

}

.cta h2{

    font-size:46px;

    margin-bottom:20px;

    font-weight:800;

}

.cta p{

    font-size:22px;

    margin-bottom:40px;

}

.cta a{

    display:inline-block;

    background:#fff;

    color:#ff7a00;

    text-decoration:none;

    padding:18px 40px;

    border-radius:50px;

    font-size:20px;

    font-weight:700;

    transition:.3s;

}

.cta a:hover{

    background:#111;

    color:#fff;

}

/*=========================================
 RESPONSIVE
=========================================*/

@media(max-width:900px){

.about .container{

grid-template-columns:1fr;

}

.about-text{

text-align:center;

}

.about-list{

text-align:left;

}

.about-text h2{

font-size:38px;

}

.cta h2{

font-size:34px;

}

}

/*=========================================
CONTACT
=========================================*/

.contact{

    background:#f8f8f8;

    padding:100px 20px;

    color:#222;

}

.contact .container{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

    gap:50px;

}

.contact-box{

    background:#fff;

    padding:40px;

    border-radius:18px;

    box-shadow:0 12px 35px rgba(0,0,0,.10);

}

.contact-box h2{

    font-size:34px;

    margin-bottom:25px;

}

.contact-box p{

    margin-bottom:18px;

    color:#555;

    line-height:1.8;

}

.contact-box a{

    color:#ff7a00;

    text-decoration:none;

    font-weight:700;

}

/*=========================================
FOOTER
=========================================*/

footer{

    background:#111;

    color:#fff;

    padding:70px 20px 30px;

}

.footer-container{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:40px;

}

.footer-logo img{

    height:85px;

    margin-bottom:20px;

}

.footer-links ul{

    list-style:none;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#ccc;

    text-decoration:none;

}

.footer-links a:hover{

    color:#ff7a00;

}

.footer-bottom{

    border-top:1px solid #333;

    margin-top:40px;

    padding-top:20px;

    text-align:center;

    color:#999;

}

/*=========================================
WHATSAPP
=========================================*/

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:70px;

    height:70px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#25D366;

    box-shadow:0 12px 30px rgba(0,0,0,.35);

    z-index:9999;

    transition:.3s;

}

.whatsapp:hover{

    transform:scale(1.12);

}

.whatsapp img{

    width:38px;

}

/*=========================================
INSTAGRAM
=========================================*/

.instagram{

    position:fixed;

    right:25px;

    bottom:110px;

    width:70px;

    height:70px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#E1306C;

    box-shadow:0 12px 30px rgba(0,0,0,.35);

    z-index:9999;

    transition:.3s;

}

.instagram:hover{

    transform:scale(1.12);

}

.instagram img{

    width:38px;

}

/*=========================================
BACK TO TOP
=========================================*/

.back-top{

    position:fixed;

    left:25px;

    bottom:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#ff7a00;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:28px;

    font-weight:bold;

    box-shadow:0 10px 25px rgba(0,0,0,.35);

    transition:.3s;

}

.back-top:hover{

    transform:translateY(-5px);

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:768px){

.hero h1{

font-size:42px;

}

.hero p{

font-size:18px;

}

nav{

display:none;

}

.logo img{

height:58px;

}

.call-button{

padding:10px 18px;

font-size:14px;

}

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

.contact .container{

grid-template-columns:1fr;

}

.whatsapp,

.instagram{

width:60px;

height:60px;

}

.whatsapp img,

.instagram img{

width:32px;

}

.back-top{

width:55px;

height:55px;

}

}

.feature-card:nth-child(3) img{
    width:180px;
    height:auto;
}