@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: 0.2s linear;
    font-family: "Roboto", sans-serif;
}

:root{
    --main-color: #d3ad7f;
    --black: #13131a;
    --bg: #010103;
    --border: .1rem solid rgba(255, 255, 255, 0.3);
    font-size: 10px;
}

body{
    background-color: var(--bg);
}

.header{
    position: fixed;
    top: 0; 
    left: 0; 
    right: 0;
    z-index: 99;
    border-bottom: var(--border);
    background-color: var(--bg);
}

section{
    padding: 3rem 2rem;
    margin: 0 auto;
    max-width: 700px;
}

.header section{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

section .logo h2{
    color: var(--main-color);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
}


.navbar a{
    margin: 0 1rem;
    font-size: 1.8rem;
    color: #fff;
}

.navbar a:hover{
    color: var(--main-color);
    padding-bottom: 0.5rem;
    font-size: 2rem;
}

.icons img{
    margin: 1rem;
    cursor: pointer;
}

.icons img:hover{
    transform: scale(1.2);
}

.btn{
    background: var(--main-color);
    color: white;
    padding: 1rem 3rem;
    font-size: 1.7rem;
    margin-top: 1rem;
    display: inline-block;
    border-radius: 5px;
}

.btn:hover{
    letter-spacing: 0.1rem;
}

.home-container{
    background-image: url('../img/fundo-principal.png');
    background-position: center;
    background-size: cover;
}

.home-container section{
    display: flex;
    align-items: center;
    min-height: 100vh;
    background-position: center;
    background-size: cover;
}

.content{
    max-width: 60rem;
    padding-top: 10rem;
}

.content h3{
    font-size: 6rem;
    color: white;
    text-transform: uppercase;
}

.content p{
    font-size: 2rem;
    color: white;
    font-weight: 100;
    line-height: 1.8;
    margin: 1rem 0;
}

footer{
    display: block;
    background-color: var(--bg);
    margin: 5rem;
    padding: 2rem 0;
}

footer .footer-content{
    display: flex;
    color: white;
}

footer .footer-content img{
    margin-top: 0.2rem;
    margin-left: 2rem;
    padding: 1rem 1.5rem;
}

footer .footer-content p{
    font-size: 1.7rem;
    font-weight: bold;
    margin-left: 2rem;
    line-height: 1.8;
    padding: 1rem 1.5rem;
    text-transform: uppercase;
}

.footer-content form{
    margin-left: 2rem;
    margin-top: 1rem;
}

.footer-content form input[type="email"]{
    width: 35rem;
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    background: var(--bg);
    border: var(--border);
    color: white;
    border-radius: 5px;
}

.linha-baixo{
  width: 100%;                       
  height: 3px;                       
  background: linear-gradient(to right, #d3ad7f, black);
  border-radius: 2px;                
  margin: 20px 0; 
}
.linha-cima{
  width: 100%;                       
  height: 3px;                       
  background: linear-gradient(to right, black,#d3ad7f);
  border-radius: 2px;                
  margin: 20px 0; 
}

.info{
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.redes-sociais{
    display: grid;
    margin-left: 6rem;
    padding: 0rem 1.5rem;
}

.redes-sociais p{
    font-size: 1.7rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    color: white;
}
.redes-sociais a{
    font-size: 2.5rem;
    color: white;
    margin: 0.5rem;
}
.atendimento{
    color: white;
    display: grid;
    margin-left: 6rem;
    padding: 0rem 1.5rem;
}
.atendimento h3{
    font-size: 1.7rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    color: white;
}

.atendimento p{
    font-size: 1.5rem;
    line-height: 1.8;
    margin: 0.5rem 0;
    color: white;
}

.pagamento h3{
    font-size: 1.7rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    color: white; 
}

.pagamento{
    display: grid;
}