/* =======================================================
HERO
======================================================= */

.page-hero{

    padding:180px 0 110px;

    background:linear-gradient(180deg,#172435 0%,#0f1b32 100%);

    text-align:center;

    position:relative;

    overflow:hidden;

}

.page-hero h1{

    font-size:58px;

    color:#FFF;

    font-weight:700;

    margin:20px auto;

    max-width:900px;

}

.page-hero p{

    max-width:850px;

    margin:auto;

    color:rgba(255,255,255,.82);

    font-size:20px;

    line-height:1.9;

}


/* =======================================================
SEÇÃO
======================================================= */

.contact-page{

    padding:110px 0;

    background:#F7F9FC;

}


/* =======================================================
GRID
======================================================= */

.contact-grid{

    display:grid;

    grid-template-columns:460px 1fr;

    gap:70px;

    align-items:start;

}


/* =======================================================
CARD BRASIL
======================================================= */

.contact-card{

    background:linear-gradient(135deg,#172435 0%,#1D2F58 100%);

    border-radius:26px;

    padding:40px;

    position:relative;

    overflow:hidden;

    min-height:330px;

    margin-bottom:40px;

}

.contact-card-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:rgba(255,255,255,.10);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#FE904C;

    font-size:34px;

    margin-bottom:25px;

}

.contact-card h3{

    color:#FFF;

    font-size:32px;

    margin-bottom:18px;

    font-weight:700;

}

.contact-card p{

    color:rgba(255,255,255,.82);

    line-height:1.9;

    font-size:17px;

}


/* =======================================================
INFORMAÇÕES
======================================================= */

.contact-info-list{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.info-item{

    display:flex;

    gap:18px;

    align-items:flex-start;

}

.info-icon{

    width:60px;

    height:60px;

    border-radius:18px;

    background:#FFF;

    color:#FE904C;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:26px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.info-item span{

    display:block;

    color:#69758A;

    margin-bottom:6px;

    font-size:15px;

}

.info-item strong{

    color:#1D2F58;

    font-size:18px;

    font-weight:700;

    line-height:1.6;

}


/* =======================================================
FORMULÁRIO
======================================================= */

.contact-form-card{

    background:#FFF;

    border-radius:26px;

    padding:45px;

    box-shadow:0 20px 45px rgba(0,0,0,.06);

}

.contact-form-card h2{

    color:#1D2F58;

    font-size:38px;

    margin-bottom:15px;

    font-weight:700;

}

.contact-form-card>p{

    color:#69758A;

    margin-bottom:35px;

    line-height:1.8;

}


/* =======================================================
FORM GRID
======================================================= */

.form-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:22px;

}

.form-group{

    display:flex;

    flex-direction:column;

    margin-bottom:22px;

}

.form-group label{

    color:#1D2F58;

    margin-bottom:10px;

    font-weight:600;

    font-size:15px;

}

.form-group input,

.form-group textarea,

.form-group select{

    width:100%;

    border:1px solid #E6ECF3;

    border-radius:16px;

    padding:18px 22px;

    font-size:16px;

    color:#1D2F58;

    outline:none;

    background:#FCFDFE;

    transition:.35s;

}

.form-group textarea{

    resize:vertical;

    min-height:180px;

}

.form-group input:focus,

.form-group textarea:focus,

.form-group select:focus{

    border-color:#FE904C;

    box-shadow:0 0 0 4px rgba(254,144,76,.12);

    background:#FFF;

}


/* =======================================================
BOTÃO
======================================================= */

.btn-primary{

    width:100%;

    height:62px;

    border:none;

    border-radius:16px;

    background:#FE904C;

    color:#FFF;

    font-size:17px;

    font-weight:600;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:14px;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 15px 35px rgba(254,144,76,.25);

    margin-top: 20px;

}

.btn-primary:hover{

    background:#ff7d28;

    transform:translateY(-3px);

    box-shadow:0 18px 40px rgba(254,144,76,.35);

}


/* =======================================================
RESPONSIVO
======================================================= */

@media(max-width:991px){

.page-hero{

    padding:150px 0 80px;

}

.page-hero h1{

    font-size:38px;

}

.page-hero p{

    font-size:17px;

}

.contact-page{

    padding:70px 0;

}

.contact-grid{

    grid-template-columns:1fr;

    gap:45px;

}

.contact-card{

    min-height:auto;

    padding:35px;

}

.contact-card h3{

    font-size:28px;

}

.contact-card p{

    max-width:100%;

    margin-bottom:180px;

}

.contact-card img{

    width:190px;

    right:-10px;

    bottom:-10px;

}

.contact-form-card{

    padding:30px;

}

.contact-form-card h2{

    font-size:30px;

    text-align:center;

}

.contact-form-card>p{

    text-align:center;

}

.form-grid{

    grid-template-columns:1fr;

    gap:0;

}

.btn-primary{

    height:58px;

}

}