/* Base styles */
@font-face {
      font-family: 'Linotype Didot';
      src: url('/fonts/linotype-didot-roman.ttf') format('truetype');

    }
@font-face {
      font-family: 'Linotype Didot Bold';
      src: url('/fonts/linotype-didot-bold.otf') format('opentype');

    }

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

body {
    color: #333; /* Mantendo um texto escuro para legibilidade */
    line-height: 1.6;
    font-family: 'Linotype Didot','Lato', Arial, sans-serif;
}

/* Header styles */
header {
    background-color: white; /* Verde-azulado da paleta */
    color: white;
    padding: 1rem 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.icon{
    width: 1.5rem;
}
.social-icon{
    width: 3rem;
}

a.link{
    font-family: 'GFS Didot';
    flex:0 1 auto;
    font-size: x-large;
    text-decoration: none;
    color: black;
    margin: 0 1rem;
}


.logo{
    width: 8rem;
    outline: black;
    outline-width: 1rem;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-links{
    display: flex;
    width: 80%;
    justify-content: center;
}
.logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo span {
    color: #dbcdac;
    font-weight: 300; 
}

.topper{
    display:flex;
    flex-direction: column;
    align-items: center;
}

.topper img{
    width: 100%;
    margin-bottom: -35vw;
    
}
.topper h3{
    font-size: 2.8vw;
    color: white;
    font-weight:lighter;
}

.topper h1{
    color: white;
    font-size: 8vw;
    font-weight:lighter;
    margin-bottom: 8vw;
}

.topper {
  position: relative;
  overflow: hidden;
}

.topper-curve {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  line-height: 0;
  z-index: 1;
}

.topper-curve svg {
  display: block;
  width: 100%;
  height: 100%;
}

.divider {
    margin-left: 5%;
    margin-right: 5%;
    color:black;
}

.content{
    display:flex;
    flex-direction: column;
}
.content .flavor .title{
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;

}

.content .flavor .title .example-text{
    width: 45vw;
    font-size: 2vw;
    text-align: center;
}

.example-image {
    margin-top: 2rem;
    width: 30vw;
    aspect-ratio: 1 / 1.2;
    overflow: hidden;
    border-radius: 50%;
}

.example-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content .flavor .texto{
    margin: 2vw 4vw;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

span{
    margin-bottom: 2rem;
}

.info{
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    align-items: center;
    font-size: x-large;
}

.info img{
    width:94%;
    height:auto;
    margin-bottom: 1rem;
}

.info span{
    width: 94%;
}

.info strong{
    width: 94%;
    margin-bottom: 0.5rem;
    font-family: 'Linotype Didot Bold';
}

.info ol{
    width: 90%;
    margin-bottom: 1rem;
}

.info ul{
    width: 90%;
    margin-bottom: 1rem;
}


/* Footer */
footer {
    
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #528a89; /* Verde-azulado da paleta */
    color: white;
    padding: 2rem 0;
    margin-top: 60px;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    font-family: 'Lato', Arial, sans-serif;
}

.contact-info{
    font-size:1.5rem;
    font-weight: 700;
}
.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
}

.footer-info {
    margin-bottom: 20px;
}


.footer-title {
    font-size: 18px;
    font-weight: 700; /* Lato Bold */
    color: #dbcdac; /* Bege claro da paleta */
    letter-spacing: 0.5px;
}

.footer-info a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-info a:hover {
    color: #dbcdac;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {

    
    header{
        padding: 0.5rem;
        margin-bottom: 0.5rem;
        position:sticky;
        top:0;
        width: 100%;
    }

    .logo{
        height: 3rem;
        width: auto;

    }
    .topper h1{
        font-size: 3rem;
        text-align: center;
        margin-bottom: -2vw;
        margin-top: 2vw;
    }
    .topper h3{
        font-size: 1rem;
    }

    .topper img{
        height:50vh;
        margin-bottom: -64vw;
        object-fit: cover;
    }
    .content .flavor .title .example-text{
        width: 90%;
        font-size: 4vw;
    }
    .content .flavor .title{
        flex-direction: column-reverse;
        margin: 2rem 0;
    }

    .example-image {
        width: 90%;
        aspect-ratio: 1.5 / 1;
        border-radius: 10%;
    }
    .texto span{
        font-size: large;
        line-height: 115%;
        margin-bottom: 0.5rem;
    }

    .info{
        font-size: large;
        line-height: 115%;
    }

    .info ol{
        width: 75%;
    }

    .info ul{
        width: 75%;
    }


    .header-links{
        flex-direction: row;
        width: 80%;
        margin:0;
        justify-content: space-evenly;
        padding-right: 22rem;
    }
    a.link{
        font-size: 1.3rem;
    }


    .footer-content {
        flex-direction: column;
    }

    .filter-row {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    footer h2{
        margin: 0 2rem 2rem;
    }

}