/********** Template CSS **********/
:root {
    --vermelho_escuro: rgba(168, 62, 64, 0.89);
    --cor-texto: rgb(102, 102, 102);        
    --secondary: #ad5252;
    --light: #F7F7F7;        
    --cor-bege-claro: #eee6d8;
    --cor-bege-fundo: #e9ddc9;    
    --cor-vermelho-opaco: #ad5252;
    --cor-branco-opaco: hsl(5, 57%, 91%);
    
    --card-image: hsl(2, 84%, 61%);
    --degrade-btn: linear-gradient(#e9ddc9, #e4c795);
}

html {
    margin: 0 !important;
    overflow-x: hidden !important;
   
    
}

#conteudo {
    height: 550px;
}

.ativo{
    background-color: #a83e3e !important;
    color: #fff !important;
}

a {
    color: var(--vermelho_escuro) !important;
}

#form-rodape{
    background-color: #eee6d8 !important;
}

.modal-content {
    /* height: 550px !important; */
    height: 90vh !important;
}

.modal-title {
    text-align: center !important;
}

#player {
    position: absolute !important;
    top: 38%;
    left: 40%;
    width: 120px;
    /* transform: translate(-50%, -50%); */
}

#player:hover{      
    cursor: pointer;
    transform: scale(1.2);
    transition: all 0.4s ease;
      
}

.btn:hover {
    cursor: pointer !important;
    transform: scale(1.15) !important;
    transition: all 0.2s ease !important;
      
}


.dropdown-item:hover {
    background-color: rgba(168, 62, 64, 0.89) !important;
    color: #f7f7f7 !important;
}

.btn:focus {
    outline:#a83e3e !important;
}

.form-control:focus{
    box-shadow: 0 0 6px 0 rgba(168, 62, 64, 0.89) !important; 
}

body {
    margin: 0;
    overflow-x: hidden;
}

@media screen and (max-width: 1200px) {
    #galeria {
        display: none;
    }
}

#zap { 
    position: fixed;
    bottom: 20px;
    left: 10px;        
    width: 90px;  
    z-index: 99;       
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 20px;
    z-index: 99;
}


.sucesso {
    background: #10af5a;
    color: white;
    font-weight: bold;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.sucesso:hover {
    background: #068843;
    color: white;
 
}


.erro {
    background-color: hsla(0, 46%, 45%, 0.842) !important;
   
    color: var(--cor-bege-claro);
}

.erro:hover {
    background-color: #a83e3e !important;
    color: var(--cor-bege-claro);
}

.botao {
    background-color: #a83e3e !important;
    border-color: #a83e3e;
}
.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 500 !important;
}

h1, h2, h3, h4, h5, h6 {
    color: #a83e3e;
}

ul{
    list-style-type: none;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;   
}

.btn:focus {
    background-color: #ad5252 !important;  
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.89) !important;
}



.btn-secondary {
   color: white !important;
   background-color:hsla(0, 46%, 45%, 0.918);
   border-color: #ad5252 !important;

   
}

.btn-secondary:hover {
    background-color:#a83e3e ;
    border-color: #ad5252 !important;
}



.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}






/*** Section Title ***/
.section-title {
    color: var(--vermelho_escuro) !important;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    color: --var(--vermelho_escuro) !important;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 5px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 6px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}



/*** Fornecimento ***/
.scrolling-logos {
    display: flex;
    animation: scroll-left 22s linear infinite;
}


@keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}



