
@font-face {
    font-family: "vanilla whale";
    src: url("../Font/Vanilla\ Whale.otf");
   
}


:root{
    font-family: 'vanilla whale';
    font-size: larger;
    font-weight: 100;
    --cor-principal: rgb(73, 29, 0);
    --marrom: rgb(44, 20, 5);
    --backgroud: rgb(138, 50, 0);
    --boder: 0.3rem solid rgb(255, 
    171, 116);
    --letra: rgb(255, 255, 255);

}

*{
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: 0.2s linear;
}

body{
    margin: 70px;
    background-color: var(--cor-principal);
        /* Define o gradiente linear */
        background: linear-gradient(to top, black, rgb(92, 47, 22));
        height: 100%;
        margin: 0;
}


/* espaço do cabeçalho */
section{
    padding: 3rem 2rem;
    margin: 0 auto;
    max-width: 2000px;
   }

/* mexendo na section que é a parte da logo e o nav */
section{
    padding: 3rem 2 rem;
    margin: 0 auto;
    /* max-width: 1000px; */
}

/* Colocando cor no "Café e Prosa */
.header h1{
   color: #ffd0b0;
   
}
/* Classe Header */
.header{
    /* position: fixed; */
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    border-bottom: var(--boder);
}

.header section{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.2rem;
    padding-bottom: 0.5rem ;
    background-color: var(--marrom);

}

/* aplicando as cores no menu */
.navbar a{
    margin: 0 1rem;
    font: 1.8rem;
    color:  #ffd4b0;
}

/* ao passar o mouse nos ícones do menu, mudar de cor */
.navbar a:hover{
    color: var(--letra);
    border-bottom: 0.1rem solid ;
    padding-bottom: 0.2rem;
font-size: 0.9rem;
}

/* icons */
.icons img{
    margin: 0.1rem;
    cursor: pointer;
}

/* imagem dos donos */
.container-image img{
margin: 5px;
margin-bottom: 0;
border-radius: 10px;
}

/* imagem redonda */
#imagem_redonda{
    margin: 15px;
    height: 45px;
    height: 50px;
    border-radius: 50%;
}



/* título da imagemn */
.title{
    font-size: 3rem;
    color: rgb(255, 213, 135);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 3rem;
    margin: 30px;
}

.title span{
    color: #ffffff;
    text-transform: uppercase;
}
.row{
    margin: 1px;
}
.about{
    margin-top: 9vb;
}




/* conteudo sarah */
.circle{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 93%;
    background: #27150d;
    clip-path: circle(50% at bottom right);
} 

/* .circle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background-color: #555;
    overflow: hidden;
} */

.circle img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    overflow: hidden;
}

/* eader{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
} */

header .logo{
    position: relative;
    max-width: 150px;
}

header .navegation ul{
    position: relative;
    display: flex;
}

header .navegation  li{
    list-style: none;
}

header .navegation li a{
    display: inline-block;
    color: rgb(255,171, 116);
    font-weight: 500;
    text-decoration: none;
    font-size: 19px;
    margin-left: 100px;
}




/* parte nova */
.content{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--fonte-titulo);
}

.content .text{
    position: relative;
    max-width: 600px;
    margin-right: 20px;
    margin-left: 50px;
}

.content .text h2{
    color: rgb(255,171, 116);
    font-size: 3em;
    margin-bottom: 10px;
    line-height: 2.5em;
    font-weight: 800;
}

.content .text h2 span{
    font-size: 3.5em;
    color:  rgb(255,171, 116);
}

.content .text p{
    color: rgb(255,171, 116);
}

.content .text a{
    display: inline-block;
    margin-top: 50px;
    padding: 10px 25px;
    background: rgb(58, 33, 17);
    color: rgb(255,171, 116);
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 40px;
    transition: 0.3s ease-in-out;
}
.content .text a:hover{
    transform: translateY(-10px);
}

/* imagem lateral  */
.imglat img{
width: 100vh;
padding: 4rem;
margin-left: 0;
margin-right: 10vh;
border-radius: 17vh;
}

/* FOOTER */

/* RODAPÉ RAELY */
footer {
    background-color:  rgb(44, 20, 5); /*Tom marrom consistent*/
    color: #ffd0b0;/*Texto branco*/
    padding: 10px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    border-top:  0.3rem solid rgb(255, 171, 116); /* Linha decorativa clara no topo do rodapé */
    margin-top: 50px;
    padding-top: 0.2rem;
    padding-bottom: 0.5rem ;
    display: block;
}
/* Ícones de redes sociais */
footer .social-icons {
    margin: 10px 0; /* Espaçamento acima e abaixo dos ícones */
    
}
footer .social-icons a {
    display: inline-block;
    margin: 0 10px; /*Espaçamento entre os ícones*/
    color: #fff; /*Cor branca para os ícones*/
    font-size: 1.5rem; /*Tamanho maior para destaque*/
    transition: color 0.3s ease; /*Transição suave no hover*/
    border-radius: 15px;
    
}
footer .social-icons a:hover {
    color: #d2b48c; /* Mudança para tom claro no hover */
}
/* Texto do rodapé */
footer p {
    font-size: 0.9rem; /* Tamanho discreto */
    margin-top: 15px;
    opacity: 0.8; /* Texto com opacidade para suavidade */
}