/*==================================================
NEXPLORE | PROPOSTA CORPORATIVA
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#eef2f7;
    color:#333;
    padding:30px;
}

.container{
    max-width:980px;
    margin:auto;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.topo{
    background:linear-gradient(135deg,#0b3558,#1d5b8f);
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:30px 40px;
}

.logo h1{
    font-size:38px;
    letter-spacing:3px;
}

.logo p{
    margin-top:8px;
    opacity:.9;
}

.btn-whatsapp{
    text-decoration:none;
    background:#25D366;
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    font-weight:bold;
    transition:.3s;
}

.btn-whatsapp:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(37,211,102,.35);
}

.hero{
    text-align:center;
    padding:35px;
}

.hero h2{
    font-size:34px;
    color:#0b3558;
    margin-bottom:15px;
}

.hero p{
    max-width:700px;
    margin:auto;
    line-height:1.7;
}

.video{
    padding:0 35px 35px;
}

.video h3{
    margin-bottom:15px;
    color:#0b3558;
}

.video video{
    width:100%;
    border-radius:12px;
    background:#000;
}

.beneficios{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    padding:0 35px 35px;
}

.card{
    background:#f7f9fc;
    border-left:5px solid #ff7a00;
    padding:20px;
    border-radius:10px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.card h4{
    color:#0b3558;
    margin-bottom:10px;
}

.plano{
    background:linear-gradient(135deg,#ff7a00,#ff9830);
    color:#fff;
    text-align:center;
    padding:35px;
}

.valor{
    font-size:54px;
    font-weight:bold;
    margin:12px 0;
}

.contato{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:35px;
    gap:30px;
}

.qr img{
    width:180px;
    border:1px solid #ddd;
    border-radius:8px;
}

.dados h3{
    color:#0b3558;
    margin-bottom:15px;
}

.dados p{
    margin-bottom:8px;
}

footer{
    background:#0b3558;
    color:#fff;
    text-align:center;
    padding:25px;
}

footer h2{
    margin-bottom:10px;
}

@media(max-width:768px){

.topo{
    flex-direction:column;
    gap:20px;
    text-align:center;
}

.beneficios{
    grid-template-columns:1fr;
}

.contato{
    flex-direction:column;
    text-align:center;
}

.valor{
    font-size:42px;
}

.hero h2{
    font-size:28px;
}

}

/*=========================
QR CODE
=========================*/

.qr{
    text-align:center;
    flex:1;
}

.qr h3{
    color:#0b3558;
    margin-bottom:12px;
    font-size:24px;
}

.qr-texto{
    color:#666;
    font-size:15px;
    line-height:1.6;
    margin-bottom:18px;
}

.qr img{
    width:220px;
    max-width:100%;
    border:8px solid #ffffff;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.18);
    transition:.3s;
}

.qr img:hover{
    transform:scale(1.05);
}

/*==================================================
DESTAQUE NEXPLORE
==================================================*/

.destaque-nexplore{
    background:linear-gradient(135deg,#0b3558,#124a7d);
    color:#fff;
    text-align:center;
    padding:35px 25px;
    margin:25px 35px;
    border-radius:15px;
    box-shadow:0 12px 30px rgba(0,0,0,.15);
}

.destaque-nexplore h2{
    font-size:42px;
    letter-spacing:3px;
    margin-bottom:10px;
}

.destaque-nexplore p{
    font-size:34px;
    font-weight:700;
    color:#ff9d00;
    margin-bottom:15px;
}

.destaque-nexplore span{
    display:block;
    font-size:18px;
    max-width:700px;
    margin:0 auto;
    line-height:1.7;
    opacity:.95;
}
