/* =====================================================
   WELCOME
===================================================== */

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

body{

    background:#f3f6fb;
    font-family: "Poppins", Tahoma, Geneva, Verdana, sans-serif;
    color:#1f2937;

}

.welcome-wrapper{

    width:100%;
    padding:45px 25px 60px;

}

.welcome-card{

    max-width:1200px;
    margin:auto;

    background:#fff;

    border-radius:26px;

    padding:55px 75px 65px;

    box-shadow:
        0 20px 45px rgba(0,0,0,.08),
        0 8px 18px rgba(0,0,0,.04);

}

/* =====================================================
   LOGO
===================================================== */

.welcome-logo{

    text-align:center;
    margin-bottom:25px;

}

.welcome-logo img{

    width:130px;
    transition:.3s;

}

.welcome-logo img:hover{

    transform:scale(1.03);

}

/* =====================================================
   TITULOS
===================================================== */

.welcome-header{

    text-align:center;

}

.welcome-header h1{

   color:#18346A;
    font-size:clamp(2rem,5vw,3.6rem);
    font-weight:800;
    margin-bottom:12px;
    letter-spacing:-1px;
    line-height:1.15;
    text-align:center;
    word-break:break-word;

}

.welcome-header h2{

    color:#ff6f00;

    font-size:25px;

    font-weight:700;

    margin-bottom:45px;

}

/* =====================================================
   TEXTO
===================================================== */

.welcome-intro{

    max-width:860px;
    margin:auto;

}

.welcome-intro p{

    text-align:center;

    font-size:17px;

    line-height:1.9;

    color:#434343;

    margin-bottom:38px;

}

/* =====================================================
   GRID
===================================================== */

.welcome-grid{

    margin-top:20px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:28px;

}

/* =====================================================
   CARD
===================================================== */

.info-card{

    border:1px solid #ececec;

    border-radius:18px;

    padding:32px;

    display:flex;

    align-items:flex-start;

    gap:25px;

    transition:.30s;

    background:#fff;

}

.info-card:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.info-icon{

    width:82px;

    height:82px;

    min-width:82px;

    border-radius:50%;

    background:#fff4eb;

    color:#ff6f00;

    display:flex;

    align-items:center;

    justify-content:center;

}

.info-content{

    flex:1;

}

.info-content h3{

    color:#18346A;

    font-size:29px;

    margin-bottom:18px;

    font-weight:700;

}

.info-content p{

    color:#4d4d4d;

    line-height:1.8;

    font-size:17px;

}

/* =====================================================
   MISSÃO
===================================================== */

.welcome-mission{

    max-width:900px;

    margin:55px auto 40px;

}

.welcome-mission p{

    text-align:center;

    font-size:17px;

    line-height:1.9;

    color:#444;

}

/* =====================================================
   FRASE
===================================================== */

.welcome-highlight{

    background:#fff6ef;

    border-radius:16px;

    padding:28px 34px;

    display:flex;

    align-items:center;

    gap:25px;

    margin:25px auto 45px;

    max-width:980px;

}

.quote{

    font-size:60px;

    color:#ff6f00;

    line-height:1;

}

.highlight-text{

    font-size:19px;

    color:#1f1f1f;

    font-weight:700;

    line-height:1.6;

}

/* =====================================================
   DIVISOR
===================================================== */

.divider{

    width:100%;

    height:1px;

    background:#e7e7e7;

    margin-top:35px;

}

/* =====================================================
   BOTÃO
===================================================== */

.welcome-footer{

    text-align:center;

    margin-top:45px;

}

.btn-continuar{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:18px;

    width:280px;

    height:72px;

    background:linear-gradient(180deg,#ff7f18,#ff6200);

    color:#fff;

    text-decoration:none;

    font-size:20px;

    font-weight:700;

    border-radius:12px;

    transition:.30s;

    box-shadow:0 12px 25px rgba(255,102,0,.28);

}

.btn-continuar:hover{

    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(255,102,0,.35);

}

.btn-continuar span{

    font-size:34px;

}

/* =====================================================
   RESPONSIVO
===================================================== */

@media(max-width:1100px){

    .welcome-card{

        padding:45px;

    }

    .welcome-header h1{

        font-size:46px;

    }

    .welcome-header h2{

        font-size:30px;

    }

    .welcome-intro p{

        font-size:20px;

    }

    .welcome-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .welcome-card{

        padding:30px 18px;

    }

    .welcome-logo img{

        width:90px;

    }

    .welcome-header h1{

    font-size:1.5rem;
    line-height:1.2;
    padding:0 10px;

    }

    .welcome-header h2{

        font-size:1.5rem;
        line-height:1.3;
        padding:0 10px;

    }

    .welcome-intro p{

        font-size:17px;

        line-height:1.7;

    }

    .info-card{

        flex-direction:column;

        align-items:center;

        text-align:center;

    }

    .info-content h3{

        font-size:22px;

    }

    .info-content p{

        font-size:16px;

    }

    .welcome-mission p{

        font-size:18px;

    }

    .welcome-highlight{

        flex-direction:column;

        text-align:center;

        padding:22px;

    }

    .quote{

        font-size:48px;

    }

    .highlight-text{

        font-size:20px;

    }

    .btn-continuar{

        width:100%;

        font-size:22px;

    }

}