/*
Theme Name: Serrana
Author: Emanoel Barros
Version: 1.0
*/

:root {
    --azul: #374aae;
    --amarelo: #ffae00;
    --vermelho: #910000;
    --marrom_1: #bb7a42;
    --marrom_2: #a95e20;
}

/*--------------------------------------------------------------
Body
--------------------------------------------------------------*/

@font-face {
    font-family: BigNoodleTitling;
    src: url("fonts/big_noodle_titling.ttf");
}

@font-face {
    font-family: BiagoSerif;
    src: url("fonts/BiagoSerif.otf");
}

@font-face {
    font-family: GilroyLight;
    src: url("fonts/Gilroy-Light.otf");
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins";
    color: #4d4d4d;
    /* background-image: url("images/bg-site2.jpg"); */
    background-size: cover;
    background-position: right 40% top 0;
    background: #292929 url("http://templines.rocks/html/pizzeria/assets/media/bg/pattern-body.jpg");
}

p {
    margin-bottom: 0;
}

.section {
    padding-top: 70px;
    padding-bottom: 70px;
}
@media (min-width: 768px) {
    .section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

a {
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #fff;
    opacity: 0.6;
}

.btn {
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 0;
}

.btn:focus {
    box-shadow: none;
}

.form-control {
    border-radius: 3px;
    /* height: 43px; */
}

.form-control:active, .form-control:focus {
    border-color: #ffae00;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9999999;
}

.lds-ring {
      display: inline-block;
      position: relative;
      width: 50px;
      height: 50px;
      left: 50%;
      margin-left: -25px;
      top: 50%;
      margin-top: -25px;
}
.lds-ring div {
      box-sizing: border-box;
      display: block;
      position: absolute;
      width: 50px;
      height: 50px;
      /* margin: 6px; */
      border: 5px solid #fff;
      border-radius: 50%;
      animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
      border-color: var(--vermelho) transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
      animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
      animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
      animation-delay: -0.15s;
}
@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader {
    top: 50%;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    position: relative;
    margin: 0 auto;
}

.loader:before, .loader:after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 7px solid transparent;
    border-top-color: var(--vermelho);
}

.loader:before {
    z-index: 100;
    animation: spin 1s infinite;
}

.loader:after {
    border: 7px solid #f2f2f2;
}

@keyframes spin {
    0% {
        -webkit-transform:rotate(0deg);
        -ms-transform:rotate(0deg);
        -o-transform:rotate(0deg);
        transform:rotate(0deg)
    }
    100% {
        -webkit-transform:rotate(360deg);
        -ms-transform:rotate(360deg);
        -o-transform:rotate(360deg);
        transform:rotate(360deg)
    }
}

body.show-popup {
    overflow: hidden;
}

.popup {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #000000cf;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-content {
    width: 300px;
    height: 300px;
    border: 3px solid #fff;
    border-radius: 5px;
    position: relative;
}

.popup-midia {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 414px) {
    .popup-content {
        width: 400px;
        height: 400px;
    }
}

@media (min-width: 1400px) {
    .popup-content {
      width: 500px;
      height: 500px;
    }
}

@media (min-width: 1700px) {
    .popup-content {
      width: 600px;
      height: 600px;
    }
}

.popup-fechar {
    position: absolute;
    height: 35px;
    width: 35px;
    top: 0px;
    right: 0px;
    background-color: #910000;
    border-bottom-left-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: .3s ease;
    z-index: 10;
}

@media (min-width: 768px) {
    .popup-fechar {
      height: 25px;
      width: 25px;
    }
}

.popup-fechar:hover {
    background-color: #730000;
}

/*--------------------------------------------------------------
Common
--------------------------------------------------------------*/

.bg-white {
    background: #fff;
}

.bg-light {
    background: #ccc;
}

.vertical-align {
    display: flex;
    align-items: center;
}

.section-titulo {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: BiagoSerif !important;
    position: relative;
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    letter-spacing: 2px;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 30px;
}
@media (min-width: 768px) {
    .section-titulo {
        margin-bottom: 50px;
        font-size: 35px;
    }
}
@media (min-width: 992px) {
    .section-titulo {
        font-size: 32px;
    }
}

.section-titulo .rope-before img, .section-titulo .rope-after img {
    width: 40px;
}

.section-titulo .rope-before img {
    margin-right: 12px;
}

.section-titulo .rope-after img {
    margin-left: 12px;
}

/*--------------------------------------------------------------
Navigation
--------------------------------------------------------------*/

.header-social {
    height: 35px;
    position: relative;
    z-index: 1;
    background-color: #ffae00;
}

.header-social .container, .header-social .social {
    height: 100%;
}

.social a {
    margin: 0 10px;
    color: #614e3f;
    font-size: 18px;
    line-height: 1;
}

.social a:last-child {
    margin-right: 0;
}

.header-top {
    padding: 10px 0;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    background: linear-gradient(45deg, #910000, #570000);
    -webkit-box-shadow: 0px 0px 3px 0px #332323;
    box-shadow: 0px 0px 3px 0px #332323;
}
@media (min-width: 768px) {
    .header-top {
        position: static;
        padding: 0;
    }
}
@media (min-width: 992px) {
    .header-top {
        height: 70px;
    }
    body.scrolled .header-top {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1030;
    }
}

.header-top.nav-expand {
    height: auto;
    padding: 13px 0;
}

.header-top .container, .header-top .row {
    height: 100%;
}

.logo-mobile {
    width: 80px;
    height: 50px;
}

.logo-mobile img, .logo img, .desde-1965 img {
    width: 100%;
}

.nav-mobile-toggle svg {
    font-size: 35px;
    color: #fff;
}

.nav-mobile-toggle:hover, .nav-mobile-toggle:focus{
    opacity: 1;
    outline: 0;
}

.logo {
    position: relative;
    width: 140px;
    transition: all .4s ease;
    cursor: pointer;
}
@media (min-width: 768px) {
    .logo {
        width: 120px;
    }
}
@media (min-width: 992px) {
    body.scrolled .logo {
        width: 70px;
        margin-left: 30px;
    }
}

.logo img {
    margin-top: -30px;
    position: relative;
    z-index: 100;
}
@media (min-width: 768px) {
    .logo img {
        margin-top: -20px;
        margin-bottom: -20px;
    }
}
@media (min-width: 992px) {
    .logo img {
        margin-top: -25px;
        margin-bottom: -25px;
    }
    body.scrolled .logo img {
        margin-top: 0;
        margin-bottom: 0;
    }
}

.nav-container {
    height: 100%;
    margin: 0 auto;
}

.nav {
}

.nav span {
    padding: 5px 27px;
}
@media (min-width: 992px) {
    .nav span {
        padding: 5px 19px;
    }
}

.nav span:not(:last-child) {
    border-right: 2px solid #ecab59;
}

.nav-link {
    color: #fff;
    font-weight: 700;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    position: relative;
}
@media (min-width: 1200px) {
    .nav-link {
        font-size: 15px;
    }
}

.nav-link:hover {
    opacity: 1;
    color: #ecab59;
}

.nav-link:before, .nav-link:after {
    content: '';
    position: absolute;
    transition: transform .5s ease;
}

.nav-link:before {
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: #ecab59;
    transform: scaleX(0);
}

.nav-link:hover:before {
    transform: scaleX(1);
}

.nav-link.active {
    opacity: 1;
    color: #ecab59;
}

.nav-link.active:before {
    transform: scaleX(1);
}

.nav-mobile {
    width: 100%;
    padding-bottom: 5px;
    text-align: center;
    color: #fff;
}

.nav-mobile .nav-link:before, .nav-mobile .nav-link:after {
    content: none;
}

.header-top.nav-expand .nav-mobile {
    display: block;
    opacity: 1;
}

.nav-mobile .nav-link {
    font-size: 20px;
    display: block;
    padding: 5px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-mobile .nav-link:first-child {
    margin-top: 15px;
}

.desde-1965 {
    width: 55px;
    height: 100%;
    /* margin-left: auto; */
}
@media (min-widht: 1200px) {
    .desde-1965 {
        width: 60px;
    }
}

/*--------------------------------------------------------------
Home
--------------------------------------------------------------*/

section#home {
    position: relative;
    z-index: 1;
    height: calc(100vh - 68px);
    margin-top: 68px;
    padding: 0;
}
@media (min-width: 768px) {
    section#home {
        margin-top: 0px;
    }
}
@media (min-width: 992px) {
    section#home {
        min-height: calc(100vh - 105px);
    }
    body.scrolled section#home {
        margin-top: 70px;
    }
}

.carousel, .carousel-inner, .carousel-item, .carousel-item img {
    height: 100%;
}

.carousel-item img {
    object-fit: cover;
}

/*--------------------------------------------------------------
História
--------------------------------------------------------------*/

section#historia {
    background-color: rgba(25, 72, 108, 0.35);
}

section#historia .section-titulo {
    text-align: left;
}

section#historia .section-titulo:after {
    left: 0;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.historia__infos {
    /* max-height: 440px; */
    /* overflow-y: auto; */
}

@media (min-width: 992px) {
    .historia__infos {
        max-height: 365px;
        overflow-y: auto;
    }
}

@media (min-width: 1200px) {
    .historia__infos {
        max-height: 440px;
    }
}

.historia__infos::-webkit-scrollbar {
    width: 3px;
}

.historia__infos::-webkit-scrollbar-track {
  background: #f1f1f133;
}

.historia__infos::-webkit-scrollbar-thumb {
  background: #910000ad;
}

.historia__infos::-webkit-scrollbar-thumb:hover {
  background: #91000073;
}

.historia__infos>p {
    margin-bottom: 15px;
    color: #fff;
    font-size: 18px;
}
@media (min-width: 768px) {
    .historia__infos>p {
        font-size: 20px;
    }
}
@media (min-width: 992px) {
    .historia__infos>p {
        font-size: 15px;
    }
}

.historia__infos>p.historia-slogan {
    text-align: center;
    letter-spacing: 1px;
}

.historia__imagem {
    margin-bottom: 30px;
}
@media (min-width: 992px) {
    .historia__imagem {
        margin-bottom: 0;
    }
}

.historia__imagem img {
    width: 100%;
    /* height: 250px; */
    border-radius: 3px;
}
@media (min-width: 768px) {
    .historia__imagem img {
        /* height: 400px; */
    }
}
@media (min-width: 992px) {
    .historia__imagem img {
        /* height: 300px; */
    }
}

/*--------------------------------------------------------------
Produtos
--------------------------------------------------------------*/

section#produtos {
    /* background-color: rgba(145, 0, 0, 0.77); */
    background-color: rgba(145, 0, 0, 0.45);
}

.produtos__titulo {
    color: #fff;
    margin-bottom: 30px;
}
@media (min-width: 768px) {
    .produtos__titulo {
        margin-bottom: 70px;
    }
}
@media (min-width: 992px) {
    .produtos__titulo {
        margin-bottom: 50px;
    }
}
@media (min-width: 1200px) {
    .produtos__titulo {

    }
}

.wood {
    height: 150px;
    width: 100%;
    background: url(./images/madeira.png);
    background-position: center;
    background-size: 130%;
    background-repeat-y: no-repeat;
}
@media (min-width: 576px) {
    .wood {
        background-size: 620px;
    }
}
@media (min-width: 768px) {
    .wood {
        height: 200px;
        background-size: 780px;
    }
}
@media (min-width: 992px) {
    .wood {
        background-size: 930px;
        height: 250px;
    }
}
@media (min-width: 1200px) {
    .wood {
        background-size: 1110px;
        height: 300px;
    }
}
@media (min-width: 1450px) {
    .wood {
        background-size: 1180px;
    }
}

.embalagens {
    width: 95%;
    text-align: center;
    display: flex;
    justify-content: space-around;
}
@media (min-width: 576px) {
    .embalagens {
        width: 460px;
    }
}
@media (min-width: 768px) {
    .embalagens {
        width: 570px;
    }
}
@media (min-width: 992px) {
    .embalagens {
        width: 680px;
    }
}
@media (min-width: 1200px) {
    .embalagens {
        width: 800px;
    }
}
@media (min-width: 1450px) {
    .embalagens {
        width: 860px;
    }
}

@media (max-width: 575.98px) {
    .embalagem-produto {
        width: 17%;
    }
}

.embalagens img {
    width: 100%;
}
@media (min-width: 576px) {
    .embalagens img {
        width: 80px;
    }
}
@media (min-width: 768px) {
    .embalagens img {
        width: 105px;
    }
}
@media (min-width: 992px) {
    .embalagens img {
        width: 120px;
    }
}
@media (min-width: 1200px) {
    .embalagens img {
        width: 150px;
    }
}
@media (min-width: 1450px) {
    .embalagens img {
        width: 160px;
    }
}

.embalagem-produto {
    transition: all 0.4s ease;
    cursor: pointer;
}

.embalagem-produto.active, .embalagem-produto:hover {
    -webkit-transform: scale(1.15) !important;
    transform: scale(1.15) !important;
    -webkit-filter: drop-shadow(0 0 20px #000);
    filter: drop-shadow(0 0 20px #000);
}

.produto-informacao {
    text-align: center;
}

.produto-informacao img {
    width: 80%;
}
@media (min-width: 576px) {
    .produto-informacao img {
        width: 350px;
    }
}
@media (min-width: 768px) {
    .produto-informacao img {
        width: 400px;
    }
}

/*--------------------------------------------------------------
Galeria
--------------------------------------------------------------*/

section#galeria {
    /* background-color: rgba(62, 40, 16, 0.77); */
    /* background-color: rgba(255, 174, 0, 0.2); */
    background-color: rgba(25, 72, 108, 0.35);
}

@media (min-width: 768px) {
    .galeria__content>.row {
        margin-left: -20px;
        margin-right: -20px;
    }
}

.galeria-col {
    margin-bottom: 25px;
    padding-right: 25px;
}
@media (min-width: 768px) {
    .galeria-col {
        margin-bottom: 30px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.galeria-album {
    width: 100%;
    height: 200px;
    position: relative;
    cursor: pointer;
}
@media (min-width: 576px) {
    .galeria-album {
        height: 230px;
    }
}

.galeria-imagem, .galeria-imagem img {
    width: 100%;
    transition: all .4s ease;
}

.galeria-imagem {
    height: 100%;
    overflow: hidden;
}

.galeria-imagem:nth-child(1) {
    position: relative;
    z-index: 3;
}

.galeria-imagem:nth-child(2) {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 2;
}

.galeria-imagem:nth-child(3) {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
}

.galeria-imagem::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    z-index: 4;
}

.galeria-album:hover .galeria-imagem:first-child img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.galeria-album:hover::after {
    background-color: rgba(0, 0, 0, 0.3);
}

.galeria-album:hover .icone {
    visibility: hidden;
    opacity: 0;
}

.galeria__content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.galeria-album .icone {
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    visibility: visible;
    opacity: 1;
    width: 100px;
    height: auto;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
    z-index: 5;
}

.galeria-col p {
    font-family: GilroyLight;
    color: #fff;
    text-align: center;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 25px;
    line-height: 1;
}
@media (min-width: 768px) {
    .galeria-col p {
        font-size: 22px;
    }
}

/*--------------------------------------------------------------
Receitas
--------------------------------------------------------------*/

section#receitas {
    /* background-color: rgba(0, 0, 0, 0.4); */
    background-color: rgba(255, 174, 0, 0.2);
}

.receitas__content {
    width: 100%;
    border-radius: 3px;
    position: relative;
}

.receitas__content>.row {
    margin-right: -10px;
    margin-left: -10px;
}

.receita-col {
    margin-bottom: 30px;
}
@media (min-width: 768px) {
    .receita-col {

    }
}
@media (min-width: 992px) {
    .receita-col {
        margin-bottom: 20px;
        padding-right: 10px;
        padding-left: 10px;
    }
}

.receita {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.popup-youtube:hover {
    opacity: 1;
}

/* .receita + .receita {
    margin-top: 30px;
} */

.receita-thumb {
    position: relative;
    width: 100%;
    /* height: 250px; */
    height: 170px;
    overflow: hidden;
    cursor: pointer;
}
@media (min-width: 768px) {
    .receita-thumb {
        /* width: 220px; */
        /* height: 220px; */
    }
}
@media (min-width: 992px) {
    .receita-thumb {
        /* width: 170px; */
        /* height: 170px; */
    }
}

.receita-thumb::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    transition: all .4s ease;
}

.receita-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s ease;
}

.receita-thumb:hover img {
    transform: scale(1.1);
}

.receita-thumb:hover:after {
    background-color: rgba(0, 0, 0, 0.6);
}

.receita-thumb span {
    position: absolute;
    font-size: 40px;
    color: #fff;
    display: flex;
    top: 50%;
    margin-top: -20px;
    left: 50%;
    margin-left: -20px;
    z-index: 2;
    transition: all .4s ease;
}

.receita-thumb:hover span {
    color: var(--vermelho);
}

.receita-texto {
    padding: 20px;
    padding-bottom: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
    transition: all .4s ease;
}
@media (min-width: 768px) {
    .receita-texto {
        /* width: calc(100% - 220px); */
    }
}
@media (min-width: 992px) {
    .receita-texto {
        padding: 15px;
    }
}

.receita-texto>p:nth-child(1) {
    font-family: BiagoSerif;
    font-size: 19px;
    line-height: 1.3;
    text-align: center;
    /* letter-spacing: 1px; */
    margin-bottom: 10px;
    color: var(--vermelho);
}
@media (min-width: 768px) {
    .receita-texto>p:nth-child(1) {
        font-size: 17px;
        margin-bottom: 20px;
    }
}
@media (min-width: 992px) {
    .receita-texto>p:nth-child(1) {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

.receita-texto>p:not(:first-child) {
    font-family: GilroyLight;
    font-size: 17px;
}
@media (min-width: 768px) {
    .receita-texto>p:not(:first-child) {
        font-size: 16px;
    }
}
@media (min-width: 992px) {
    .receita-texto>p:not(:first-child) {
        font-size: 14px;
    }
}

.receita__ver-mais {
    margin: 5px 0;
    width: 100%;
    text-align: center;
}

.receita__ver-mais a {
    color: #4d4d4d;
    font-size: 15px;
}

/*--------------------------------------------------------------
Contato
--------------------------------------------------------------*/

section#contato {
    /* background-color: rgba(1, 1, 1, 0.5); */
    background-color: rgba(145, 0, 0, 0.45);
}

.contato__form, .contato__infos {
    padding: 20px;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.3) !important;
    color: #fff;
}
@media (min-width: 768px) {
    .contato__form, .contato__infos {
        padding: 40px;
    }
}

button.enviar-mensagem {
    background-color: transparent;
    border-color: #ffae00;
    color: #ffae00;
    width: 100%;
    letter-spacing: 1px;
    transition: all .4s ease;
    border-radius: 3px;
    margin-top: 10px;
}

button.enviar-mensagem:hover {
    background-color: #8d0000;
    border-color: #8d0000;
    color: #ffae00;
    /* letter-spacing: 3px; */
}

/*--------------------------------------------------------------
Onde estamos
--------------------------------------------------------------*/

#localizacao {
    background-color: rgba(187, 122, 66, 0.3);
}

.mapa__content a:hover, .mapa__content a:focus {
    opacity: 1;
}

.mapa img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mapas__content>div:not(:first-child) {
    margin-top: 20px;
}
@media (min-width: 768px) {
    .mapas__content>div:not(:first-child) {
        margin-top: 0;
    }
}

.mapa__content {
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mapa {
    height: 170px;
    position: relative;
}
@media (min-width: 768px) {
    .mapa {
        height: 200px;
    }
}

.mapa::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.mapa svg {
    position: absolute;
    font-size: 48px;
    color: #fff;
    top: 50%;
    z-index: 1;
    margin-top: -24px;
    left: 50%;
    margin-left: -17px;
}

.mapa-infos {
    padding: 20px;
    background-color: #fff;
}

.mapa-infos .mapa-titulo {
    color: var(--vermelho);
    font-family: BigNoodleTitling;
    margin-bottom: 10px;
    text-align: center;
    font-size: 25px;
    letter-spacing: 1px;
}

.mapa-infos .mapa-texto {
    line-height: 1.7;
    font-size: 15px;
}

/*--------------------------------------------------------------
Footer
--------------------------------------------------------------*/

.footer {
    color: #fff;
    background-color: var(--amarelo);
}

.footer>.container {
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    margin-bottom: 30px;
}
@media (min-width: 768px) {
    .footer-logo {
        margin-bottom: 0;
        margin-right: 50px;
    }
}

.footer-logo img {
    width: 130px;
}

span.bold {
    font-weight: 600;
}

.footer-infos {

}

@media (min-width: 768px) {
    .footer-infos p {
        font-size: 15px;
    }
}

.footer-redes-sociais {
    display: flex;
    margin: 30px 0;
}
@media (min-width: 768px) {
    .footer-redes-sociais {
        margin: 0 40px 0 auto;
    }
}

.footer-redes-sociais a {
    display: flex;
    height: 45px;
    width: 45px;
    font-size: 20px;
    border: 1px solid #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    background-color: #fff;
    color: #ffae00;
}
@media (min-width: 768px) {
    .footer-redes-sociais a {
        height: 35px;
        width: 35px;
        font-size: 18px;
        margin-right: 10px;
    }
}

.footer-redes-sociais a:hover {
    opacity: 1;
    background-color: var(--vermelho);
    border-color: var(--vermelho);
    color: #fff;
}

.footer-bottom {
    padding: 20px;
    text-align: center;
    background-color: #0000004a;
}

.footer-bottom p {
    font-size: 15px;
}
