body {
    padding: 0; margin: 0; background-color: white;
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
        background-color: #f7f7f7;
}

/* Remove o espaço que a barra deixa no topo */
body {
    top: 0 !important;
}

h1 {
    margin: 0; padding: 0; font-weight: 600; margin-bottom: 30px;
}

h2 {
    margin: 0; padding: 0; font-weight: 400; text-align: left;
}

img {
    max-width: 100%; height: auto; display: block;
}

.container {
    width: 90%; max-width: 1300px; margin: 0 auto;
}

.container-fluid {
    width: 90%; max-width: 1700px; margin: 0 auto;
}

.container-full {
    width: 100%; max-width: inherit; margin: 0 auto;
}

.container .row {
    display: flex; justify-content: space-between; align-items: center;
}

.container .row .col-esq {
    width: 48%;
}

.container .row .col-dir {
    width: 100%;
}

.container-full .row .col-dir {
    width: 50%;
}

.row {
    margin: 50px 0;
}

.container-full .row {
    margin: 0;
    align-items: flex-start;
}

#VIpgJd-ZVi9od-ORHb { display: none !important; }
.skiptranslate { display: none; }
/* Esconde a barra do Google Translate */
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon,
#goog-gt-tt,
.goog-tooltip,
.goog-te-balloon-frame,
div#goog-gt-tt {
    display: none !important;
}
.translate-wrapper {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

.flag-select {
    display: flex;
    gap: 10px;
}

#flag-dropdown-toggle {
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

#flag-dropdown-menu {
    display:none; position:absolute; top:110%; right:0; background:#fff; border:1px solid #ddd; border-radius:8px; box-shadow:0 2px 6px rgba(0,0,0,0.1); z-index:10000; min-width: 130px;
}

.flag-option {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;      
    transition: 0.2s;
    font-size: 14px;
    width: 120px;
}
.flag-option:hover {
    background: #f5f5f5;
}

.flag-option img {
    width: 20px;
    height: 14px;
    border: 1px solid #ccc;
}

.flag-option #selected-lang {
    width: 80px;
}

#header {
    width: 100%; height: 100vh; background: url('../images/bg-header.png') no-repeat center;
    background-size: cover; display: flex; align-items: flex-start;
    position: relative;
}

.box-form {
    background-color: #f7f7f7;
    text-align: center;
    height: 100vh;
    padding: 70px;
    box-sizing: border-box;
}

.box-form .group-row {
    display: flex; gap: 10px; justify-content: space-between; margin-bottom: 15px;
}

.box-form .group-row .form-group {
    display: flex; gap: 3px; justify-content: space-between; flex-direction: column; width: 100%;
}

.box-form .group-row .form-group label {
    width: 100%;
    display: block;
    text-align: left;
    font-size: 14px;
}

.box-form .group-row .form-group label span {
    color: red;
}

.box-form .group-row .form-group input,
.box-form .group-row .form-group textarea,
.box-form .group-row .form-group select {
    width: 100%;
    display: block;
    padding: 10px 8px;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.box-form .group-row .form-group input[type="submit"] {
    background-color: #131a45;
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.box-form .group-row .form-group input[type="submit"]:hover {
    background-color: #ccc;
    color: #131a45;
}

input:focus-visible,
textarea:focus-visible {
    outline-offset: 0px;
    outline: none;
}

.logo {
    max-width: 350px;
    margin-left: 0px;
}

.copy {
    text-align: center;
    color: #131a45;
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    position: relative;
    bottom: -110px;
    padding-bottom: 25px;
}

#flagWrapper{display:flex;align-items:center;justify-content:center;border-radius:8px;gap: 3px;}
#flagWrapper img{max-width:26px;max-height:18px;display:block}
.loading{opacity:.7;font-size:13px}

@media (max-width: 1199px) {
    .container-full .row .col-dir {
        width: 70%;
    }
}

@media (max-width: 991px) {
    .container-full .row {
        flex-direction: column;
    }
    .container-full .row .col-dir {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .box-form {
        padding: 20px;
    }
    .box-form .group-row {
        flex-direction: column;
    }
} 