/* =====================================================
   PLANO EMPRESARIAL
   HERO
===================================================== */

.enterprise-hero{

    padding:180px 0 120px;

    background:
    linear-gradient(180deg,#F8F5F1 0%,#ffffff 100%);

    overflow:hidden;

}

.hero-grid{

    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:80px;
    align-items:center;

}

.hero-label{

    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(214,40,40,.08);

    color:var(--primary);

    font-size:13px;
    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:25px;

}

.enterprise-hero h1{

    font-size:64px;

    line-height:1.05;

    letter-spacing:-2px;

    color:#111827;

    margin-bottom:28px;

    max-width:760px;

}

.enterprise-hero p{

    max-width:700px;

    font-size:19px;

    line-height:1.9;

    color:#667085;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-top:45px;

}

.hero-features{

    margin-top:45px;

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.hero-features div{

    background:#fff;

    border:1px solid #ECECEC;

    border-radius:18px;

    padding:18px 24px;

    min-width:170px;

    box-shadow:0 12px 30px rgba(0,0,0,.05);

}

.hero-features strong{

    display:block;

    font-size:20px;

    color:#111827;

    margin-bottom:6px;

}

.hero-features span{

    color:#667085;

    font-size:14px;

}

.hero-right{

    display:flex;

    justify-content:center;

}

.hero-right img{

    width:100%;

    max-width:560px;

    border-radius:32px;

    box-shadow:

    0 35px 80px rgba(0,0,0,.12);

}



/* =====================================================
   INTRO
===================================================== */

.enterprise-intro{

    padding:130px 0;

    background:#fff;

}

.intro-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:70px;

}

.intro-card{

    background:#fff;

    border:1px solid #ECECEC;

    border-radius:26px;

    padding:40px;

    transition:.35s;

    box-shadow:

    0 15px 45px rgba(0,0,0,.05);

}

.intro-card:hover{

    transform:translateY(-10px);

    box-shadow:

    0 30px 60px rgba(0,0,0,.10);

}

.intro-icon{

    width:72px;
    height:72px;

    display:flex;

    justify-content:center;
    align-items:center;

    border-radius:18px;

    background:#FDF0F0;

    color:var(--primary);

    margin-bottom:28px;

}

.intro-icon svg{

    width:34px;
    height:34px;

    stroke:currentColor;

}

.intro-card h3{

    font-size:28px;

    color:#111827;

    margin-bottom:18px;

}

.intro-card p{

    color:#667085;

    line-height:1.9;

}



/* =====================================================
   PROBLEMAS
===================================================== */

.enterprise-problems{

    padding:130px 0;

    background:#F8F5F1;

}

.problems-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.problem-card{

    background:#fff;

    border-radius:24px;

    padding:38px;

    border:1px solid #ECE8E3;

    transition:.35s;

}

.problem-card:hover{

    transform:translateY(-8px);

    border-color:rgba(214,40,40,.25);

    box-shadow:

    0 25px 60px rgba(0,0,0,.08);

}

.problem-card h3{

    font-size:28px;

    color:#111827;

    margin-bottom:18px;

}

.problem-card p{

    color:#667085;

    line-height:1.9;

}



/* =====================================================
   TÍTULOS
===================================================== */

.enterprise-intro .section-title,
.enterprise-problems .section-title{

    max-width:850px;

    margin:0 auto;

    text-align:center;

}

.enterprise-intro .section-title h2,
.enterprise-problems .section-title h2{

    font-size:52px;

    color:#111827;

    line-height:1.15;

    margin-bottom:22px;

}

.enterprise-intro .section-title p,
.enterprise-problems .section-title p{

    font-size:18px;

    line-height:1.9;

    color:#667085;

}



/* =====================================================
   RESPONSIVO
===================================================== */

@media(max-width:1100px){

.hero-grid{

grid-template-columns:1fr;

gap:60px;

}

.intro-grid{

grid-template-columns:1fr;

}

.problems-grid{

grid-template-columns:1fr;

}

.enterprise-hero h1{

font-size:52px;

}

}

@media(max-width:768px){

.enterprise-hero{

padding:140px 0 90px;

}

.enterprise-hero h1{

font-size:40px;

}

.enterprise-hero p{

font-size:17px;

}

.hero-buttons{

flex-direction:column;

}

.hero-features{

flex-direction:column;

}

.hero-features div{

width:100%;

}

.enterprise-intro,
.enterprise-problems{

padding:90px 0;

}

.enterprise-intro .section-title h2,
.enterprise-problems .section-title h2{

font-size:34px;

}

.intro-card,
.problem-card{

padding:30px;

}

.intro-card h3,
.problem-card h3{

font-size:24px;

}

}
/* =====================================================
   COMO FUNCIONA
===================================================== */

.enterprise-process{

    padding:130px 0;

    background:#fff;

}

.enterprise-process .section-title{

    max-width:850px;

    margin:0 auto 80px;

    text-align:center;

}

.enterprise-process .section-title h2{

    font-size:52px;

    color:#111827;

    margin-bottom:22px;

}

.enterprise-process .section-title p{

    font-size:18px;

    line-height:1.9;

    color:#667085;

}

.timeline{

    position:relative;

    max-width:1000px;

    margin:auto;

}

.timeline::before{

    content:"";

    position:absolute;

    left:38px;

    top:0;

    bottom:0;

    width:2px;

    background:#ECECEC;

}

.timeline-item{

    position:relative;

    display:flex;

    gap:35px;

    margin-bottom:45px;

    align-items:flex-start;

}

.timeline-number{

    width:78px;

    height:78px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    font-weight:700;

    flex-shrink:0;

    box-shadow:0 15px 40px rgba(214,40,40,.25);

    position:relative;

    z-index:2;

}

.timeline-content{

    flex:1;

    background:#fff;

    border:1px solid #ECECEC;

    border-radius:24px;

    padding:32px;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

}

.timeline-content:hover{

    transform:translateY(-6px);

    box-shadow:0 25px 55px rgba(0,0,0,.08);

}

.timeline-content h3{

    font-size:28px;

    color:#111827;

    margin-bottom:16px;

}

.timeline-content p{

    color:#667085;

    line-height:1.9;

}





/* =====================================================
   SERVIÇOS
===================================================== */

.enterprise-services{

    padding:130px 0;

    background:#F8F5F1;

}

.enterprise-services .section-title{

    max-width:850px;

    margin:0 auto 70px;

    text-align:center;

}

.enterprise-services .section-title h2{

    font-size:52px;

    color:#111827;

    margin-bottom:20px;

}

.enterprise-services .section-title p{

    font-size:18px;

    color:#667085;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.service-card{

    background:#fff;

    border:1px solid #ECECEC;

    border-radius:24px;

    padding:38px;

    transition:.35s;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.service-card:hover{

    transform:translateY(-8px);

    border-color:rgba(214,40,40,.25);

    box-shadow:0 25px 55px rgba(0,0,0,.08);

}

.service-card h3{

    font-size:25px;

    margin-bottom:16px;

    color:#111827;

}

.service-card p{

    color:#667085;

    line-height:1.8;

}





/* =====================================================
   COMPARAÇÃO
===================================================== */

.enterprise-comparison{

    padding:140px 0;

    background:#fff;

}

.enterprise-comparison .section-title{

    max-width:850px;

    margin:0 auto 70px;

    text-align:center;

}

.enterprise-comparison .section-title h2{

    font-size:52px;

    margin-bottom:22px;

    color:#111827;

}

.enterprise-comparison .section-title p{

    font-size:18px;

    color:#667085;

}

.comparison-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

.comparison-card{

    position:relative;

    background:#fff;

    border:1px solid #ECECEC;

    border-radius:28px;

    padding:45px;

    transition:.35s;

    box-shadow:0 20px 55px rgba(0,0,0,.05);

}

.comparison-card:hover{

    transform:translateY(-8px);

}

.comparison-card.featured{

    border:2px solid var(--primary);

    box-shadow:0 25px 60px rgba(214,40,40,.12);

}

.featured-label{

    position:absolute;

    top:-15px;

    right:30px;

    background:var(--primary);

    color:#fff;

    padding:10px 20px;

    border-radius:999px;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

}

.comparison-card h3{

    font-size:34px;

    margin-bottom:35px;

    color:#111827;

}

.comparison-card ul{

    list-style:none;

    padding:0;

    margin:0;

}

.comparison-card li{

    padding:16px 0;

    border-bottom:1px solid #F1F1F1;

    color:#4B5563;

    font-size:17px;

    line-height:1.6;

}

.comparison-card li:last-child{

    border:none;

}





/* =====================================================
   RESPONSIVO
===================================================== */

@media(max-width:1100px){

.services-grid{

grid-template-columns:repeat(2,1fr);

}

.comparison-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.enterprise-process,
.enterprise-services,
.enterprise-comparison{

padding:90px 0;

}

.enterprise-process .section-title h2,
.enterprise-services .section-title h2,
.enterprise-comparison .section-title h2{

font-size:34px;

}

.timeline::before{

display:none;

}

.timeline-item{

flex-direction:column;

gap:20px;

}

.timeline-number{

width:65px;

height:65px;

font-size:18px;

}

.timeline-content{

padding:25px;

}

.timeline-content h3{

font-size:23px;

}

.services-grid{

grid-template-columns:1fr;

}

.service-card{

padding:30px;

}

.comparison-card{

padding:30px;

}

.comparison-card h3{

font-size:28px;

}

}
/* =====================================================
   LOGÍSTICA
===================================================== */

.enterprise-logistics{

    padding:140px 0;

    background:#F8F5F1;

}

.logistics-grid{

    display:grid;

    grid-template-columns:1fr 520px;

    gap:80px;

    align-items:center;

}

.enterprise-logistics .section-label{

    display:inline-block;

    margin-bottom:18px;

    color:var(--primary);

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.enterprise-logistics h2{

    font-size:52px;

    line-height:1.15;

    color:#111827;

    margin-bottom:28px;

}

.enterprise-logistics p{

    font-size:18px;

    line-height:1.9;

    color:#667085;

    margin-bottom:22px;

}

.logistics-box{

    background:#fff;

    border-radius:28px;

    border:1px solid #ECECEC;

    overflow:hidden;

    box-shadow:0 25px 60px rgba(0,0,0,.06);

}

.logistics-box div{

    padding:26px 34px;

    font-size:17px;

    font-weight:600;

    color:#111827;

    border-bottom:1px solid #F1F1F1;

    transition:.3s;

}

.logistics-box div:last-child{

    border-bottom:none;

}

.logistics-box div:hover{

    background:#FDF7F7;

    padding-left:42px;

    color:var(--primary);

}





/* =====================================================
   ESTATÍSTICAS
===================================================== */

.enterprise-stats{

    padding:120px 0;

    background:#fff;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.stat-card{

    background:#fff;

    border:1px solid #ECECEC;

    border-radius:24px;

    padding:40px;

    text-align:center;

    transition:.35s;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.stat-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(0,0,0,.10);

}

.stat-card h3{

    font-size:46px;

    color:var(--primary);

    margin-bottom:18px;

    font-weight:800;

}

.stat-card p{

    color:#667085;

    line-height:1.8;

}





/* =====================================================
   FAQ
===================================================== */

.enterprise-faq{

    padding:140px 0;

    background:#F8F5F1;

}

.enterprise-faq .section-title{

    max-width:850px;

    margin:0 auto 70px;

    text-align:center;

}

.enterprise-faq .section-title h2{

    font-size:52px;

    color:#111827;

    margin-bottom:20px;

}

.enterprise-faq .section-title p{

    font-size:18px;

    color:#667085;

}

.faq-list{

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:#fff;

    border-radius:20px;

    margin-bottom:18px;

    overflow:hidden;

    border:1px solid #ECECEC;

    transition:.3s;

}

.faq-item:hover{

    box-shadow:0 18px 40px rgba(0,0,0,.05);

}

.faq-question{

    width:100%;

    padding:28px 35px;

    border:none;

    background:none;

    cursor:pointer;

    text-align:left;

    font-size:20px;

    font-weight:700;

    color:#111827;

    position:relative;

}

.faq-question::after{

    content:"+";

    position:absolute;

    right:35px;

    top:50%;

    transform:translateY(-50%);

    font-size:28px;

    color:var(--primary);

    transition:.3s;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:.4s;

}

.faq-answer p{

    padding:0 35px 30px;

    color:#667085;

    line-height:1.9;

}

.faq-item.active .faq-answer{

    max-height:250px;

}

.faq-item.active .faq-question::after{

    transform:translateY(-50%) rotate(45deg);

}





/* =====================================================
   CTA FINAL
===================================================== */

.enterprise-cta{

    padding:140px 0;

    background:#fff;

}

.cta-box{

    max-width:1050px;

    margin:auto;

    text-align:center;

    background:linear-gradient(135deg,#D62828,#B71C1C);

    border-radius:34px;

    padding:90px 70px;

    color:#fff;

    box-shadow:0 35px 90px rgba(214,40,40,.25);

}

.cta-box .section-label{

    display:inline-block;

    margin-bottom:20px;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    opacity:.9;

}

.cta-box h2{

    font-size:54px;

    line-height:1.15;

    margin-bottom:25px;

}

.cta-box p{

    max-width:760px;

    margin:0 auto 45px;

    line-height:1.9;

    font-size:19px;

    color:rgba(255,255,255,.9);

}

.cta-box .btn-primary{

    background:#fff;

    color:var(--primary);

}

.cta-box .btn-primary:hover{

    background:#F3F3F3;

}

.cta-box .btn-secondary{

    border:2px solid rgba(255,255,255,.35);

    color:#fff;

    background:transparent;

}

.cta-box .btn-secondary:hover{

    background:rgba(255,255,255,.08);

}





/* =====================================================
   RESPONSIVO
===================================================== */

@media(max-width:1100px){

.logistics-grid{

grid-template-columns:1fr;

gap:60px;

}

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.enterprise-logistics,
.enterprise-stats,
.enterprise-faq,
.enterprise-cta{

padding:90px 0;

}

.enterprise-logistics h2,
.enterprise-faq .section-title h2,
.cta-box h2{

font-size:34px;

}

.enterprise-logistics p,
.cta-box p{

font-size:17px;

}

.logistics-box div{

padding:22px;

}

.stats-grid{

grid-template-columns:1fr;

}

.stat-card{

padding:30px;

}

.stat-card h3{

font-size:36px;

}

.faq-question{

padding:24px;

font-size:18px;

}

.faq-question::after{

right:24px;

}

.faq-answer p{

padding:0 24px 24px;

}

.cta-box{

padding:55px 30px;

}

.cta-box .hero-buttons{

flex-direction:column;

align-items:center;

}

.cta-box .hero-buttons a{

width:100%;

max-width:340px;

}

}
/* HERO PANEL */

.enterprise-panel{

    height:100%;

    background:#fff;

    border-radius:28px;

    padding:40px;

    border:1px solid #ECECEC;

    box-shadow:0 25px 60px rgba(0,0,0,.08);

    display:flex;

    flex-direction:column;

}

.panel-tag{

    align-self:flex-start;

    background:#FEECEC;

    color:var(--primary);

    padding:8px 18px;

    border-radius:999px;

    font-size:13px;

    font-weight:700;

    margin-bottom:20px;

}

.enterprise-panel h3{

    font-size:32px;

    color:#111827;

    margin-bottom:15px;

}

.enterprise-panel>p{

    color:#667085;

    line-height:1.7;

    margin-bottom:35px;

}

.panel-items{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.panel-item{

    display:flex;

    gap:18px;

    align-items:flex-start;

}

.panel-icon{

    width:52px;

    height:52px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#FEECEC;

    color:var(--primary);

    border-radius:14px;

}

.panel-icon svg{

    width:24px;

    height:24px;

}

.panel-item strong{

    display:block;

    color:#111827;

    margin-bottom:4px;

    font-size:17px;

}

.panel-item span{

    color:#6B7280;

    line-height:1.6;

    font-size:15px;

}

.panel-footer{

    margin-top:auto;

    background:linear-gradient(135deg,#D62828,#B71C1C);

    color:#fff;

    padding:22px;

    border-radius:18px;

    font-size:15px;

    line-height:1.7;

}
/* ==========================================================
   HERO - PLANO EMPRESARIAL PREMIUM
========================================================== */

.enterprise-hero{

    padding:150px 0 110px;

    background:
    radial-gradient(circle at top right, rgba(214,40,40,.05), transparent 40%),
    #F8F5F1;

}

.enterprise-hero .container{

    max-width:1400px;

}

.hero-grid{

    display:grid;

    grid-template-columns:58% 42%;

    gap:70px;

    align-items:center;

}

/* LEFT */

.hero-left h1{

    font-size:64px;

    line-height:1.05;

    letter-spacing:-2px;

    color:#111827;

    max-width:760px;

    margin:20px 0;

}

.hero-left>p{

    font-size:19px;

    line-height:1.9;

    color:#667085;

    max-width:720px;

}

.hero-label{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    background:#FEECEC;

    color:var(--primary);

    border-radius:999px;

    font-size:13px;

    font-weight:800;

    letter-spacing:1px;

    text-transform:uppercase;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin:45px 0;

}

/* TRUST */

.hero-trust{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:18px;

}

.trust-item{

    background:#fff;

    border-radius:18px;

    padding:22px;

    border:1px solid #ECECEC;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

    transition:.35s;

}

.trust-item:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.trust-item strong{

    display:block;

    margin-bottom:10px;

    color:#111827;

    font-size:17px;

    line-height:1.3;

}

.trust-item span{

    display:block;

    color:#6B7280;

    line-height:1.7;

    font-size:14px;

}

/* RIGHT */

.hero-right{

    display:flex;

    justify-content:flex-end;

}

.enterprise-panel{

    width:100%;

    background:#fff;

    border-radius:28px;

    border:1px solid #ECECEC;

    box-shadow:0 30px 80px rgba(0,0,0,.08);

    padding:38px;

    display:flex;

    flex-direction:column;

}

.panel-tag{

    align-self:flex-start;

    background:rgba(214,40,40,.10);

    color:var(--primary);

    padding:8px 16px;

    border-radius:999px;

    font-size:12px;

    font-weight:800;

    letter-spacing:1px;

    margin-bottom:20px;

}

.enterprise-panel h3{

    font-size:34px;

    line-height:1.2;

    color:#111827;

    margin-bottom:12px;

}

.enterprise-panel>p{

    color:#667085;

    line-height:1.7;

    margin-bottom:32px;

}

/* ITEMS */

.panel-items{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.panel-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

}

.panel-icon{

    width:56px;

    height:56px;

    border-radius:16px;

    background:#FEECEC;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

    color:var(--primary);

}

.panel-icon svg{

    width:25px;

    height:25px;

    stroke-width:2;

}

.panel-item strong{

    display:block;

    color:#111827;

    font-size:17px;

    margin-bottom:4px;

}

.panel-item span{

    display:block;

    color:#667085;

    line-height:1.6;

    font-size:14px;

}

/* FOOTER */

.panel-footer{

    margin-top:35px;

    padding:24px;

    border-radius:18px;

    background:linear-gradient(135deg,#D62828,#B71C1C);

    color:#fff;

    line-height:1.8;

    font-size:15px;

    box-shadow:0 18px 45px rgba(214,40,40,.25);

}

/* RESPONSIVO */

@media(max-width:1200px){

.hero-grid{

grid-template-columns:1fr;

gap:60px;

}

.hero-left{

text-align:center;

}

.hero-left h1{

margin:auto;

font-size:52px;

}

.hero-left>p{

margin:25px auto;

}

.hero-buttons{

justify-content:center;

}

.hero-trust{

grid-template-columns:1fr;

}

.hero-right{

justify-content:center;

}

.enterprise-panel{

max-width:760px;

}

}

@media(max-width:768px){

.enterprise-hero{

padding:120px 0 70px;

}

.hero-left h1{

font-size:40px;

}

.hero-left>p{

font-size:17px;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons a{

width:100%;

text-align:center;

}

.enterprise-panel{

padding:28px;

}

.enterprise-panel h3{

font-size:28px;

}

}
/*=========================================
INTRO PLANO EMPRESARIAL
=========================================*/

.enterprise-intro{
    padding:110px 0;
    background:#fafafa;
}

.enterprise-intro .section-title{
    max-width:900px;
    margin:0 auto 70px;
    text-align:center;
}

.section-badge{

    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:8px 18px;

    background:#fff0f0;

    border:1px solid rgba(180,0,0,.08);

    border-radius:100px;

    color:#b30000;

    font-size:.82rem;

    font-weight:700;

    letter-spacing:.08em;

    text-transform:uppercase;

    margin-bottom:22px;

}

.enterprise-intro h2{

    font-size:3rem;

    line-height:1.1;

    font-weight:800;

    color:#171717;

    margin-bottom:25px;

}

.enterprise-intro .section-title p{

    font-size:1.12rem;

    color:#666;

    line-height:1.8;

}

.intro-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:32px;

}

.intro-card{

    position:relative;

    background:#fff;

    border:1px solid #ececec;

    border-radius:22px;

    padding:42px;

    transition:.35s;

    overflow:hidden;

}

.intro-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;

    height:5px;

    background:#b30000;

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.intro-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 55px rgba(0,0,0,.08);

}

.intro-card:hover::before{

    transform:scaleX(1);

}

/* Card em destaque */

.intro-card.highlight{

    background:#fff;

    border:2px solid #b30000;

    box-shadow:0 20px 45px rgba(179,0,0,.08);

    transform:scale(1.03);

}

.intro-card.highlight:hover{

    transform:translateY(-10px) scale(1.03);

    box-shadow:0 28px 60px rgba(179,0,0,.15);

}

.intro-card.highlight::before{

    transform:scaleX(1);

}

.intro-card.highlight h3{

    color:#171717;

}

.intro-card.highlight p{

    color:#666;

}

.intro-card.highlight li{

    color:#555;

}

.intro-card.highlight li::before{

    background:#b30000;

}

.intro-card.highlight .intro-number{

    background:#b30000;

    color:#fff;

    box-shadow:0 12px 25px rgba(179,0,0,.18);

}

.intro-number{

    width:68px;

    height:68px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:#fff4f4;

    color:#b30000;

    font-size:1.4rem;

    font-weight:800;

    margin-bottom:28px;

}

.intro-card h3{

    font-size:1.45rem;

    margin-bottom:18px;

    font-weight:700;

}

.intro-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:24px;

}

.intro-card ul{

    list-style:none;

    display:flex;

    flex-direction:column;

    gap:14px;

}

.intro-card li{

    position:relative;

    padding-left:28px;

    color:#555;

    line-height:1.6;

}

.intro-card li::before{

    content:"";

    position:absolute;

    left:0;

    top:9px;

    width:9px;

    height:9px;

    border-radius:50%;

    background:#b30000;

}

.intro-card.highlight li::before{

    background:#fff;

}

/*============================
MENSAGEM FINAL
============================*/

.enterprise-message{

    margin-top:70px;

    background:#171717;

    color:#fff;

    padding:55px;

    border-radius:24px;

    text-align:center;

    position:relative;

    overflow:hidden;

}

.enterprise-message::before{

    content:"";

    position:absolute;

    right:-120px;

    top:-120px;

    width:280px;

    height:280px;

    border-radius:50%;

    background:rgba(179,0,0,.15);

}

.enterprise-message h3{

    position:relative;

    z-index:2;

    font-size:2rem;

    margin-bottom:20px;

    font-weight:800;

}

.enterprise-message p{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

    color:rgba(255,255,255,.85);

    line-height:1.9;

    font-size:1.05rem;

}

/*============================
RESPONSIVO
============================*/

@media(max-width:992px){

.intro-grid{

grid-template-columns:1fr;

}

.enterprise-intro h2{

font-size:2.3rem;

}

.enterprise-message{

padding:40px 30px;

}

.enterprise-message h3{

font-size:1.7rem;

}

}

@media(max-width:768px){

.enterprise-intro{

padding:80px 0;

}

.intro-card{

padding:32px;

}

.enterprise-intro h2{

font-size:2rem;

}

.section-badge{

font-size:.75rem;

}

}
/*==================================
DESAFIOS EMPRESARIAIS
==================================*/

.enterprise-problems{

    padding:110px 0;

    background:#fff;

}

.problems-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:60px;

}

.problem-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:22px;

    padding:38px;

    transition:.35s;

    position:relative;

}

.problem-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.problem-status{

    display:inline-flex;

    padding:7px 15px;

    border-radius:100px;

    background:#fff3f3;

    color:#b30000;

    font-size:.78rem;

    font-weight:700;

    text-transform:uppercase;

    margin-bottom:18px;

}

.problem-card h3{

    font-size:1.45rem;

    margin-bottom:18px;

    line-height:1.35;

    color:#171717;

}

.problem-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:30px;

}

.problem-solution{

    border-top:1px solid #ececec;

    padding-top:22px;

}

.problem-solution strong{

    display:block;

    color:#b30000;

    margin-bottom:8px;

    font-size:.95rem;

}

.problem-solution span{

    color:#444;

    line-height:1.7;

}

.enterprise-result{

    margin-top:70px;

    background:#fafafa;

    border-radius:24px;

    padding:55px;

    text-align:center;

}

.enterprise-result h3{

    font-size:2rem;

    margin-bottom:18px;

    color:#171717;

}

.enterprise-result p{

    max-width:900px;

    margin:auto;

    color:#666;

    line-height:1.9;

    font-size:1.05rem;

}

@media(max-width:992px){

.problems-grid{

grid-template-columns:1fr;

}

.enterprise-result{

padding:40px 30px;

}

}
/* =====================================================
   INFORMAÇÕES DOS CONTRATOS
=====================================================*/

.contract-note{

    margin-top:90px;

    background:#fff;

    border:1px solid #ececec;

    border-radius:26px;

    padding:60px;

    box-shadow:0 18px 50px rgba(0,0,0,.05);

}

.contract-note h3{

    font-size:38px;

    font-weight:800;

    color:#111;

    margin-bottom:18px;

    text-align:center;

}

.contract-note>p{

    max-width:760px;

    margin:0 auto 50px;

    text-align:center;

    font-size:18px;

    line-height:1.9;

    color:#666;

}

.contract-grid{

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:24px;

}

.contract-item{

    position:relative;

    background:#fafafa;

    border:1px solid #ececec;

    border-radius:18px;

    padding:30px;

    transition:.35s;

    overflow:hidden;

}

.contract-item::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:#d4001b;

}

.contract-item:hover{

    transform:translateY(-6px);

    background:#fff;

    border-color:#d4001b;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.contract-item strong{

    display:block;

    font-size:21px;

    color:#111;

    margin-bottom:16px;

    line-height:1.3;

}

.contract-item span{

    display:block;

    color:#666;

    font-size:16px;

    line-height:1.9;

}

/* Destacar os cartões importantes */

.contract-item:nth-child(2),
.contract-item:nth-child(4){

    background:#fffdfd;

}

/* Responsivo */

@media(max-width:1100px){

.contract-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.contract-note{

padding:35px 25px;

}

.contract-note h3{

font-size:30px;

}

.contract-grid{

grid-template-columns:1fr;

gap:18px;

}

.contract-item{

padding:24px;

}

}
/*==================================================
CONTRACT INFO
==================================================*/

.contract-info{

    margin-top:90px;

}

.contract-box{

    background:linear-gradient(180deg,#ffffff,#fafafa);

    border:1px solid #ececec;

    border-radius:30px;

    padding:65px;

    box-shadow:0 25px 60px rgba(0,0,0,.06);

}

.contract-box h3{

    text-align:center;

    font-size:42px;

    color:#171717;

    margin-bottom:55px;

}

.contract-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.contract-grid>div{

    background:#fff;

    border:1px solid #ececec;

    border-radius:22px;

    padding:32px;

    position:relative;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.04);

}

.contract-grid>div::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#D62828,#ff6d6d);

}

.contract-grid>div:hover{

    transform:translateY(-8px);

    border-color:#D62828;

    box-shadow:0 20px 45px rgba(214,40,40,.12);

}

.contract-grid h4{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:22px;

    color:#171717;

    margin-bottom:18px;

}

.contract-grid h4::before{

    content:"✓";

    width:34px;

    height:34px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#FDECEC;

    color:#D62828;

    font-size:15px;

    font-weight:700;

    flex-shrink:0;

}

.contract-grid p{

    color:#667085;

    line-height:1.9;

    font-size:15px;

}

.contract-grid>div:nth-child(2){

    background:#fff8f8;

    border-color:#D62828;

}

.contract-grid>div:nth-child(5){

    background:#fff8f8;

}

@media(max-width:1100px){

.contract-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.contract-box{

padding:35px 25px;

}

.contract-box h3{

font-size:30px;

margin-bottom:35px;

}

.contract-grid{

grid-template-columns:1fr;

}

}
.contract-divider{

    display:flex;

    align-items:center;

    gap:30px;

    margin:90px auto 70px;

}

.contract-divider span{

    flex:1;

    height:1px;

    background:#E5E7EB;

}

.contract-divider p{

    margin:0;

    font-size:16px;

    color:#6B7280;

    font-weight:600;

    white-space:nowrap;

}
/*==================================================
SERVIÇOS PREMIUM
==================================================*/

.enterprise-services{

    padding:120px 0;

    background:#fafafa;

}

.enterprise-services .section-title{

    max-width:900px;

    margin:0 auto 70px;

    text-align:center;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    position:relative;

    background:#fff;

    border:1px solid #ececec;

    border-radius:22px;

    padding:38px;

    transition:.35s;

    overflow:hidden;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 22px 60px rgba(0,0,0,.08);

}

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:#d62828;

    transform:scaleX(0);

    transition:.35s;

    transform-origin:left;

}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-icon{

    width:62px;

    height:62px;

    border-radius:18px;

    background:#fff0f0;

    color:#d62828;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:800;

    font-size:22px;

    margin-bottom:25px;

}

.service-card h3{

    font-size:28px;

    margin-bottom:18px;

    color:#111;

}

.service-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.service-card ul{

    list-style:none;

    padding:0;

    margin:0;

}

.service-card li{

    position:relative;

    padding-left:26px;

    margin-bottom:14px;

    color:#444;

}

.service-card li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#d62828;

    font-weight:700;

}

.service-tag{

    position:absolute;

    top:25px;

    right:25px;

    background:#d62828;

    color:#fff;

    padding:7px 14px;

    border-radius:100px;

    font-size:11px;

    font-weight:700;

    letter-spacing:.08em;

}

.service-card.featured{

    border:2px solid #d62828;

    transform:scale(1.03);

    box-shadow:0 20px 55px rgba(214,40,40,.12);

}

.service-card.featured:hover{

    transform:translateY(-10px) scale(1.03);

}

.services-bottom{

    margin-top:70px;

    text-align:center;

    background:linear-gradient(135deg,#fff,#fafafa);

    border:1px solid #ececec;

    border-radius:24px;

    padding:60px;

}

.services-bottom h3{

    font-size:38px;

    margin-bottom:20px;

    color:#111;

}

.services-bottom p{

    max-width:900px;

    margin:auto;

    line-height:1.9;

    color:#666;

    font-size:17px;

}

@media(max-width:1100px){

.services-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.services-grid{

grid-template-columns:1fr;

}

.service-card.featured{

transform:none;

}

.service-card.featured:hover{

transform:translateY(-8px);

}

.services-bottom{

padding:40px 25px;

}

.services-bottom h3{

font-size:30px;

}

}
/*==========================================
FAQ PREMIUM
==========================================*/

.enterprise-faq{

    padding:120px 0;

    background:#fafafa;

}

.faq-wrapper{

    display:grid;

    grid-template-columns:1.6fr .8fr;

    gap:45px;

    margin-top:70px;

}

.faq-list{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.faq-item{

    background:#fff;

    border:1px solid #ececec;

    border-radius:20px;

    overflow:hidden;

    transition:.35s;

}

.faq-item:hover{

    border-color:#d62828;

    box-shadow:0 18px 45px rgba(0,0,0,.06);

}

.faq-question{

    width:100%;

    background:none;

    border:none;

    padding:28px 30px;

    cursor:pointer;

    font-size:21px;

    font-weight:700;

    text-align:left;

    position:relative;

    color:#111827;

}

.faq-question::after{

    content:"+";

    position:absolute;

    right:30px;

    top:50%;

    transform:translateY(-50%);

    width:38px;

    height:38px;

    border-radius:50%;

    background:#fff3f3;

    color:#d62828;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    transition:.3s;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:.4s;

}

.faq-answer p{

    padding:0 30px 30px;

    line-height:1.9;

    color:#666;

}

.faq-item.active .faq-answer{

    max-height:300px;

}

.faq-item.active .faq-question::after{

    content:"−";

}

.faq-side{

    position:sticky;

    top:120px;

    background:#fff;

    border-radius:24px;

    padding:40px;

    border:1px solid #ececec;

    height:max-content;

    box-shadow:0 18px 45px rgba(0,0,0,.05);

}

.faq-side-tag{

    display:inline-block;

    background:#fff1f1;

    color:#d62828;

    padding:8px 16px;

    border-radius:999px;

    font-size:12px;

    font-weight:700;

    margin-bottom:18px;

}

.faq-side h3{

    font-size:34px;

    margin-bottom:18px;

    color:#111;

}

.faq-side p{

    line-height:1.8;

    color:#666;

    margin-bottom:25px;

}

.faq-side ul{

    list-style:none;

    margin:0 0 35px;

    padding:0;

}

.faq-side li{

    padding:12px 0;

    padding-left:28px;

    position:relative;

    color:#444;

    border-bottom:1px solid #f1f1f1;

}

.faq-side li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#d62828;

    font-weight:700;

}

.faq-side .btn-primary{

    width:100%;

    text-align:center;

}

@media(max-width:1100px){

.faq-wrapper{

grid-template-columns:1fr;

}

.faq-side{

position:relative;

top:auto;

}

}

@media(max-width:768px){

.enterprise-faq{

padding:80px 0;

}

.faq-question{

font-size:18px;

padding:22px;

}

.faq-answer p{

padding:0 22px 22px;

}

.faq-side{

padding:30px;

}

.faq-side h3{

font-size:28px;

}

}