/* Tags */
html,
body {
    min-height: 100%;
    height: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.responsive {
    width: 100%;
    height: auto;
}

#response-message {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    font-weight: bold;
    color: #f05f45;
}

.btn-outline-primary-custom {
    color: #333080;
    border-color: #333080;
}

.btn-outline-primary-custom:hover {
    background-color: #333080;
    color: #fff;
}

.btn-primary-custom {
    background: #333080;
    color: #FFF;
}

.btn-primary-custom:hover {
    background-color: #f05f45;
    color: #fff;
}

.btn-secondary-custom {
    background: #f05f45;
    color: #FFF;
}

.btn-secondary-custom:hover {
    background-color: #333080;
    color: #fff;
}

.BIO {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-site {
    padding: 200px 0;
}

.contato {
    background-image: url("../img/contato-gasgrid.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #343a40;
    padding: 300px 0;
}

.success,
.error {
    text-align: center;
}

.success {
    color: greenyellow;
}

.error {
    color: tomato;
}

.footer-site {
    background-color: #333080;
    color: #fff;
    padding: 50px 0;
}

.fa {
    font-size: 30px;
    color: #fff;
    padding-bottom: 50px;
}

.fa:hover {
    font-size: 30px;
    color: #f05f45;
    padding-bottom: 50px;
}

.politica {
    color: #fff;
    padding-bottom: 50px;
}

.politica:hover {
    color: #f05f45;
    padding-bottom: 50px;
}

.cookie-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(51, 48, 128, 0.9);
    padding: 10px 10px;
    box-sizing: border-box;
    overflow: hidden;
}

.cookie-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: justify;
    color: #fff;
}

.cookie-content p {
    margin-bottom: 10px;
}

/* Animations */
[data-anima] {
    opacity: 0;
    transition: .9s;
}

[data-anima="ESQUERDA"] {
    transform: translateX(-50px);
}

[data-anima="DIREITA"] {
    transform: translateX(50px);
}

[data-anima="CENTRO"] {
    transform: translateY(50px);
}

[data-anima].animacao {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}