/* =========================================
   META PLUS ESTRUTURAL
   STYLE.CSS PROFISSIONAL
========================================= */

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ROOT */

:root{

    --primary:#d62828;
    --primary-dark:#b91c1c;

    --dark:#0f1115;
    --dark-2:#171a21;
    --dark-3:#1e232d;

    --light:#ffffff;
    --gray:#9ca3af;
    --gray-light:#d1d5db;

    --border:rgba(255,255,255,0.08);

    --shadow:0 10px 35px rgba(0,0,0,0.35);

}

/* HTML */

html{
    scroll-behavior:smooth;
}

/* BODY */

body{

    background:var(--dark);
    color:var(--light);

    font-family:'Inter',sans-serif;

    overflow-x:hidden;

    line-height:1.6;

}

/* CONTAINER */

.container{

    width:92%;
    max-width:1280px;

    margin:auto;

}

/* HEADER */

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:999;

    background:rgba(0,0,0,0.55);

    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(255,255,255,0.05);

    transition:0.3s;

}

/* NAV */

.nav{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:18px 0;

}

/* LOGO */

.logo{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo img{

     width:180px;
    height:auto;
    object-fit:contain;

}

.logo span{

    font-size:20px;

    font-weight:800;

    font-family:'Montserrat',sans-serif;

}

/* NAV LINKS */

.nav-links{

    display:flex;

    align-items:center;

    gap:28px;

}

.nav-links a{

    text-decoration:none;

    color:var(--light);

    font-weight:500;

    transition:0.3s;

}

.nav-links a:hover{

    color:var(--primary);

}

/* BUTTONS */

.btn-primary,
.btn-secondary,
.btn-header{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    text-decoration:none;

    font-weight:700;

    border-radius:14px;

    transition:0.3s;

    cursor:pointer;

}

/* BTN PRIMARY */

.btn-primary{

    background:var(--primary);

    color:var(--light);

    padding:18px 34px;

    font-size:16px;

    box-shadow:0 10px 25px rgba(214,40,40,0.35);

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

/* BTN SECONDARY */

.btn-secondary{

    border:1px solid rgba(255,255,255,0.15);

    color:var(--light);

    padding:18px 34px;

}

.btn-secondary:hover{

    background:rgba(255,255,255,0.06);

}

/* BTN HEADER */

.btn-header{

    background:var(--primary);

    color:var(--light);

    padding:14px 24px;

}

.btn-header:hover{

    transform:translateY(-2px);

}

/* HERO */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

}

/* HERO IMAGE */

.hero-bg{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

}

/* OVERLAY */

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to right,
        rgba(0,0,0,0.92),
        rgba(0,0,0,0.60)
    );

}

/* HERO CONTENT */

.hero-content{

    position:relative;

    z-index:2;

    max-width:760px;

    padding-top:120px;

}

.hero-tag{

    display:inline-block;

    background:rgba(214,40,40,0.15);

    border:1px solid rgba(214,40,40,0.30);

    padding:10px 18px;

    border-radius:999px;

    color:#fca5a5;

    font-size:14px;

    margin-bottom:24px;

    font-weight:600;

}

.hero-content h1{

    font-family:'Montserrat',sans-serif;

    font-size:68px;

    line-height:1.08;

    margin-bottom:28px;

    font-weight:900;

}

.hero-content p{

    font-size:21px;

    color:var(--gray-light);

    margin-bottom:40px;

}

/* HERO BUTTONS */

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

/* HERO STATS */

.hero-stats{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:22px;

    margin-top:60px;

}

.stat{

    background:rgba(255,255,255,0.04);

    border:1px solid var(--border);

    border-radius:18px;

    padding:24px;

    backdrop-filter:blur(10px);

}

.stat h3{

    font-size:36px;

    color:var(--primary);

    margin-bottom:8px;

}

.stat p{

    margin:0;

    font-size:15px;

    color:#cbd5e1;

}

/* SECTIONS */

.section{

    padding:120px 0;

}

.section.dark{

    background:var(--dark-2);

}

/* SECTION TITLE */

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:var(--primary);

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

    font-size:14px;

}

.section-title h2{

    font-size:48px;

    margin-top:14px;

    font-family:'Montserrat',sans-serif;

}

.section-title p{

    max-width:850px;

    margin:20px auto 0;

    color:var(--gray-light);

    font-size:18px;

}

/* GRID */

.grid{

    display:grid;

    gap:30px;

}

/* SERVICES GRID */

.services-grid{

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

}

/* CARD */

.card{

    background:rgba(255,255,255,0.03);

    border:1px solid var(--border);

    border-radius:22px;

    overflow:hidden;

    transition:0.4s;

    position:relative;

}

.card:hover{

    transform:translateY(-8px);

    border-color:rgba(255,255,255,0.18);

    box-shadow:var(--shadow);

}

/* CARD IMAGE */

.card img{

    width:100%;

    height:250px;

    object-fit:cover;

}

/* CARD CONTENT */

.card-content{

    padding:30px;

}

.card h3{

    font-size:28px;

    margin-bottom:16px;

    font-family:'Montserrat',sans-serif;

}

.card p{

    color:#cbd5e1;

    margin-bottom:24px;

}

/* CARD LIST */

.card ul{

    list-style:none;

}

.card ul li{

    margin-bottom:12px;

    color:#d1d5db;

}

/* FEATURES */

.features{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:24px;

    margin-top:50px;

}

/* FEATURE */

.feature{

    background:rgba(255,255,255,0.03);

    border:1px solid var(--border);

    border-radius:18px;

    padding:32px;

    transition:0.3s;

}

.feature:hover{

    transform:translateY(-5px);

    border-color:rgba(255,255,255,0.15);

}

.feature h3{

    margin-top:18px;

    margin-bottom:14px;

    font-size:24px;

}

.feature p{

    color:#cbd5e1;

}

/* GALLERY */

.gallery{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:20px;

}

.gallery img{

    width:100%;

    height:260px;

    object-fit:cover;

    border-radius:20px;

    transition:0.4s;

}

.gallery img:hover{

    transform:scale(1.03);

}

/* PROCESS */

.process{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:24px;

}

.process-step{

    background:rgba(255,255,255,0.03);

    border:1px solid var(--border);

    border-radius:20px;

    padding:30px;

    position:relative;

}

.process-number{

    width:60px;
    height:60px;

    background:var(--primary);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    font-weight:800;

    margin-bottom:22px;

}

/* CTA */

.cta{

    padding:130px 0;

    text-align:center;

    background:linear-gradient(
        135deg,
        #111827,
        #1f2937
    );

    position:relative;

    overflow:hidden;

}

.cta::before{

    content:'';

    position:absolute;

    width:600px;
    height:600px;

    background:rgba(214,40,40,0.12);

    border-radius:50%;

    top:-250px;
    right:-250px;

    filter:blur(80px);

}

.cta h2{

    position:relative;

    z-index:2;

    font-size:56px;

    max-width:900px;

    margin:0 auto 28px;

    font-family:'Montserrat',sans-serif;

}

.cta p{

    position:relative;

    z-index:2;

    max-width:800px;

    margin:0 auto 40px;

    color:#d1d5db;

    font-size:20px;

}

/* CONTACT */

.contact-box{

    background:rgba(255,255,255,0.03);

    border:1px solid var(--border);

    border-radius:24px;

    padding:50px;

    text-align:center;

}

.contact-box h3{

    font-size:38px;

    margin-bottom:20px;

}

.contact-info{

    margin-top:30px;

}

.contact-info p{

    margin-bottom:12px;

    color:#d1d5db;

}

/* FOOTER */

footer{

    background:#0a0c10;

    border-top:1px solid rgba(255,255,255,0.05);

    padding:70px 0 40px;

}

.footer-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:40px;

}

.footer-logo img{

    width:180px;

    margin-bottom:20px;

}

.footer h3{

    margin-bottom:18px;

}

.footer p,
.footer a{

    color:#cbd5e1;

    text-decoration:none;

    margin-bottom:10px;

    display:block;

}

.footer a:hover{

    color:var(--primary);

}

/* COPYRIGHT */

.copyright{

    text-align:center;

    margin-top:50px;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,0.05);

    color:#9ca3af;

}

/* ANIMATION */

.fade{

    opacity:0;

    transform:translateY(50px);

    transition:all 1s ease;

}

.fade.show{

    opacity:1;

    transform:translateY(0);

}

/* RESPONSIVE */

@media(max-width:1200px){

.hero-content h1{

    font-size:58px;

}

}

@media(max-width:992px){

.hero-content h1{

    font-size:50px;

}

.section-title h2{

    font-size:40px;

}

.cta h2{

    font-size:46px;

}

.hero-stats{

    grid-template-columns:1fr;

}

}

@media(max-width:768px){

.nav-links{

    display:none;

}

.logo img{

    width:150px;

}

.hero{

    min-height:auto;

    padding:160px 0 120px;

}

.hero-content{

    text-align:center;

}

.hero-content h1{

    font-size:40px;

}

.hero-content p{

    font-size:18px;

}

.hero-buttons{

    flex-direction:column;

}

.btn-primary,
.btn-secondary,
.btn-header{

    width:100%;

}

.section{

    padding:90px 0;

}

.section-title h2{

    font-size:34px;

}

.cta h2{

    font-size:36px;

}

.contact-box{

    padding:35px;

}

}

@media(max-width:480px){

.hero-content h1{

    font-size:32px;

}

.logo img{

    width:130px;
    height:auto;

}

}

.section-title h2{

    font-size:28px;

}

.cta h2{

    font-size:28px;

}

.hero-content p,
.section-title p,
.cta p{

    font-size:16px;

}

.card h3{

    font-size:24px;

}

.contact-box h3{

    font-size:28px;

}

}