:root{
    --supremo-dark:#050505;
    --supremo-gray:#6B7280;
    --supremo-light:#F5F7FA;
    --supremo-gold:#C8A24A;
    --supremo-white:#FFFFFF;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
    color:#333;
    line-height:1.7;
    overflow-x:hidden;
}

/* Navbar */

.navbar{
    padding:15px 0;
    background:#fff !important;
}

.navbar-brand img{
    height:80px;
    width:auto;
}

.nav-link{
    font-weight:500;
    color:var(--supremo-dark) !important;
    margin-left:10px;
}

/* Botões */

.btn-supremo{
    background:var(--supremo-dark);
    border:none;
    color:#fff;
    padding:12px 28px;
    border-radius:8px;
    transition:.3s;
}

.btn-supremo:hover{
    background:var(--supremo-gold);
    color:#fff;
}

.btn-outline-supremo{
    border:2px solid var(--supremo-dark);
    color:var(--supremo-dark);
    border-radius:8px;
    padding:12px 28px;
}

.btn-outline-supremo:hover{
    background:var(--supremo-dark);
    color:#fff;
}

/* Hero Premium */

.hero-premium{
    position:relative;
    background:
        linear-gradient(120deg, #ffffff 0%, #ffffff 48%, rgba(5,5,5,.04) 48%, rgba(5,5,5,.04) 100%),
        radial-gradient(circle at top left, rgba(200,162,74,.12), transparent 35%);
    padding:90px 0 50px;
    overflow:hidden;
}

.hero-premium::before{
    content:"S";
    position:absolute;
    left:-40px;
    top:80px;
    font-size:28rem;
    font-weight:800;
    color:rgba(0,0,0,.025);
    line-height:1;
    z-index:0;
}

.hero-premium .container{
    position:relative;
    z-index:1;
}

.hero-title span{
    color:var(--supremo-gold);
    font-weight:700;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-top:30px;
}

.hero-image-box{
    position:relative;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
    background:#111;
}

.hero-image-box::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.05) 0%,
        rgba(0,0,0,.15) 50%,
        rgba(0,0,0,.35) 100%
    );
}

.hero-business-img{
    width:100%;
    height:100%;
    min-height:460px;
    object-fit:cover;
    display:block;
}
.hero-floating-card{
    position:absolute;
    left:28px;
    bottom:28px;
    right:28px;
    background:rgba(255,255,255,.94);
    border-left:5px solid var(--supremo-gold);
    border-radius:18px;
    padding:18px;
    display:flex;
    gap:15px;
    align-items:center;
    z-index:2;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.hero-floating-card i{
    color:var(--supremo-gold);
    font-size:2rem;
}

.hero-floating-card strong,
.hero-floating-card span{
    display:block;
}

.hero-floating-card span{
    color:var(--supremo-gray);
    font-size:.95rem;
}

.hero-features{
    margin-top:55px;
    background:#fff;
    border-radius:22px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    overflow:visible;
}

.hero-feature-item{
    display:flex;
    gap:16px;
    align-items:flex-start;
    padding:24px;
    border-right:1px solid #eef0f3;
    min-width:0;
}

.hero-feature-item div{
    min-width:0;
}

.hero-feature-item strong{
    font-size:1rem;
    line-height:1.25;
    word-break:normal;
    overflow-wrap:normal;
}

.hero-feature-item span{
    font-size:.92rem;
}

.hero-feature-item div{
    min-width:0;
}

.hero-feature-item strong{
    font-size:1rem;
    line-height:1.25;
    word-break:normal;
    overflow-wrap:normal;
}

.hero-feature-item span{
    font-size:.92rem;
}

.hero-feature-item:last-child{
    border-right:none;
}

.hero-feature-item i{
    color:var(--supremo-gold);
    font-size:2.1rem;
}

.hero-feature-item strong,
.hero-feature-item span{
    display:block;
}

.hero-feature-item strong{
    color:var(--supremo-dark);
    margin-bottom:5px;
}

.hero-feature-item span{
    color:var(--supremo-gray);
    font-size:.95rem;
}

@media(max-width:991px){
    .hero-premium{
        padding:70px 0 40px;
        background:#fff;
    }

    .hero-business-img{
        height:380px;
    }

    .hero-features{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:576px){
    .hero-features{
        grid-template-columns:1fr;
    }

    .hero-feature-item{
        border-right:none;
        border-bottom:1px solid #eef0f3;
    }

    .hero-feature-item:last-child{
        border-bottom:none;
    }

    .hero-actions .btn{
        width:100%;
    }
}

/* Seções */

.section-padding{
    padding:90px 0;
}

.section-badge{
    color:var(--supremo-gold);
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title{
    font-size:2.3rem;
    font-weight:700;
    margin-top:10px;
    margin-bottom:25px;
    color:var(--supremo-dark);
}

.bg-light-soft{
    background:var(--supremo-light);
}

.bg-dark-supremo{
    background:var(--supremo-dark);
}

/* Sobre Premium */

.about-premium{
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position:relative;
}

.about-lead{
    color:var(--supremo-gray);
    font-size:1.15rem;
}

.about-card{
    background:#fff;
    border-radius:24px;
    padding:36px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    border:1px solid #eef0f3;
    position:relative;
    overflow:hidden;
}

.about-card::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(200,162,74,.12);
    border-radius:50%;
    right:-70px;
    top:-70px;
}

.about-card-header{
    display:flex;
    gap:18px;
    align-items:center;
    padding-bottom:24px;
    margin-bottom:24px;
    border-bottom:1px solid #eef0f3;
    position:relative;
    z-index:1;
}

.about-card-header i{
    width:58px;
    height:58px;
    border-radius:16px;
    background:var(--supremo-dark);
    color:var(--supremo-gold);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.8rem;
}

.about-card-header strong,
.about-card-header span{
    display:block;
}

.about-card-header strong{
    font-size:1.15rem;
    color:var(--supremo-dark);
}

.about-card-header span{
    color:var(--supremo-gray);
}

.about-list{
    position:relative;
    z-index:1;
}

.about-list-item{
    display:flex;
    gap:14px;
    align-items:flex-start;
    margin-bottom:18px;
    color:#374151;
}

.about-list-item:last-child{
    margin-bottom:0;
}

.about-list-item i{
    color:var(--supremo-gold);
    font-size:1.2rem;
    margin-top:3px;
}
/* Serviços */

.service-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    text-align:center;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card i{
    font-size:2.5rem;
    color:var(--supremo-gold);
    margin-bottom:20px;
}

.service-card h3{
    font-size:1.2rem;
    margin-bottom:15px;
}

/* Diferenciais */

.differential-card{
    background:rgba(255,255,255,.08);
    padding:30px;
    border-radius:16px;
    height:100%;
}

.differential-card i{
    font-size:2rem;
    color:var(--supremo-gold);
    margin-bottom:15px;
}

.differential-card h3{
    font-size:1.2rem;
}

/* CTA */

.cta-section{
    background:var(--supremo-gold);
    color:#fff;
    padding:80px 0;
}

.cta-section h2{
    font-size:2.3rem;
    font-weight:700;
}

/* Contato */

.contact-card{
    background:#fff;
    padding:30px;
    border-radius:16px;
    text-align:center;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.contact-card i{
    font-size:2rem;
    color:var(--supremo-gold);
    margin-bottom:15px;
}

.contact-card a{
    text-decoration:none;
    color:var(--supremo-dark);
}

.map-box{
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* Responsivo */

@media(max-width:991px){

    .hero-title{
        font-size:2.2rem;
    }

    .section-title{
        font-size:1.9rem;
    }

    .hero-card{
        margin-top:40px;
    }
}

/* Footer */

.footer-supremo{
    background:#050505;
    color:#fff;
    padding:60px 0 25px;
}

.footer-logo{
    max-width:220px;
    background:#fff;
    padding:10px;
    border-radius:12px;
}

.footer-supremo h4{
    color:#C8A24A;
    font-size:1.2rem;
    margin-bottom:20px;
}

.footer-supremo p,
.footer-supremo li{
    color:#d1d5db;
}

.footer-supremo a{
    color:#d1d5db;
    text-decoration:none;
}

.footer-supremo a:hover{
    color:#C8A24A;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:8px;
}

.footer-supremo hr{
    border-color:rgba(255,255,255,.15);
    margin:35px 0 20px;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    gap:15px;
    flex-wrap:wrap;
    font-size:.9rem;
}

/* WhatsApp flutuante */

.whatsapp-float{
    position:fixed;
    right:22px;
    bottom:22px;
    width:58px;
    height:58px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    z-index:999;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    text-decoration:none;
    transition:.3s;
}

.whatsapp-float:hover{
    transform:scale(1.08);
    color:#fff;
}

@media(max-width:768px){
    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }
}

.navbar-scrolled{
    box-shadow:0 8px 25px rgba(0,0,0,.08) !important;
}