:root{

    --primary:#B32037;
    --primary-hover:#981C2F;

    --text:#1F2937;
    --text-light:#6B7280;

    --background:#F5F7FA;
    --surface:#FFFFFF;

    --border:#E5E7EB;

    --shadow:
        0 10px 30px rgba(15,23,42,.08);
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:
        "Inter",
        Arial,
        sans-serif;

    background:var(--background);

    color:var(--text);

    overflow-x:hidden;
}

/* NAVBAR */

.custom-navbar{

    background:
        rgba(255,255,255,.92);

    backdrop-filter:blur(14px);

    border-bottom:
        1px solid var(--border);

    padding:16px 0;

    transition:.3s;
}

.custom-navbar.scrolled{

    padding:10px 0;

    box-shadow:
        0 10px 25px rgba(0,0,0,.04);
}

.brand-logo{

    display:flex;
    flex-direction:column;

    text-decoration:none;

    line-height:1;
}

.brand-global{

    font-weight:800;

    font-size:1.1rem;

    letter-spacing:4px;

    color:#111827;
}

.brand-tech{

    font-size:.7rem;

    letter-spacing:5px;

    color:var(--primary);
}

.nav-link{

    color:#374151 !important;

    font-weight:500;

    margin-left:18px;
}

.nav-link:hover{

    color:var(--primary) !important;
}

/* HERO */

.hero-section{

    padding:
        170px 0 100px;
}

.hero-badge{

    display:inline-block;

    background:#FDECEF;

    color:var(--primary);

    padding:10px 18px;

    border-radius:999px;

    font-size:.85rem;

    font-weight:600;

    margin-bottom:24px;
}

.hero-title{

    font-size:
        clamp(2.5rem,5vw,4.5rem);

    font-weight:800;

    line-height:1.05;

    margin-bottom:28px;
}

.hero-description{

    font-size:1.1rem;

    color:var(--text-light);

    line-height:1.8;

    max-width:600px;
}

.hero-buttons{

    display:flex;

    gap:16px;

    flex-wrap:wrap;

    margin-top:38px;
}

.custom-btn{

    background:var(--primary);

    border:none;

    border-radius:14px;

    padding:14px 28px;

    font-weight:600;
}

.custom-btn:hover{

    background:var(--primary-hover);
}

.custom-outline-btn{

    border-radius:14px;

    border:1px solid #D1D5DB;

    color:#374151;
}

.custom-outline-btn:hover{

    background:#fff;

    color:var(--primary);

    border-color:var(--primary);
}

.hero-stats{

    display:flex;

    gap:40px;

    flex-wrap:wrap;

    margin-top:50px;
}

.hero-stat{

    display:flex;

    flex-direction:column;
}

.hero-stat strong{

    font-size:1.5rem;

    color:var(--primary);
}

.hero-stat span{

    color:var(--text-light);
}

.hero-card{

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    box-shadow:var(--shadow);
}

.hero-card img{

    width:100%;

    display:block;
}

/* SEÇÕES */

section{

    padding:90px 0;
}

.section-header{

    margin-bottom:60px;
}

.section-badge{

    display:inline-block;

    background:#FDECEF;

    color:var(--primary);

    padding:10px 18px;

    border-radius:999px;

    font-size:.8rem;

    font-weight:700;

    margin-bottom:18px;
}

.section-title{

    font-size:2.2rem;

    font-weight:700;

    margin-bottom:18px;
}

/* SERVIÇOS */

.service-card{

    background:#fff;

    border-radius:24px;

    padding:36px;

    height:100%;

    box-shadow:var(--shadow);

    transition:.3s;
}

.service-card:hover{

    transform:
        translateY(-8px);
}

.service-icon{

    width:70px;
    height:70px;

    border-radius:18px;

    background:#FDECEF;

    display:flex;

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

    color:var(--primary);

    font-size:28px;

    margin-bottom:24px;
}

.service-card h4{

    margin-bottom:16px;

    font-weight:700;
}

.service-card p{

    color:var(--text-light);

    line-height:1.8;
}

/* EXPERIÊNCIA */

.experience-section{

    background:#EEF1F5;
}

.experience-card{

    background:#FFFFFF;

    border-radius:24px;

    padding:36px;

    height:100%;

    box-shadow:var(--shadow);

    text-align:left;

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

.experience-card i{

    width:70px;
    height:70px;

    border-radius:18px;

    background:#FDECEF;

    display:flex;

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

    color:var(--primary);

    font-size:28px;

    margin-bottom:24px;
}

.experience-card h4{

    margin-bottom:14px;

    font-weight:700;
}

.experience-card p{

    color:var(--text-light);

    line-height:1.8;
}

.experience-card:hover{

    transform:
        translateY(-8px);

    box-shadow:
        0 20px 40px rgba(15,23,42,.12);
}


/* CTA */

.cta-section{

    background:
        linear-gradient(
            135deg,
            #B32037,
            #8D1628
        );

    color:#fff;
}

.cta-title{

    font-size:2.5rem;

    font-weight:800;

    margin:24px 0;
}

.cta-description{

    max-width:700px;

    margin:auto;

    line-height:1.8;

    opacity:.92;
}

/* CONTATO */

.contact-box{

    background:#fff;

    padding:50px;

    border-radius:28px;

    box-shadow:var(--shadow);
}

.custom-input{

    border-radius:14px;

    padding:16px 18px;

    border:1px solid #D1D5DB;
}

.custom-input:focus{

    border-color:var(--primary);

    box-shadow:
        0 0 0 4px rgba(179,32,55,.08);
}

/* FOOTER */

.footer{

    background:#FFFFFF;

    border-top:1px solid var(--border);

    padding:28px 0;
}

.footer-content{

    display:flex;

    justify-content:space-between;

    flex-wrap:wrap;

    gap:20px;
}

.footer-links{

    display:flex;

    gap:20px;
}

.footer-links a{

    color:var(--text-light);

    text-decoration:none;
}

/* MOBILE */

@media(max-width:991px){

    .navbar-collapse{

        background:#fff;

        padding:24px;

        border-radius:20px;

        margin-top:16px;

        box-shadow:var(--shadow);
    }

    .hero-section{

        text-align:center;

        padding-top:140px;
    }

    .hero-description{

        margin:auto;
    }

    .hero-buttons{

        justify-content:center;
    }

    .hero-stats{

        justify-content:center;
    }

    .hero-card{

        margin-top:30px;
    }
}

@media(max-width:576px){

    .hero-title{

        font-size:2.3rem;
    }

    .section-title{

        font-size:1.8rem;
    }

    .service-card,
    .experience-card,
    .contact-box{

        padding:28px;
    }

    .footer-content{

        flex-direction:column;

        text-align:center;
    }

    .footer-links{

        justify-content:center;
    }
}
    /* =========================================
   HERO VISUAL MODERNO
========================================= */

.hero-visual{

    position:relative;

    min-height:520px;

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

/* CARD PRINCIPAL */

.hero-main-card{

    position:relative;

    width:100%;
    max-width:560px;

    border-radius:32px;

    overflow:hidden;

    background:#ffffff;

    box-shadow:
        0 25px 60px rgba(15,23,42,.12);

    border:
        1px solid rgba(15,23,42,.05);
}

.hero-main-card img{

    width:100%;
    height:520px;

    object-fit:cover;

    display:block;
}

.hero-main-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            180deg,
            rgba(15,23,42,.10),
            rgba(15,23,42,.72)
        );

    z-index:1;
}

.hero-main-content{

    position:absolute;

    left:40px;
    right:40px;
    bottom:40px;

    z-index:2;

    color:#ffffff;
}

.hero-card-badge{

    display:inline-flex;

    align-items:center;

    padding:
        10px 18px;

    border-radius:999px;

    background:
        rgba(255,255,255,.16);

    backdrop-filter:blur(10px);

    font-size:.85rem;

    font-weight:600;

    margin-bottom:20px;
}

.hero-main-content h3{

    font-size:2rem;

    font-weight:700;

    line-height:1.2;

    margin-bottom:16px;
}

.hero-main-content p{

    font-size:1rem;

    line-height:1.7;

    color:
        rgba(255,255,255,.88);

    margin:0;
}

/* FLOATING CARDS */

.floating-card{

    position:absolute;

    background:#ffffff;

    border-radius:22px;

    padding:
        18px 22px;

    display:flex;
    align-items:center;
    gap:16px;

    box-shadow:
        0 15px 35px rgba(15,23,42,.10);

    border:
        1px solid rgba(15,23,42,.05);

    z-index:3;

    animation:
        floating 4s ease-in-out infinite;
}

.floating-card i{

    width:52px;
    height:52px;

    border-radius:16px;

    background:#A11D2E;

    color:#ffffff;

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

    font-size:1.2rem;
}

.floating-card strong{

    display:block;

    color:#0F172A;

    font-size:.95rem;
}

.floating-card span{

    color:#64748B;

    font-size:.85rem;
}

/* POSIÇÕES */

.floating-card-1{

    top:40px;
    left:-30px;
}

.floating-card-2{

    top:220px;
    right:-40px;
}

.floating-card-3{

    bottom:30px;
    left:20px;
}

/* ANIMAÇÃO */

@keyframes floating{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0px);
    }
}

/* RESPONSIVO */

@media(max-width:991px){

    .hero-visual{

        margin-top:20px;

        min-height:auto;
    }

    .hero-main-card img{

        height:420px;
    }

    .floating-card{

        position:relative;

        top:auto;
        right:auto;
        left:auto;
        bottom:auto;

        margin-top:18px;

        width:100%;
    }

    .hero-visual{

        display:block;
    }
}

@media(max-width:576px){

    .hero-main-card img{

        height:340px;
    }

    .hero-main-content{

        left:24px;
        right:24px;
        bottom:24px;
    }

    .hero-main-content h3{

        font-size:1.5rem;
    }
}

/* TECNOLOGIAS */

.section-description{

    max-width:800px;

    margin:0 auto;

    color:var(--text-light);

    line-height:1.8;
}

.technologies-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(250px,1fr));

    gap:24px;
}

.tech-item{

    background:#fff;

    border-radius:24px;

    padding:32px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.3s;

    border:1px solid transparent;

    height:100%;
}

.tech-item:hover{

    transform:translateY(-8px);

    border-color:var(--primary);
}

.tech-item i{

    font-size:2.5rem;

    color:var(--primary);

    margin-bottom:20px;

    display:block;
}

.tech-item h4{

    font-weight:700;

    margin-bottom:14px;
}

.tech-item p{

    color:var(--text-light);

    line-height:1.7;

    margin:0;
}    
