@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap");
@import url('../css/header.css');

/* ESTILO + CONFIGURAÇÕES GERAIS */

:root {
    --corBranca: #F9F9F9;
    --corLaranja: #FF7A00;
    --corBordas: #cecece;
    --corCinza-Claro: #666666;
    --corCinza-Medio: #4b4b4b;
    --corCinza-Escuro: #172026;

    --fontePadrao: "Montserrat", sans-serif;
    --fonteDestaque: "Playfair Display", serif;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: 0;
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #f6f3e8;
}

button{
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}

svg{
    width: 100%;
    filter: none;
    box-shadow: none;
}

img{
    width: 100%;
}

a{
    cursor: pointer;
    text-decoration: none;
}

.container{
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 8px;
    overflow: hidden;
}

.bg-home{
    position: relative;
    z-index: 2;
}

.bg-home::before{
    content: '';
    display: block;
    position: absolute;
    background-image:  url('../imgs/banner.png');
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 50px;
}

@media screen and (max-width: 768px){
    .bg-home:before{
        position: absolute;
        background-image: url('../imgs/banner-mobile.png');
        left: 0;
        top: 50px;
        width: 100%;
        height: 100%;
        padding-bottom: 50px;
        z-index: -1;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        
    }
}

.hero{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero-logo{
    display: flex;
    padding-left: 300px;
    padding-bottom: 90px;
    margin: -70px 0;
}

.hero-logo img{
    filter: none;
    box-shadow: none;
}

@media screen and (max-width: 768px){
    .hero-logo{
        display: flex;
        padding-left: 30px;
        padding-bottom: 80px;
        align-items: center;
        height: 50%;
        width: 50%;

        img{
          padding-top: 50px;
        }
    }
}



/* ESTILO DO FOOTER */

footer {
  padding: 60px 4%;
  display: flex;
  flex-direction: column;
  background-color: var(--corCinza-Escuro);
  align-items: center;
}

footer .btn-redes {
  padding: 30px;
  display: flex;
  gap: 20px;
}

footer .btn-redes button {
  background-color: transparent;
  border: 2px solid var(--corBranca);
  border-radius: 8px;
  color: var(--corBranca);
  cursor: pointer;
  font-size: 1.1rem;
  transition: .5s;
  width: 56px;
  height: 56px;
  font-size: 24px;
  margin-right: 8px;
}

footer .btn-redes button:hover {
    background-color: var(--corCinza-Claro);
    color: var(--corLaranja);
}

footer img {
  max-width: 80px;
  border-radius: 50%;
}

footer p {
  color: var(--corBranca);
  text-align: center;
}

/* botao whats */
.btn-whatsapp{
    position: fixed;
    bottom: 14px;
    right: 24px;
    z-index: 99;
    img{
        max-width: 74px;
        transition: transform 0.4s;
    }

    img:hover{
        transform: scale(1.1);
    }
}

.btn-whatsapp .tooltip-text{
    visibility: hidden;
    position: absolute;
    width: 120px;
    top: 8px;
    left: -144px;
    padding: 6px;
    border-radius: 8px;
    text-align: center;
    background-color: #23a786;
    color: #f6f3e8;
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-whatsapp:hover .tooltip-text{
    visibility: visible;
    opacity: 1;
}

@media screen and (max-width: 768px){
    .btn-whatsapp{
        display: none;
    }
    
}