@import url('reset.css');
@import url('https://fonts.cdnfonts.com/css/capsuula');

body {
    margin: 0;
    background-image: url('../assets/img/background/background2.png'); 
    background-position: top right; 
    background-repeat: no-repeat; 
    background-size: 45% auto; 
    padding: 0;
    font-family: 'Capsuula', sans-serif;
}

h1{
 text-align: left;
 margin: 0 0 2px;
 color: #E14603;
 font-size: 20px;
 }

p{
    font-family: 'Capsule', sans-serif;
    font-size: 16px;
}


.header-menu,
.footer-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 25px 0; 
}

.header-menu li,
.footer-menu li {
    display: inline;
}

.header-menu li a,
.footer-menu li a {
    text-decoration: none;
    font-size: 14px;
    color: #e05a20;
}

.contact-button{
    display: inline-block;
    padding: 8px 10px;
    border: 1.5px solid #E14603; 
    border-radius: 15px; 
    text-decoration: none;
    color: #E14603; 
    font-weight: 400; 
    font-family: 'Capsule', sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
    }

.contact-button:hover {
    background-color: #E14603; 
    color: #ffffff;
}

nav ul li a.active{
   color: #687A61;
}
nav ul li a:hover{
    margin: 0 9px;
    list-style: none;
    color: #687A61;
}

.instagram-icon img {
    width: 20px; 
    height: auto; 
}

.footer-logo {
    width: 50px;
}


.footer-info {
    display: flex; 
    justify-content: center;
    align-items: center; 
    gap: 10px; 
    text-decoration: none;
    margin-top: 20px; 
    margin-bottom: 15px;
    text-decoration: none;
    color: #E14603; 
    font-weight: 400; 
    font-family: 'Capsule', sans-serif;
}
.footer-info p {
    font-size: 14spx;
}

.sobre-page {
    text-align: left;
    padding: 0px;
}

.image-text-layout {
    width: 51%;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.3;
    font-family: 'Capsule', sans-serif;
    color: #687A61;
}

.image-text-layout img.image-left {
    float: left; 
    margin-right: 15px; 
    margin-bottom: 5px; 
    width: 40%; 
    height: auto; 
    border-radius: 5px; 
}

.image-text-layout p{
    text-align: justify; 
    margin-bottom: 10px; 
}

.sobre-page::before {
    content: "";
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    z-index: -1;
}

.mobile-footer-toggle{
    display: none;
}


@media (max-width: 781px) {
        *{
            margin: 0;
        }
        .header-menu {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 60px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.9);
            width: 80%;
            text-align: center;
            padding: 10px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }
    
        .header-menu.active {
            display: flex;
        }

        .image-text-layout p{
            margin-top: 10px;
            word-spacing: 1px;
            text-decoration: none;
            text-align: start;
                      
        }
    
        .mobile-footer-toggle {
            display: block;
            position: absolute;
            top: 15px;
            left: 15px;
            background: none;
            border: 1.5px solid #E14603;
            border-radius: 8px;
            font-size: 24px;
            cursor: pointer;
            color: #E14603;
            padding: 8px 12px;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
    
        .mobile-footer-toggle:hover {
            background-color: #E14603;
            color: #fff;
        }

        .footer-info{
            align-items: center;
            display: flex;
            justify-content: center;
            flex-direction: column; 
        }

        .sobre-page {
            margin-top: 70px;
        }
    }