﻿@font-face {
    font-family: "Josefin Sans Bold";
    src: url(../css/fonts/JosefinSans/JosefinSans-Bold.ttf);
}

@font-face {
    font-family: "Josefin Sans Light";
    src: url(../css/fonts/JosefinSans/JosefinSans-Light.ttf);
}

* {
    padding: 0;
    margin: 0;
}

html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

body > * {
    flex-shrink: 0;
}

a {
    color: inherit;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

.div-cabecalho-preto {
    background-color: #1c1c1c;
    height: 35px;
    width: 100%;
    color: white;
    font-size: 14px
}

.contato-midias {
    float: right;
    vertical-align: bottom;
    margin-top: 7px;
}

.contato-midias i {
    margin-right: 8px;
}

.contato-midias span {
    margin-right: 30px;
}

    .contato-midias span i {
        margin-right: 3px;
        font-size: 13px;
    }

.div-grupo-ramarim {
    background-color: lightgray;
    padding-top: 30px;
    width: 100%;
    height: 100px;
    box-shadow: 1px 0px 1px gray;
    margin-bottom: 70px;
}

.div-grupo-ramarim h1 {
    font-weight: bold;
    font-family: 'Josefin Sans Bold';
    font-size: 50px;
    text-align: center;
}

.titulo-integracao {
    text-align: center;
    font-size: 28px;
    font-family: Assistant;
    letter-spacing: -0.5px;
    font-weight: bold;
}

.row {
    margin: auto;
    display: flex;
    margin-top: 10px;
}

    .row img {
        min-width: 200px;
    }

.column {
    flex: 40%;
    padding: 10px;
    margin: 0 20px;
}

#imgLogoRamarim {
    width: 120%;
    max-width: 550px;
    text-align: center;
    margin: auto;
}

#imgLogoComfortflex {
    width: 100%;
    max-width: 450px;
    text-align: center;
    margin: auto;
}

.card {
    padding: 20px 20px 0 20px;
    font-size: 20px;
    border: none;
    box-shadow: none;
}

    .card input {
        font-family: 'Josefin Sans Light';
        font-size: 20px;
        line-height: 1;
        width: 50%;
        height: 50px;
        margin: auto;
        background-color: black;
        color: white;
        padding: 10px;
        outline: 0;
        border: none;
    }

    .card input::placeholder {
        font-style: italic;
        font-size: 12px;
        color: lightgray;
    }

.fill {
    width: 20%;
    margin: auto;
    font-size: 23px;
    color: black;
    background-color: white;
    border: 1px solid black;
    transition: 0.55s;
}

    .fill:hover, .fill:focus {
        box-shadow: inset 0 0 0 2em #1C1C1C;
        color: white;
        border-radius: 2px;
    }


.div-logos .col {
    text-align: center;
    margin: auto;
}

.footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    background-color: lightgray;
}

.footer .row {
    width: 100%;
    background-color: lightgray;
}

    .footer .row .col {
        text-align: center;
        vertical-align: middle;
        width: 25%;
        padding: 5px 0 10px 0;
        margin: 0 5px;
    }

    .footer .row .col a:hover {
        text-shadow: 0 0 1px black;
        cursor: pointer;
    }

