/* ==========================================================
   SUPORTE TÉCNICO
==========================================================*/

:root{
    --bg:#001633;
    --bg-alt:#061b40;
    --card:#072652;
    --card-hover:#0a2f63;
    --orange:#ff6a00;
    --blue:#0b78ff;
    --text:#ffffff;
    --text-muted:#c5d1e5;
    --border:rgba(255,255,255,.08);
}

section{
    padding:110px 0;
}

.section-title{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}

.section-title span{
    color:var(--orange);
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:700;
}

.section-title h2{
    color:#fff;
    font-size:2.7rem;
    margin:18px 0;
}

.section-title p{
    color:var(--text-muted);
    line-height:1.8;
}

/* ==========================================================
   HERO
==========================================================*/

.hero{

    position:relative;
    overflow:hidden;

    padding:170px 0 120px;

    background:
    radial-gradient(circle at top right,rgba(11,120,255,.18),transparent 35%),
    radial-gradient(circle at bottom left,rgba(255,106,0,.12),transparent 35%),
    linear-gradient(135deg,#001330,#001c47,#001330);

}

.hero::before{

    content:"";

    position:absolute;
    inset:0;

    background-image:

    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),

    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);

    background-size:45px 45px;

    pointer-events:none;

}

.hero-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:80px;

}

.tag{

    display:inline-block;

    padding:10px 20px;

    border-radius:30px;

    background:rgba(255,255,255,.08);

    color:var(--orange);

    font-weight:600;

    margin-bottom:25px;

}

.hero-content{
    margin-left: 2vw;
}
.hero-content h1{

    color:#fff;

    font-size:3.3rem;

    line-height:1.2;

    margin-bottom:25px;

}

.hero-content p{

    color:var(--text-muted);

    font-size:1.08rem;

    line-height:1.9;

    margin-bottom:40px;

    max-width:560px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    background:var(--orange);

    color:#fff;

    border-radius:10px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(255,106,0,.3);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:10px;

    border:1px solid rgba(255,255,255,.12);

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.btn-secondary:hover{

    background:rgba(255,255,255,.08);

}

/* ==========================================================
   CHAT
==========================================================*/

.hero-chat{

    display:flex;

    justify-content:center;

}

.chat-window{

    width:100%;

    max-width:420px;

    background:#ffffff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 30px 60px rgba(0,0,0,.45);

    border:1px solid rgba(255,255,255,.08);

}

.chat-header{

    background:#128C7E;

    color:#fff;

    padding:18px 25px;

    font-weight:600;

    display:flex;

    align-items:center;

    gap:12px;

}

.status{

    width:10px;

    height:10px;

    border-radius:50%;

    background:#47ff7b;

}

.message{

    max-width:80%;

    padding:14px 18px;

    border-radius:18px;

    margin:18px;

    line-height:1.6;

    font-size:.95rem;

}

.received{

    background:#f1f1f1;

    color:#333;

    margin-right:auto;

}

.sent{

    background:#d9fdd3;

    color:#222;

    margin-left:auto;

}

/* ==========================================================
   CANAIS DE ATENDIMENTO
==========================================================*/

.channels{
    background:#05152f;
}

.channel-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    margin-top:70px;

}

.channel-card{

    position:relative;

    overflow:hidden;

    background:linear-gradient(145deg,#07234c,#041a3d);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:45px;

    transition:.35s;

}

.channel-card::before{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    right:-60px;

    top:-60px;

    background:rgba(255,106,0,.08);

    border-radius:50%;

}

.channel-card:hover{

    transform:translateY(-10px);

    border-color:rgba(255,106,0,.25);

}

.channel-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:rgba(255,106,0,.15);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:2rem;

    margin-bottom:25px;

}

.channel-card h3{

    color:#fff;

    font-size:1.5rem;

    margin-bottom:15px;

}

.channel-card p{

    color:var(--text-muted);

    line-height:1.8;

}

/* ==========================================================
   NOSSO COMPROMISSO
==========================================================*/

.commitment{

    background:
    linear-gradient(135deg,#00163d,#00122d);

}

.container-content{
    margin-left: 2vw;
}

.commitment-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.small-title{

    color:var(--orange);

    text-transform:uppercase;

    font-weight:700;

    letter-spacing:2px;

}

.commitment h2{

    color:#fff;

    font-size:2.5rem;

    margin:20px 0;

    line-height:1.3;

}

.commitment p{

    color:var(--text-muted);

    line-height:1.9;

    font-size:1.05rem;

}

.commitment-list{

    display:grid;

    grid-template-columns:1fr;

    gap:18px;

}

.commitment-item{

    padding:22px 28px;

    background:rgba(255,255,255,.04);

    border-radius:14px;

    border-left:4px solid var(--orange);

    color:#fff;

    transition:.3s;

}

.commitment-item:hover{

    transform:translateX(8px);

    background:rgba(255,255,255,.07);

}

/* ==========================================================
   COMO PODEMOS AJUDAR
==========================================================*/

.help{

    background:#05152f;

}

.help-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    margin-top:60px;

}

.help-box{

    position:relative;

    padding:45px 30px;

    text-align:center;

    border-radius:20px;

    background:linear-gradient(145deg,#07234d,#082955);

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    font-size:1.08rem;

    font-weight:600;

    transition:.35s;

}

.help-box::before{

    content:"✓";

    display:flex;

    align-items:center;

    justify-content:center;

    width:46px;

    height:46px;

    margin:0 auto 20px;

    border-radius:50%;

    background:rgba(255,106,0,.15);

    color:var(--orange);

    font-size:1.2rem;

    font-weight:bold;

}

.help-box:hover{

    transform:translateY(-10px);

    border-color:rgba(255,106,0,.35);

    background:linear-gradient(145deg,#0a2b5d,#0b356f);

}

/* ==========================================================
   FAQ
==========================================================*/

.faq{
    background:linear-gradient(135deg,#00163d,#00112a);
}

.faq-item{
    position:relative;
    max-width:900px;
    margin:0 auto 25px;
    padding:30px 35px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    transition:.3s;
}

.faq-item:hover{
    border-color:rgba(255,106,0,.25);
    transform:translateX(8px);
}

.faq-item::before{
    content:"?";
    position:absolute;
    left:-18px;
    top:30px;

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:var(--orange);

    color:#fff;

    font-size:1.1rem;
    font-weight:bold;
}

.faq-item h3{
    color:#fff;
    margin-bottom:15px;
    font-size:1.2rem;
}

.faq-item p{
    color:var(--text-muted);
    line-height:1.8;
}

/* ==========================================================
   CTA
==========================================================*/

.cta{

    position:relative;

    overflow:hidden;

    text-align:center;

    background:
    radial-gradient(circle at top right,rgba(255,106,0,.15),transparent 30%),
    linear-gradient(135deg,#001c49,#00245d,#001c49);

}

.cta::before{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    background:rgba(11,120,255,.08);

    border-radius:50%;

    filter:blur(120px);

    left:-150px;
    bottom:-200px;

}

.cta .container{

    position:relative;

    z-index:2;

}

.cta h2{

    color:#fff;

    font-size:2.8rem;

    margin-bottom:25px;

}

.cta p{

    max-width:720px;

    margin:0 auto 45px;

    color:var(--text-muted);

    line-height:1.9;

    font-size:1.05rem;

}

.cta .btn-primary{

    font-size:1rem;

    padding:18px 40px;

}

/* ==========================================================
   RESPONSIVO
==========================================================*/

@media(max-width:1100px){

.hero-grid{

    grid-template-columns:1fr;

    text-align:center;

}

.hero-chat{

    order:-1;

}

.hero-content p{

    margin:0 auto 40px;

}

.hero-buttons{

    justify-content:center;

}

.channel-grid{

    grid-template-columns:1fr;

}

.commitment-grid{

    grid-template-columns:1fr;

    gap:50px;

}

.help-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

section{

    padding:80px 0;

}

.hero{

    padding:140px 0 90px;

}

.hero-content h1{

    font-size:2.4rem;

}

.section-title h2{

    font-size:2rem;

}

.chat-window{

    max-width:100%;

}

.help-grid{

    grid-template-columns:1fr;

}

.channel-card{

    padding:35px;

}

.commitment h2{

    font-size:2rem;

}

.cta h2{

    font-size:2rem;

}

.faq-item{

    padding:25px;

}

.faq-item::before{

    display:none;

}

}

@media(max-width:480px){

.hero-content h1{

    font-size:2rem;

}

.hero-buttons{

    flex-direction:column;

}

.btn-primary,
.btn-secondary{

    width:100%;

    text-align:center;

}

.channel-card{

    text-align:center;

}

.channel-icon{

    margin:0 auto 25px;

}

.commitment-item{

    padding:18px 20px;

}

.cta p{

    font-size:1rem;

}

}