/* Textura de fundo */
.background-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

/* Container principal */
.container {
    display: flex;
    margin: 0px auto;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

/* Seção da imagem */
.image-section {
    flex: 1;
    padding-right: 2rem;
}

.image-container {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.interior-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}


/* Seção de conteúdo */
.content-section {
    flex: 1;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-title {
    font-size: 2.5rem;
    color: #b17f65;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.text-content {
    max-width: 700px;
    margin-bottom: 2rem;
}

.text-normal {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.text-highlight {
    color: #8a6d5d;;
    font-weight: 600;
}

/* Botões */
.buttons-container {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-services {
    background-color: #8ca99b;
}

.btn-projects {
    background-color: #c08b6c;
}

/* Responsividade */
@media (max-width: 1024px) {
    .container {
        margin: 1.5rem;
        padding: 1.5rem;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        margin: 1rem;
        padding: 1rem;
    }
    
    .image-section {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .content-section {
        padding-left: 0;
    }
    
    .main-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .buttons-container {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .text-normal {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
}
