/* =====================================================
SUPORTE
===================================================== */

.suporte-hero{
    margin:30px 0;
    padding:50px 30px;
    border-radius:20px;
    background:linear-gradient(135deg,#0d7a39,#14a54d);
    color:#fff;
    text-align:center;
}

.suporte-hero h2{
    font-size:2.2rem;
    margin-bottom:15px;
}

.suporte-hero p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
    opacity:.95;
}

/* =====================================================
PESQUISA
===================================================== */

.pesquisa-box{
    margin:35px 0;
}

.pesquisa{
    display:flex;
    align-items:center;
    gap:15px;
    background:#fff;
    border-radius:15px;
    padding:16px 20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.pesquisa i{
    color:#16a34a;
    font-size:20px;
}

.pesquisa input{
    flex:1;
    border:none;
    outline:none;
    font-size:16px;
    background:transparent;
}

/* =====================================================
CARDS
===================================================== */

.cards-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin:40px 0;
}

.card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.card i{
    font-size:42px;
    color:#16a34a;
    margin-bottom:18px;
}

.card h3{
    margin-bottom:12px;
    color:#222;
}

.card p{
    color:#666;
    line-height:1.7;
}

/* =====================================================
FAQ
===================================================== */

.faq{
    margin:50px 0;
}

.faq-item{
    background:#fff;
    margin-bottom:18px;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
}

.faq-question{
    width:100%;
    border:none;
    background:#fff;
    padding:20px;
    font-size:17px;
    font-weight:600;
    text-align:left;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.faq-answer{
    display:none;
    padding:0 20px 20px;
    color:#666;
    line-height:1.8;
}

.faq-item.ativo .faq-answer{
    display:block;
}

/* =====================================================
CONTATO
===================================================== */

.contato-suporte{
    margin:50px 0;
}

.form-suporte{
    display:grid;
    gap:18px;
}

.form-suporte input,
.form-suporte textarea{
    width:100%;
    border:1px solid #ddd;
    border-radius:12px;
    padding:15px;
    font-size:15px;
    outline:none;
}

.form-suporte textarea{
    min-height:170px;
    resize:vertical;
}

.form-suporte input:focus,
.form-suporte textarea:focus{
    border-color:#16a34a;
}

.form-suporte button{
    background:#16a34a;
    color:#fff;
    border:none;
    border-radius:12px;
    padding:16px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.form-suporte button:hover{
    background:#12863d;
}

/* =====================================================
INFORMAÇÕES
===================================================== */

.info-suporte{
    margin:50px 0;
}

.info-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.info-card{
    background:#fff;
    padding:25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.info-card i{
    font-size:35px;
    color:#16a34a;
    margin-bottom:15px;
}

.info-card h4{
    margin-bottom:10px;
}

.info-card p{
    color:#666;
}

/* =====================================================
RESPONSIVO
===================================================== */

@media(max-width:768px){

    .suporte-hero{
        padding:35px 20px;
    }

    .suporte-hero h2{
        font-size:1.8rem;
    }

    .cards-grid{
        grid-template-columns:1fr;
    }

    .info-grid{
        grid-template-columns:1fr;
    }

}/*=====================================
ALERTA DE BOAS-VINDAS
=====================================*/

.suporte-alerta{
    display:flex;
    align-items:center;
    gap:18px;

    background:linear-gradient(135deg,#16a34a,#0d7a39);

    color:#fff;

    padding:20px 25px;

    margin:30px 0;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

    animation:fadeSuporte .6s ease;
}

.suporte-alerta i{
    font-size:42px;
    color:#fff;
}

.suporte-alerta h3{
    margin:0;
    font-size:24px;
    font-weight:700;
}

.suporte-alerta p{
    margin-top:6px;
    font-size:16px;
    opacity:.95;
    line-height:1.6;
}

@keyframes fadeSuporte{

    from{

        opacity:0;
        transform:translateY(20px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

@media(max-width:768px){

    .suporte-alerta{

        flex-direction:column;
        text-align:center;
        padding:18px;

    }

    .suporte-alerta i{

        font-size:36px;

    }

    .suporte-alerta h3{

        font-size:22px;

    }

}/*=====================================
ALERTA DE BOAS-VINDAS
=====================================*/

.suporte-alerta{
    display:flex;
    align-items:center;
    gap:18px;

    background:linear-gradient(135deg,#16a34a,#0d7a39);

    color:#fff;

    padding:20px 25px;

    margin:30px 0;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

    animation:fadeSuporte .6s ease;
}

.suporte-alerta i{
    font-size:42px;
    color:#fff;
}

.suporte-alerta h3{
    margin:0;
    font-size:24px;
    font-weight:700;
}

.suporte-alerta p{
    margin-top:6px;
    font-size:16px;
    opacity:.95;
    line-height:1.6;
}

@keyframes fadeSuporte{

    from{

        opacity:0;
        transform:translateY(20px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

@media(max-width:768px){

    .suporte-alerta{

        flex-direction:column;
        text-align:center;
        padding:18px;

    }

    .suporte-alerta i{

        font-size:36px;

    }

    .suporte-alerta h3{

        font-size:22px;

    }

}