/* CONTAINER GERAL */
html, body{
    height: 100%;

    margin: 0;

    padding: 0;
}

body{
    min-height: 100vh;

    background: #050816;

    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
}
header{
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    padding: 20px;

    background: rgba(5, 8, 22, 0.9);

    backdrop-filter: blur(10px);

    text-align: center;

    z-index: 1000;
}

.logo-topo{
    font-size: 38px;

    color: white;
}

.mapa-contato{
    padding: 120px 8%;

    display: flex;

    justify-content: center;

    align-items: stretch;

    gap: 40px;

    flex-wrap: wrap;

    background: #050816;
}

/* BOX DO MAPA */

.mapa-box{
    flex: 1;

    min-width: 320px;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 20px;

    padding: 20px;

    backdrop-filter: blur(10px);
}

.mapa-box h2{
    color: white;

    margin-bottom: 20px;

    font-size: 28px;
}

.mapa-box iframe{
    width: 100%;

    height: 350px;

    border: 0;

    border-radius: 15px;
}

/* BOX CONTATO */

.contato-box{
    flex: 1;

    min-width: 320px;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 20px;

    padding: 30px;

    backdrop-filter: blur(10px);

    display: flex;

    flex-direction: column;

    gap: 20px;
}

.contato-box h2{
    color: white;

    font-size: 28px;
}

.contato-box p{
    color: #d4d4d8;

    font-size: 16px;
}

/* BOTÃO MAPA */

.contato-box a{
    margin-top: 10px;

    text-decoration: none;

    text-align: center;

    padding: 12px;

    border-radius: 12px;

    background: linear-gradient(90deg,#7c3aed,#06b6d4);

    color: white;

    font-weight: 600;

    transition: 0.3s;
}

.contato-box a:hover{
    transform: translateY(-3px);
}