/* =========================
   RESET
========================= */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

:root{

    --primary: #2563ff;
    --primary-dark: #003fd1;

    --dark: #07152f;
    --dark-2: #0d1d42;

    --text: #eef4ff;
    --text-soft: #9ca9c9;

    --card: rgba(10, 22, 52, 0.78);
    --card-border: rgba(255,255,255,0.08);

    --input: rgba(255,255,255,0.05);

    --shadow: 0 15px 45px rgba(0,0,0,0.35);

}


/* =========================
   BODY
========================= */

body{

    background:
    radial-gradient(circle at top left, rgba(37,99,255,0.25), transparent 25%),
    radial-gradient(circle at bottom right, rgba(0,102,255,0.15), transparent 20%),
    linear-gradient(180deg,#020817,#07152f,#0b1d44);

    color: var(--text);

    overflow-x: hidden;
}


/* =========================
   HEADER
========================= */

.header{

    width: 100%;
    height: 90px;

    padding: 0 8%;

    position: fixed;
    top: 0;
    left: 0;

    z-index: 999;

    background: rgba(2, 8, 24, 0.72);

    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255,255,255,0.05);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


/* =========================
   LOGO
========================= */

.logo{

    display: flex;
    align-items: center;
    gap: 12px;

    color: white;

    flex-shrink: 0;
}

.logo img{
    width: 72px;
    height: auto;
}

.logo-text{
    white-space: nowrap;
}

.logo-text h2{

    font-size: 20px;
    font-weight: 700;
}

.logo-text p{

    font-size: 12px;
    opacity: .7;
}


/* =========================
   MENU MOBILE
========================= */

.menu-toggle{

    display: none;

    flex-direction: column;
    gap: 5px;

    cursor: pointer;

    z-index: 1001;
}

.menu-toggle span{

    width: 28px;
    height: 3px;

    background: white;

    border-radius: 50px;

    transition: .3s;
}


/* =========================
   NAVBAR
========================= */

.navbar{

    display: flex;
    align-items: center;
    gap: 25px;
}

.navbar a{

    text-decoration: none;

    color: white;

    font-size: 15px;
    font-weight: 500;

    transition: .3s;

    position: relative;
}

.navbar a::after{

    content: '';

    width: 0%;
    height: 2px;

    background: var(--primary);

    position: absolute;

    left: 0;
    bottom: -6px;

    transition: .3s;
}

.navbar a:hover::after,
.navbar .active::after{
    width: 100%;
}

.navbar a:hover,
.navbar .active{
    color: #5fa6ff;
}


/* =========================
   BTN HEADER
========================= */

.btn-header{

    background: linear-gradient(90deg,var(--primary),var(--primary-dark));

    padding: 13px 24px;

    border-radius: 50px;

    color: white;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    display: flex;
    align-items: center;
    gap: 8px;

    white-space: nowrap;

    box-shadow: 0 10px 30px rgba(37,99,255,0.25);

    transition: .3s;
}

.btn-header:hover{

    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(37,99,255,0.35);
}


/* =========================
   CONTATO
========================= */

.contato-container{

    width: 100%;

    padding: 150px 8% 90px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 60px;
}


/* =========================
   TITLES
========================= */

.mini-title{

    color: #5fa6ff;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 3px;
}

.contato-info h1{

    font-size: 70px;
    line-height: 78px;

    margin: 18px 0;
}

.descricao{

    color: var(--text-soft);

    font-size: 18px;
    line-height: 30px;

    max-width: 550px;

    margin-bottom: 40px;
}


/* =========================
   INFO CARD
========================= */

.info-card{

    background: var(--card);

    border: 1px solid var(--card-border);

    padding: 25px;

    border-radius: 28px;

    display: flex;
    gap: 20px;

    margin-bottom: 22px;

    backdrop-filter: blur(14px);

    box-shadow: var(--shadow);

    transition: .35s;
}

.info-card:hover{

    transform: translateY(-6px);
    border-color: rgba(37,99,255,0.4);
}


/* =========================
   ICON
========================= */

.icon{

    min-width: 65px;
    height: 65px;

    border-radius: 50%;

    background: linear-gradient(180deg,var(--primary),var(--primary-dark));

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    font-size: 22px;

    box-shadow: 0 10px 30px rgba(37,99,255,0.25);
}


/* =========================
   CARD TEXT
========================= */

.card-text h3{

    font-size: 18px;

    margin-bottom: 8px;
}

.card-text p{

    color: var(--text-soft);

    line-height: 28px;
}


/* =========================
   WHATSAPP CARD
========================= */

.whatsapp-card{

    margin-top: 35px;

    background:
    linear-gradient(135deg,#0f1d4a,#003fd1);

    border: 1px solid rgba(255,255,255,0.08);

    padding: 35px;

    border-radius: 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.whatsapp-card h3{

    font-size: 25px;
}

.whatsapp-card p{

    margin-top: 10px;

    color: rgba(255,255,255,0.75);

    line-height: 28px;
}


/* =========================
   BUTTON WHATS
========================= */

.whatsapp-card button{

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.15);

    padding: 16px 28px;

    border-radius: 50px;

    color: white;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    transition: .3s;

    display: flex;
    align-items: center;
    gap: 10px;

    white-space: nowrap;
}

.whatsapp-card button:hover{

    background: white;
    color: #07152f;
}


/* =========================
   FORM BOX
========================= */

.formulario-box{

    background: rgba(6, 16, 40, 0.86);

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(14px);

    padding: 50px;

    border-radius: 35px;

    box-shadow: var(--shadow);
}

.formulario-box h2{

    text-align: center;

    font-size: 42px;

    margin-bottom: 40px;
}


/* =========================
   INPUT GROUP
========================= */

.input-group{

    display: flex;
    gap: 20px;

    margin-bottom: 20px;
}


/* =========================
   INPUTS
========================= */

input,
textarea{

    width: 100%;

    border: 1px solid rgba(255,255,255,0.08);

    background: var(--input);

    padding: 18px;

    border-radius: 16px;

    outline: none;

    font-size: 15px;

    color: white;

    transition: .3s;
}

input::placeholder,
textarea::placeholder{

    color: rgba(255,255,255,0.45);
}

input:focus,
textarea:focus{

    border-color: var(--primary);

    background: rgba(255,255,255,0.07);

    box-shadow: 0 0 0 4px rgba(37,99,255,0.15);
}

textarea{

    height: 220px;

    resize: none;

    margin-bottom: 25px;
}


/* =========================
   BTN ENVIAR
========================= */

.btn-enviar{

    width: 100%;

    border: none;

    padding: 20px;

    border-radius: 18px;

    background: linear-gradient(90deg,var(--primary),var(--primary-dark));

    color: white;

    font-size: 17px;
    font-weight: 600;

    cursor: pointer;

    transition: .3s;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    box-shadow: 0 15px 35px rgba(37,99,255,0.25);
}

.btn-enviar:hover{

    transform: translateY(-4px);
}


/* =========================
   SEGURANÇA
========================= */

.seguranca{

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 20px;

    color: rgba(255,255,255,0.55);

    font-size: 14px;
}


/* =========================
   MAPA
========================= */

.mapa{

    width: 100%;

    padding: 0 8% 90px;
}

.mapa iframe{

    width: 100%;
    height: 430px;

    border: none;

    border-radius: 35px;

    box-shadow: var(--shadow);

    filter: grayscale(100%) invert(92%) contrast(85%);
}


/* =========================
   FOOTER
========================= */

.footer{

    background: #020817;

    border-top: 1px solid rgba(255,255,255,0.05);

    padding: 60px 8% 35px;
}


/* =========================
   FOOTER TOP
========================= */

.footer-top{

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    flex-wrap: wrap;
}

.footer-logo{

    display: flex;
    align-items: center;
    gap: 15px;

    color: white;
}

.footer-logo img{
    width: 80px;
}

.footer-logo p{

    color: rgba(255,255,255,0.6);
}


/* =========================
   FOOTER BUTTONS
========================= */

.footer-buttons{

    display: flex;
    gap: 15px;
}

.footer-buttons a{

    width: 55px;
    height: 55px;

    border-radius: 50%;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    text-decoration: none;

    font-size: 20px;

    transition: .3s;
}

.footer-buttons a:hover{

    transform: translateY(-4px);

    background: var(--primary);
}


/* =========================
   FOOTER LINE
========================= */

.footer-line{

    width: 100%;
    height: 1px;

    background: rgba(255,255,255,0.08);

    margin: 35px 0;
}


/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom{

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    flex-wrap: wrap;

    color: rgba(255,255,255,0.6);

    font-size: 14px;
}


/* =========================
   RESPONSIVIDADE COMPLETA
========================= */

@media(max-width: 1200px){

    .contato-info h1{

        font-size: 58px;
        line-height: 65px;
    }

    .whatsapp-card{

        flex-direction: column;

        align-items: flex-start;
    }
}


/* =========================
   992px
========================= */

@media(max-width: 992px){

    /* HEADER */

    .header{
        padding: 0 5%;
    }

    .btn-header{
        display: none;
    }

    .menu-toggle{
        display: flex;
    }

    /* MENU MOBILE PADRÃO */

    .navbar{

        position: fixed;

        top: 0;
        right: -100%;

        width: 270px;
        height: 100vh;

        background: #081327;

        flex-direction: column;

        align-items: flex-start;

        justify-content: flex-start;

        padding: 120px 35px;

        gap: 30px;

        transition: .4s ease;

        z-index: 1000;
    }

    .navbar.active{
        right: 0;
    }

    /* CONTATO */

    .contato-container{

        grid-template-columns: 1fr;

        gap: 50px;

        padding: 140px 5% 80px;
    }

    .formulario-box{
        width: 100%;
    }

    /* FOOTER */

    .footer-top,
    .footer-bottom{

        flex-direction: column;

        text-align: center;
    }
}


/* =========================
   768px
========================= */

@media(max-width: 768px){

    /* HEADER */

    .header{
        padding: 0 5%;
    }

    .logo img{
        width: 58px;
    }

    .logo-text h2{
        font-size: 16px;
    }

    .logo-text p{
        font-size: 11px;
    }

    /* CONTATO */

    .contato-container{

        padding: 130px 5% 70px;
    }

    .contato-info h1{

        font-size: 45px;
        line-height: 52px;
    }

    .descricao{

        font-size: 16px;
        line-height: 28px;
    }

    /* FORM */

    .formulario-box{

        padding: 35px 25px;
    }

    .formulario-box h2{

        font-size: 32px;
    }

    .input-group{

        flex-direction: column;

        gap: 15px;
    }

    textarea{
        height: 190px;
    }

    /* WHATSAPP CARD */

    .whatsapp-card{

        padding: 28px;
    }

    .whatsapp-card h3{

        font-size: 22px;
    }

    /* MAPA */

    .mapa{

        padding: 0 5% 70px;
    }

    .mapa iframe{

        height: 320px;
    }

    /* FOOTER */

    .footer{

        padding: 50px 5% 30px;
    }
}


/* =========================
   560px
========================= */

@media(max-width: 560px){

    html,
    body{
        overflow-x: hidden;
    }

    /* HEADER */

    .header{

        height: 80px;

        padding: 0 4%;
    }

    .logo{

        gap: 10px;

        max-width: 85%;
    }

    .logo img{
        width: 50px;
    }

    .logo-text{
        display: block;
    }

    .logo-text h2{

        font-size: 13px;

        line-height: 16px;
    }

    .logo-text p{

        font-size: 10px;
    }

    /* MENU */

    .navbar{

        width: 250px;

        padding: 110px 30px;
    }

    /* CONTATO */

    .contato-container{

        padding: 120px 4% 60px;

        gap: 40px;
    }

    .contato-info h1{

        font-size: 36px;
        line-height: 44px;
    }

    .descricao{

        font-size: 15px;
        line-height: 26px;

        margin-bottom: 30px;
    }

    /* INFO CARDS */

    .info-card{

        padding: 22px 18px;

        gap: 16px;
    }

    .icon{

        min-width: 58px;
        height: 58px;

        font-size: 20px;
    }

    .card-text h3{

        font-size: 16px;
    }

    .card-text p{

        font-size: 14px;

        line-height: 24px;
    }

    /* WHATSAPP CARD */

    .whatsapp-card{

        padding: 24px;

        border-radius: 24px;
    }

    .whatsapp-card h3{

        font-size: 20px;
    }

    .whatsapp-card p{

        font-size: 14px;

        line-height: 24px;
    }

    .whatsapp-card button{

        width: 100%;

        justify-content: center;
    }

    /* FORM */

    .formulario-box{

        padding: 28px 18px;

        border-radius: 25px;
    }

    .formulario-box h2{

        font-size: 26px;

        margin-bottom: 28px;
    }

    input,
    textarea{

        padding: 16px;

        font-size: 14px;
    }

    textarea{

        height: 170px;
    }

    .btn-enviar{

        padding: 17px;

        font-size: 15px;
    }

    .seguranca{

        font-size: 13px;

        text-align: center;
    }

    /* MAPA */

    .mapa{

        padding: 0 4% 60px;
    }

    .mapa iframe{

        height: 260px;

        border-radius: 24px;
    }

    /* FOOTER */

    .footer{

        padding: 50px 5% 30px;
    }

    .footer-logo{

        flex-direction: column;

        text-align: center;
    }

    .footer-logo img{

        width: 65px;
    }

    .footer-bottom{

        flex-direction: column;

        align-items: center;

        text-align: center;

        gap: 10px;
    }
}